* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: #0a0e17;
            color: #c8d0dc;
            line-height: 1.75;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: all .2s ease;
            border-bottom: 1px solid transparent;
        }
        a:hover {
            color: #ffe566;
            border-bottom-color: #f5c518;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(180deg, #141b26 0%, #0f1520 100%);
            border-bottom: 2px solid #f5c518;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,.4);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c518 0%, #ff8c00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .logo-sub {
            display: block;
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #8899aa;
            margin-top: 2px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #f5c518;
            cursor: pointer;
            padding: 8px;
        }
        .site-nav {
            display: flex;
            gap: 28px;
        }
        .site-nav a {
            color: #c8d0dc;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 4px 0;
        }
        .site-nav a:hover {
            color: #f5c518;
        }
        .site-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f5c518;
            transition: width .3s;
        }
        .site-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background: #121a24;
            border-bottom: 1px solid #1e2a38;
            padding: 10px 0;
            font-size: 14px;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #8fa3b8;
        }
        .breadcrumb span {
            color: #4a5a6a;
        }
        .hero {
            background: radial-gradient(ellipse at 30% 50%, rgba(245,197,24,.08) 0%, transparent 70%);
            padding: 48px 0 56px;
            border-bottom: 1px solid #1e2a38;
        }
        .hero-content {
            max-width: 900px;
        }
        .hero h1 {
            font-size: 42px;
            line-height: 1.15;
            font-weight: 800;
            color: #f0f4f8;
            margin-bottom: 16px;
        }
        .hero .highlight {
            background: linear-gradient(120deg, #f5c518 40%, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 0 4px;
        }
        .hero-description {
            font-size: 18px;
            color: #8899aa;
            max-width: 700px;
            margin-bottom: 24px;
        }
        .hero-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 14px;
            color: #6b7c8c;
        }
        .hero-meta i {
            color: #f5c518;
            margin-right: 6px;
        }
        .content-section {
            padding: 48px 0;
            max-width: 900px;
        }
        .content-section h2 {
            font-size: 30px;
            font-weight: 700;
            color: #f0f4f8;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(245,197,24,.3);
            position: relative;
        }
        .content-section h2::before {
            content: '✦';
            color: #f5c518;
            margin-right: 8px;
        }
        .content-section h3 {
            font-size: 22px;
            font-weight: 600;
            color: #e2e8f0;
            margin: 32px 0 12px;
        }
        .content-section h4 {
            font-size: 18px;
            font-weight: 600;
            color: #cbd5e0;
            margin: 24px 0 10px;
            padding-left: 12px;
            border-left: 3px solid #f5c518;
        }
        .content-section p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #a0aec0;
        }
        .content-section .lead {
            font-size: 19px;
            color: #c0cbd8;
            font-weight: 300;
            line-height: 1.8;
        }
        .feature-card {
            background: linear-gradient(135deg, rgba(245,197,24,.06) 0%, transparent 80%);
            border: 1px solid #1e2a38;
            border-radius: 12px;
            padding: 28px;
            margin: 28px 0;
            transition: transform .3s, box-shadow .3s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,.4);
        }
        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #f5c518;
            margin-bottom: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .game-card {
            background: #111a24;
            border: 1px solid #1e2a38;
            border-radius: 12px;
            padding: 24px;
            transition: all .3s ease;
        }
        .game-card:hover {
            border-color: #f5c518;
            box-shadow: 0 8px 24px rgba(245,197,24,.08);
            transform: scale(1.02);
        }
        .game-card h4 {
            color: #f0f4f8;
            font-size: 18px;
            margin-bottom: 8px;
            border-left: none;
            padding-left: 0;
        }
        .game-card .tag {
            display: inline-block;
            background: rgba(245,197,24,.15);
            color: #f5c518;
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 32px 0;
            font-size: 15px;
        }
        .data-table th,
        .data-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #1e2a38;
        }
        .data-table th {
            background: rgba(245,197,24,.1);
            color: #f5c518;
            font-weight: 600;
        }
        .data-table tr:hover {
            background: rgba(255,255,255,.02);
        }
        .insight-box {
            background: linear-gradient(135deg, #1a2330 0%, #141c28 100%);
            border-left: 4px solid #f5c518;
            padding: 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .insight-box p {
            margin-bottom: 10px;
        }
        .content-figure {
            margin: 32px 0;
            text-align: center;
        }
        .content-figure img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,.5);
            border: 1px solid #1e2a38;
        }
        .content-figure figcaption {
            font-size: 14px;
            color: #6b7c8c;
            margin-top: 10px;
            font-style: italic;
        }
        .interactive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin: 40px 0;
        }
        .form-card {
            background: #111a24;
            border: 1px solid #1e2a38;
            border-radius: 16px;
            padding: 28px;
        }
        .form-card h3 {
            font-size: 20px;
            margin-bottom: 18px;
            color: #f0f4f8;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-card h3 i {
            color: #f5c518;
        }
        .form-card input[type="text"],
        .form-card input[type="email"],
        .form-card input[type="search"],
        .form-card input[type="number"],
        .form-card select,
        .form-card textarea {
            width: 100%;
            padding: 10px 14px;
            background: #0a0e17;
            border: 1px solid #1e2a38;
            border-radius: 8px;
            color: #c8d0dc;
            font-size: 14px;
            margin-bottom: 12px;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card select:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #f5c518;
        }
        .form-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #f5c518 0%, #e0a800 100%);
            color: #0a0e17;
            font-weight: 700;
            padding: 10px 22px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all .3s;
            display: inline-block;
        }
        .btn:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 15px rgba(245,197,24,.3);
        }
        .btn-outline {
            background: transparent;
            color: #f5c518;
            border: 1px solid #f5c518;
        }
        .btn-outline:hover {
            background: rgba(245,197,24,.1);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            margin: 8px 0 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 24px;
            color: #3a4a5a;
            cursor: pointer;
            transition: color .2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c518;
        }
        .star-rating input:checked~label {
            color: #f5c518;
        }
        .comment-thread {
            margin: 20px 0 0;
        }
        .comment-item {
            background: rgba(255,255,255,.02);
            border: 1px solid #1a2430;
            border-radius: 10px;
            padding: 18px;
            margin-bottom: 14px;
        }
        .comment-meta {
            font-size: 13px;
            color: #6b7c8c;
            margin-bottom: 6px;
        }
        .comment-meta strong {
            color: #c0cbd8;
        }
        .site-footer {
            background: #0d1219;
            border-top: 2px solid rgba(245,197,24,.4);
            padding: 48px 0 24px;
            margin-top: 64px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h3 {
            color: #f0f4f8;
            font-size: 16px;
            margin-bottom: 12px;
        }
        .footer-grid a {
            display: block;
            padding: 4px 0;
            font-size: 14px;
        }
        .footer-bottom {
            border-top: 1px solid #1e2a38;
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6b7c8c;
        }
        .footer-bottom .copy {
            color: #4a5a6a;
        }
        friend-link {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding: 12px 0;
            border-top: 1px solid #1e2a38;
            margin-top: 16px;
        }
        friend-link a {
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 28px;
            }
            .nav-toggle {
                display: block;
            }
            .site-nav {
                display: none;
                flex-direction: column;
                gap: 12px;
                padding: 16px 24px;
                background: #141b26;
                border-top: 1px solid #1e2a38;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: 100%;
            }
            .site-nav.open {
                display: flex;
            }
            .content-section {
                padding: 32px 0;
            }
            .content-section h2 {
                font-size: 24px;
            }
            .interactive-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb .container {
                font-size: 12px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 24px;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #1e2a38;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5c518;
        }
