* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-dark: #0b0a0d;
            --bg-card: #1a1820;
            --gold: #d4a848;
            --gold-dark: #b8922e;
            --gold-light: #f0d68a;
            --text-light: #f0eae0;
            --text-muted: #b0a8a0;
            --accent-purple: #6b4fa0;
            --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --transition: 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            font-size: 16px;
            font-weight: 400;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }
        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, #0f0c1a 0%, #1a1428 100%);
            border-bottom: 2px solid var(--gold-dark);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(212, 168, 72, 0.25);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--gold-light);
            text-shadow: 0 0 32px rgba(212, 168, 72, 0.45);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            display: block;
            color: var(--text-muted);
            letter-spacing: 2px;
            font-weight: 300;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .hamburger:hover {
            background: var(--gold);
            color: var(--bg-dark);
        }
        nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-light);
            transition: var(--transition);
        }
        nav a:hover {
            background: rgba(212, 168, 72, 0.15);
            color: var(--gold);
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: transparent;
            border-bottom: 1px solid rgba(212, 168, 72, 0.1);
            margin-bottom: 24px;
        }
        .breadcrumb a {
            color: var(--gold);
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        main {
            padding: 32px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--gold);
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 2px 12px rgba(212, 168, 72, 0.2);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold-light);
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 5px solid var(--gold);
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold);
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--gold-light);
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: var(--text-light);
        }
        .lead {
            font-size: 1.2rem;
            color: var(--gold-light);
            font-weight: 400;
            border-left: 4px solid var(--gold);
            padding-left: 20px;
            margin-bottom: 32px;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 168, 72, 0.2);
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 8px;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(135deg, rgba(212, 168, 72, 0.08), rgba(107, 79, 160, 0.08));
            border: 1px solid rgba(212, 168, 72, 0.2);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 24px 0;
        }
        .highlight strong {
            color: var(--gold);
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 28px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid rgba(212, 168, 72, 0.1);
            transition: var(--transition);
        }
        .card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        }
        .card h4 {
            margin-top: 0;
        }
        .card i {
            color: var(--gold);
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        ul,
        ol {
            margin: 16px 0 20px 24px;
            color: var(--text-light);
        }
        li {
            margin-bottom: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: var(--radius);
            border: 1px solid rgba(212, 168, 72, 0.1);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid rgba(212, 168, 72, 0.08);
        }
        th {
            background: rgba(212, 168, 72, 0.12);
            color: var(--gold);
            font-weight: 600;
        }
        tr:hover td {
            background: rgba(212, 168, 72, 0.04);
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 32px 28px;
            margin: 48px 0 32px;
            border: 1px solid rgba(212, 168, 72, 0.15);
        }
        .search-section h2 {
            margin-top: 0;
            border-left: none;
            padding-left: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 8px;
            border: 1px solid rgba(212, 168, 72, 0.3);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 168, 72, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            background: var(--gold);
            color: var(--bg-dark);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 48px 0;
        }
        .comment-section,
        .rating-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid rgba(212, 168, 72, 0.1);
        }
        .comment-section h2,
        .rating-section h2 {
            margin-top: 0;
            border-left: none;
            padding-left: 0;
            font-size: 1.6rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            margin-bottom: 12px;
            border-radius: 8px;
            border: 1px solid rgba(212, 168, 72, 0.2);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-light);
            font-size: 0.95rem;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 168, 72, 0.1);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            padding: 12px 28px;
            background: var(--gold);
            color: var(--bg-dark);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            margin: 12px 0 16px;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: var(--text-muted);
            transition: var(--transition);
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
            text-shadow: 0 0 12px rgba(212, 168, 72, 0.4);
        }
        .rating-form button {
            padding: 12px 28px;
            background: var(--gold);
            color: var(--bg-dark);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 8px;
        }
        .rating-form button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        footer {
            background: linear-gradient(135deg, #0f0c1a 0%, #1a1428 100%);
            border-top: 2px solid var(--gold-dark);
            padding: 40px 0 28px;
            margin-top: 48px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        footer h4 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            margin: 4px 0;
        }
        friend-link a {
            color: var(--text-muted);
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--gold-light);
        }
        .copyright {
            border-top: 1px solid rgba(212, 168, 72, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .copyright strong {
            color: var(--gold);
        }
        .last-update {
            display: inline-block;
            background: rgba(212, 168, 72, 0.1);
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--gold);
            margin-bottom: 16px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--bg-card);
                padding: 16px 12px;
                border-radius: var(--radius);
                margin-top: 8px;
                border: 1px solid rgba(212, 168, 72, 0.15);
            }
            .nav-toggle:checked~nav {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1rem;
                padding-left: 12px;
            }
            .card {
                padding: 16px;
            }
            .comment-section,
            .rating-section {
                padding: 18px 16px;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .fw-700 {
            font-weight: 700;
        }
        .gap-4 {
            gap: 4px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .badge {
            display: inline-block;
            background: var(--gold);
            color: var(--bg-dark);
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
