*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #6a0dad;
            --primary-light: #9b30ff;
            --primary-dark: #3d0066;
            --accent: #ff6ec7;
            --bg-dark: #0d0d1a;
            --bg-card: #1a1a2e;
            --bg-card-hover: #252540;
            --text-light: #f0e6ff;
            --text-muted: #b8a9d4;
            --text-body: #e0d4f5;
            --border-glow: rgba(154, 48, 255, 0.3);
            --shadow-glow: 0 0 30px rgba(154, 48, 255, 0.15);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-body);
            line-height: 1.7;
            padding-bottom: 0;
            min-height: 100vh;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--accent);
            text-shadow: 0 0 12px rgba(255, 110, 199, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-card) 100%);
            border-bottom: 1px solid var(--border-glow);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--accent);
            font-size: 1.6rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            filter: brightness(1.1);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border-glow);
            color: var(--text-light);
            font-size: 1.5rem;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(154, 48, 255, 0.15);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 0.92rem;
            color: var(--text-muted);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        nav a:hover,
        nav a:focus {
            color: var(--text-light);
            background: rgba(154, 48, 255, 0.12);
            border-color: var(--border-glow);
        }
        .breadcrumbs {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
        }
        .breadcrumbs li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumbs li+li::before {
            content: "›";
            color: var(--primary-light);
            font-weight: 700;
        }
        .breadcrumbs a {
            color: var(--text-muted);
        }
        .breadcrumbs a:hover {
            color: var(--accent);
        }
        .breadcrumbs .current {
            color: var(--text-light);
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-heading);
            color: var(--text-light);
            line-height: 1.3;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            letter-spacing: -0.02em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.2em;
            background: linear-gradient(135deg, #fff, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            border-left: 4px solid var(--primary-light);
            padding-left: 18px;
            margin-top: 2.2em;
        }
        h3 {
            font-size: 1.45rem;
            color: var(--primary-light);
        }
        h4 {
            font-size: 1.15rem;
            color: var(--accent);
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        .last-updated {
            display: inline-block;
            background: rgba(154, 48, 255, 0.12);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: var(--text-muted);
            border: 1px solid var(--border-glow);
            margin-bottom: 28px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-glow);
            border: 1px solid var(--border-glow);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .highlight-box {
            background: var(--bg-card);
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            border-radius: var(--radius-sm);
            margin: 24px 0;
            box-shadow: var(--shadow-glow);
        }
        .highlight-box strong {
            color: var(--accent);
        }
        ul,
        ol {
            margin: 16px 0 20px 24px;
        }
        li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted var(--border-glow);
            padding-bottom: 1px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }
        .card {
            background: var(--bg-card);
            padding: 24px;
            border-radius: var(--radius);
            border: 1px solid var(--border-glow);
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: var(--primary-light);
            box-shadow: 0 12px 40px rgba(154, 48, 255, 0.2);
            background: var(--bg-card-hover);
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.25rem;
        }
        .card h3 i {
            margin-right: 10px;
            color: var(--accent);
        }
        .search-section {
            background: var(--bg-card);
            padding: 32px;
            border-radius: var(--radius);
            margin: 40px 0;
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-glow);
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: var(--accent);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-glow);
            background: var(--bg-dark);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 20px rgba(154, 48, 255, 0.2);
        }
        .search-form input::placeholder {
            color: var(--text-muted);
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 30px rgba(154, 48, 255, 0.4);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: var(--bg-card);
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-glow);
        }
        .comment-section h2,
        .rating-section h2 {
            margin-top: 0;
            font-size: 1.5rem;
            border-left-color: var(--accent);
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-glow);
            background: var(--bg-dark);
            color: var(--text-light);
            font-size: 1rem;
            min-height: 110px;
            resize: vertical;
            outline: none;
            transition: var(--transition);
            font-family: var(--font-body);
        }
        .comment-section textarea:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 20px rgba(154, 48, 255, 0.15);
        }
        .comment-section input,
        .rating-section input {
            width: 100%;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-glow);
            background: var(--bg-dark);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            margin-bottom: 12px;
        }
        .comment-section input:focus,
        .rating-section input:focus {
            border-color: var(--primary-light);
        }
        .comment-section button,
        .rating-section button {
            padding: 12px 28px;
            border: none;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            transform: scale(1.02);
            box-shadow: 0 0 25px rgba(154, 48, 255, 0.35);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            margin: 12px 0 16px;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: var(--text-muted);
            transition: var(--transition);
            cursor: pointer;
            font-size: 2rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffc107;
            text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
        }
        footer {
            background: linear-gradient(135deg, var(--primary-dark), var(--bg-card));
            border-top: 1px solid var(--border-glow);
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
        }
        @media (max-width:640px) {
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.03);
            padding: 20px 24px;
            border-radius: var(--radius);
            border: 1px solid var(--border-glow);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .copyright strong {
            color: var(--text-light);
        }
        @media (max-width:768px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 12px;
                border-top: 1px solid var(--border-glow);
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 10px 16px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .star-rating {
                justify-content: center;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .comment-section,
            .rating-section {
                padding: 18px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
            margin: 40px 0;
            opacity: 0.3;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-glow);
        }
        th,
        td {
            padding: 12px 18px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        th {
            background: rgba(154, 48, 255, 0.15);
            color: var(--primary-light);
            font-weight: 600;
        }
        tr:hover td {
            background: rgba(154, 48, 255, 0.04);
        }
