        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f5ff;
            color: #1a1a2e;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #7c3aed;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #a855f7;
            text-decoration: underline;
            outline: 2px solid #a855f7;
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(91, 44, 142, 0.98);
                padding: 16px 0;
                border-radius: 0 0 16px 16px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li {
                text-align: center;
                padding: 8px 0;
            }
            .nav-menu li a {
                font-size: 1.05rem;
            }
        }
        .site-header {
            background: linear-gradient(135deg, #5b2c8e 0%, #7c3aed 50%, #a855f7 100%);
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(91, 44, 142, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fff;
        }
        .my-logo i {
            font-size: 2rem;
            color: #ffd700;
        }
        .my-logo span {
            background: linear-gradient(to right, #ffd700, #ff6b9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 6px 20px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus-visible {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
            text-decoration: none;
        }
        .nav-menu li a.active {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
        }
        .breadcrumb {
            background: #ede9fe;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6fe;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #7c3aed;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5b2c8e;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f5f0ff 0%, #ede9fe 50%, #fce7f3 100%);
            padding: 48px 0 40px;
            text-align: center;
            border-bottom: 3px solid #a855f7;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #5b2c8e;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 i {
            color: #ffd700;
        }
        .hero p {
            font-size: 1.15rem;
            color: #4a4a6a;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .last-updated {
            display: inline-block;
            background: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5b2c8e;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(91, 44, 142, 0.1);
        }
        .search-section {
            background: #fff;
            padding: 24px 0;
            border-bottom: 1px solid #e4e0f0;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(91, 44, 142, 0.1);
            border: 2px solid #ddd6fe;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #7c3aed;
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            font-size: 1rem;
            background: #fff;
            outline: none;
            color: #1a1a2e;
        }
        .search-form input::placeholder {
            color: #9ca3af;
        }
        .search-form button {
            background: #7c3aed;
            color: #fff;
            border: none;
            padding: 14px 28px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #5b2c8e;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 48px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        .main-content h2 {
            font-size: 2rem;
            color: #5b2c8e;
            margin-top: 48px;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ede9fe;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .main-content h2 i {
            color: #ff6b9d;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #6d28d9;
            margin-top: 32px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-content h3 i {
            color: #ffd700;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #4a4a6a;
            margin-top: 24px;
            margin-bottom: 8px;
            font-weight: 600;
            padding-left: 8px;
            border-left: 4px solid #a855f7;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #2d2d44;
        }
        .main-content ul,
        .main-content ol {
            margin-bottom: 18px;
            padding-left: 28px;
            color: #2d2d44;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #f5f0ff;
            border-left: 6px solid #7c3aed;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .main-content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .main-content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .main-content .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(91, 44, 142, 0.08);
            border: 1px solid #ede9fe;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .main-content .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(91, 44, 142, 0.15);
        }
        .main-content .stat-card .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #7c3aed;
        }
        .main-content .stat-card .stat-label {
            font-size: 0.9rem;
            color: #6b7280;
            margin-top: 4px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(91, 44, 142, 0.12);
        }
        .featured-image figcaption {
            background: #f5f0ff;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #4a4a6a;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(91, 44, 142, 0.06);
            border: 1px solid #ede9fe;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #5b2c8e;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0ecfc;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #4a4a6a;
            font-weight: 500;
        }
        .sidebar-card ul li a:hover {
            color: #7c3aed;
        }
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            margin: 32px 0;
            box-shadow: 0 4px 20px rgba(91, 44, 142, 0.06);
            border: 1px solid #ede9fe;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #ffd700;
            transform: scale(1.1);
        }
        .rating-stars label i {
            font-size: 2rem;
        }
        .rating-form button {
            background: #7c3aed;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            margin-top: 12px;
        }
        .rating-form button:hover {
            background: #5b2c8e;
            transform: translateY(-2px);
        }
        .comments-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            margin: 32px 0;
            box-shadow: 0 4px 20px rgba(91, 44, 142, 0.06);
            border: 1px solid #ede9fe;
        }
        .comments-section textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #ddd6fe;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            transition: border-color 0.3s;
            background: #faf9ff;
        }
        .comments-section textarea:focus {
            border-color: #7c3aed;
            outline: none;
            background: #fff;
        }
        .comments-section input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #ddd6fe;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 12px;
            transition: border-color 0.3s;
            background: #faf9ff;
        }
        .comments-section input[type="text"]:focus {
            border-color: #7c3aed;
            outline: none;
            background: #fff;
        }
        .comments-section .btn-submit {
            background: #7c3aed;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .comments-section .btn-submit:hover {
            background: #5b2c8e;
            transform: translateY(-2px);
        }
        friend-link {
            display: block;
            background: #f5f0ff;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 32px 0 16px;
            border: 1px solid #ddd6fe;
        }
        friend-link h3 {
            font-size: 1.2rem;
            color: #5b2c8e;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link ul li a {
            color: #6d28d9;
            font-weight: 500;
        }
        friend-link ul li a:hover {
            color: #a855f7;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c4b5fd;
            padding: 32px 0 24px;
            text-align: center;
            margin-top: 40px;
        }
        .site-footer p {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #a855f7;
        }
        .site-footer a:hover {
            color: #ffd700;
        }
        .site-footer .copyright {
            border-top: 1px solid #2d2d44;
            padding-top: 18px;
            margin-top: 18px;
            font-size: 0.85rem;
            color: #8b7bb8;
        }
        @media (max-width: 600px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-form button {
                padding: 12px;
                justify-content: center;
            }
            .content-wrapper {
                padding: 24px 0;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .rating-stars label i {
                font-size: 1.6rem;
            }
            .sidebar {
                position: static;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 400px) {
            .header-inner {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-toggle {
                align-self: flex-end;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        :focus-visible {
            outline: 2px solid #a855f7;
            outline-offset: 2px;
        }
        .main-content *,
        .sidebar-card *,
        .rating-section *,
        .comments-section * {
            transition: all 0.2s ease;
        }
