* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-dark: #0b0e14;
            --bg-card: #141a24;
            --bg-card2: #1c2432;
            --gold: #f0c040;
            --gold-light: #f5d872;
            --gold-dark: #c9920e;
            --text-main: #e8eef5;
            --text-secondary: #b0bccd;
            --text-muted: #7a8a9e;
            --accent-1: #4a7cf7;
            --accent-2: #e05a3a;
            --accent-3: #3acf8e;
            --border-color: #2a3448;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 14px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-main);
            background: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--gold-light);
            text-shadow: 0 0 12px rgba(240, 192, 64, 0.2);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1622 0%, #1a2438 100%);
            border-bottom: 2px solid var(--gold-dark);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.15);
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-shadow: 0 0 40px rgba(240, 192, 64, 0.3);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--gold);
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--gold-dark);
            color: var(--gold);
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--gold-dark);
            color: #fff;
        }
        .primary-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: var(--text-secondary);
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        .primary-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transition: var(--transition);
        }
        .primary-nav a:hover::after,
        .primary-nav a.active::after {
            transform: scaleX(1);
        }
        .primary-nav a:hover {
            color: var(--gold);
            background: rgba(240, 192, 64, 0.06);
        }
        .primary-nav a.active {
            color: var(--gold);
        }
        .breadcrumb-wrap {
            background: rgba(20, 26, 36, 0.7);
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            color: var(--text-muted);
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 10px;
            color: var(--gold-dark);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--gold);
            font-weight: 600;
        }
        .hero-section {
            padding: 50px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(240, 192, 64, 0.06) 0%, transparent 70%);
        }
        .hero-section h1 {
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold), #fff3cf, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero-section .subhead {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 20px;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 20px 40px;
            flex-wrap: wrap;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .hero-meta i {
            color: var(--gold);
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0 60px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .content-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 30px 32px;
            margin-bottom: 32px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .content-section:hover {
            border-color: rgba(240, 192, 64, 0.15);
        }
        .content-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 18px;
            border-left: 4px solid var(--gold);
            padding-left: 16px;
        }
        .content-section h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--gold-light);
            margin: 24px 0 12px;
        }
        .content-section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-main);
            margin: 18px 0 8px;
        }
        .content-section p {
            margin-bottom: 16px;
            color: var(--text-secondary);
            font-size: 1.05rem;
        }
        .content-section p strong {
            color: var(--text-main);
        }
        .content-section ul,
        .content-section ol {
            margin: 12px 0 18px 24px;
            color: var(--text-secondary);
        }
        .content-section li {
            margin-bottom: 8px;
        }
        .content-section .highlight-box {
            background: rgba(240, 192, 64, 0.06);
            border-left: 4px solid var(--gold);
            padding: 18px 22px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .content-section .highlight-box p {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--bg-card2);
            padding: 8px;
        }
        .featured-image img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 10px 0 4px;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        .data-table thead {
            background: var(--gold-dark);
            color: #0b0e14;
        }
        .data-table th {
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-secondary);
        }
        .data-table tbody tr:hover {
            background: rgba(240, 192, 64, 0.04);
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 22px 24px;
            margin-bottom: 24px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 14px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-widget ul li {
            margin-bottom: 10px;
        }
        .sidebar-widget ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            padding: 6px 8px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .sidebar-widget ul li a:hover {
            color: var(--gold);
            background: rgba(240, 192, 64, 0.05);
            padding-left: 14px;
        }
        .sidebar-widget ul li a i {
            color: var(--gold-dark);
            width: 18px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-dark);
            color: var(--text-main);
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
        }
        .search-form button {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 192, 64, 0.25);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-dark);
            color: var(--text-main);
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
            font-family: var(--font-main);
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 192, 64, 0.25);
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: var(--gold-dark);
            cursor: pointer;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--gold);
        }
        .site-footer {
            background: linear-gradient(135deg, #0a0f18 0%, #141e2e 100%);
            border-top: 2px solid var(--border-color);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px 40px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-col p,
        .footer-col a {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .footer-col a:hover {
            color: var(--gold);
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin: 16px 0;
            padding: 14px 20px;
            background: rgba(240, 192, 64, 0.04);
            border-radius: 10px;
            border: 1px solid var(--border-color);
            font-size: 0.95rem;
        }
        friend-link a {
            color: var(--text-secondary);
            margin: 0 8px;
        }
        friend-link a:hover {
            color: var(--gold);
        }
        friend-link::before {
            content: '🤝 Friend Links: ';
            color: var(--gold);
            font-weight: 600;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--bg-card);
                padding: 16px 20px;
                border-radius: var(--radius);
                border: 1px solid var(--border-color);
                margin-top: 10px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 12px;
                border-radius: 6px;
            }
            .primary-nav a::after {
                display: none;
            }
            .primary-nav a:hover {
                background: rgba(240, 192, 64, 0.08);
            }
            .content-section {
                padding: 20px 18px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .hero-section h1 {
                font-size: 1.8rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .content-section {
                padding: 16px 14px;
            }
            .hero-section {
                padding: 30px 0 20px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .comment-form button,
            .rating-form button {
                width: 100%;
                text-align: center;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.7s ease forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .delay-4 {
            animation-delay: 0.4s;
        }
