        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f4f7fc;
            color: #1a1e2b;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a { color: #1e6bb8; text-decoration: none; transition: color 0.2s; }
        a:hover { color: #0d3b6e; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
        ul, ol { padding-left: 1.5rem; margin: 0.75rem 0; }
        li { margin-bottom: 0.3rem; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
            color: #fff;
            padding: 1rem 0;
            border-bottom: 4px solid #f0a500;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .my-logo:hover { text-decoration: none; color: #f0a500; }
        .my-logo i { font-size: 2rem; color: #f0a500; }
        .my-logo span { background: linear-gradient(to right, #f0a500, #ffc34d); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        nav.main-nav { display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap; }
        nav.main-nav a {
            color: #e0e8f0;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        nav.main-nav a:hover, nav.main-nav a.active {
            background: rgba(240, 165, 0, 0.2);
            color: #f0a500;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid rgba(255,255,255,0.4);
            color: #fff;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .hamburger:hover { border-color: #f0a500; color: #f0a500; }
        .breadcrumb {
            background: #e9edf4;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d0d7e2;
        }
        .breadcrumb .container { display: flex; flex-wrap: wrap; gap: 0.3rem; }
        .breadcrumb a { color: #1e6bb8; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb .separator { color: #7a8a9e; margin: 0 0.3rem; }
        .hero {
            background: linear-gradient(145deg, #0f2a44, #1e4d7a);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎮🎯🏆";
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 10rem;
            opacity: 0.06;
            pointer-events: none;
            transform: rotate(-10deg);
        }
        .hero h1 { font-size: 2.8rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.5rem; }
        .hero h1 i { color: #f0a500; margin-right: 0.5rem; }
        .hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto 1.5rem; }
        .hero .badge {
            display: inline-block;
            background: #f0a500;
            color: #0b1a2e;
            padding: 0.2rem 1.2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .search-section {
            background: #fff;
            padding: 2rem 0;
            border-bottom: 1px solid #d0d7e2;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d0d7e2;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus { border-color: #1e6bb8; }
        .search-form button {
            background: #1e6bb8;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover { background: #0d3b6e; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-content { min-width: 0; }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        section { margin-bottom: 3rem; }
        h1 { font-size: 2.4rem; margin: 0 0 1.5rem; line-height: 1.2; }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f0a500;
            display: inline-block;
            color: #0b1a2e;
        }
        h2 i { color: #f0a500; margin-right: 0.5rem; }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.8rem;
            color: #1a3a5c;
        }
        h3 i { color: #1e6bb8; margin-right: 0.4rem; font-size: 1.1rem; }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem;
            color: #2d4a6e;
            font-weight: 600;
        }
        p { margin: 0.6rem 0 1rem; }
        .highlight { background: #fff9e6; padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 600; }
        .emoji-big { font-size: 1.8rem; line-height: 1; }
        .featured-img {
            margin: 1.8rem 0;
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            background: #fff;
            padding: 0.5rem;
        }
        .featured-img img { border-radius: 10px; width: 100%; }
        .featured-img figcaption { padding: 0.8rem 0.5rem 0.3rem; font-size: 0.9rem; color: #5a6a7e; text-align: center; font-style: italic; }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }
        .data-table th { background: #0b1a2e; color: #fff; padding: 0.7rem 1rem; text-align: left; font-weight: 600; }
        .data-table td { padding: 0.7rem 1rem; border-bottom: 1px solid #e8ecf2; }
        .data-table tr:last-child td { border-bottom: none; }
        .data-table tr:hover td { background: #f4f7fc; }
        .interview-box {
            background: #eef4fa;
            border-left: 5px solid #1e6bb8;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border-radius: 0 12px 12px 0;
        }
        .interview-box p { margin: 0.3rem 0; }
        .interview-box .attribution { font-weight: 700; color: #0b1a2e; margin-top: 0.8rem; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem 1rem;
            text-align: center;
            box-shadow: 0 4px 14px rgba(0,0,0,0.06);
            transition: transform 0.2s;
        }
        .stat-card:hover { transform: translateY(-4px); }
        .stat-card .number { font-size: 2.4rem; font-weight: 800; color: #1e6bb8; }
        .stat-card .label { font-size: 0.85rem; color: #5a6a7e; margin-top: 0.3rem; }
        .comment-section, .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .comment-section h3, .rating-section h3 { margin-top: 0; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 0.3rem; color: #1a3a5c; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d0d7e2;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #1e6bb8; outline: none; }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .btn-submit {
            background: #f0a500;
            color: #0b1a2e;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-submit:hover { background: #d49200; transform: scale(1.02); }
        .star-rating { display: flex; gap: 0.4rem; font-size: 1.8rem; cursor: pointer; direction: rtl; }
        .star-rating input { display: none; }
        .star-rating label { color: #d0d7e2; transition: color 0.2s; cursor: pointer; }
        .star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label { color: #f0a500; }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
        }
        .sidebar-card h4 { margin-top: 0; border-bottom: 2px solid #f0a500; padding-bottom: 0.4rem; }
        .sidebar-card ul { list-style: none; padding: 0; margin: 0.8rem 0 0; }
        .sidebar-card ul li { padding: 0.3rem 0; border-bottom: 1px solid #f0f2f6; }
        .sidebar-card ul li:last-child { border-bottom: none; }
        .sidebar-card ul li a { display: flex; align-items: center; gap: 0.5rem; }
        .sidebar-card ul li a i { color: #f0a500; width: 1.2rem; text-align: center; }
        footer {
            background: #0b1a2e;
            color: #c8d4e0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #f0a500;
        }
        footer .container { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
        footer a { color: #a0b8d0; }
        footer a:hover { color: #f0a500; }
        .footer-copy { grid-column: 1 / -1; text-align: center; padding-top: 1.5rem; border-top: 1px solid #1a3a5c; margin-top: 1.5rem; font-size: 0.85rem; }
        friend-link { display: block; margin: 0.5rem 0; }
        friend-link a { display: inline-block; margin: 0.2rem 0.8rem 0.2rem 0; }
        @media (max-width: 1024px) {
            .content-wrapper { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav.main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0f2440;
                padding: 0.8rem;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            nav.main-nav.open { display: flex; }
            nav.main-nav a { padding: 0.6rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
            nav.main-nav a:last-child { border-bottom: none; }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .search-form { flex-direction: column; }
            .search-form button { justify-content: center; }
            footer .container { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .data-table { font-size: 0.85rem; }
            .data-table th, .data-table td { padding: 0.5rem 0.6rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.6rem; }
            .my-logo { font-size: 1.4rem; }
            .container { padding: 0 12px; }
            .comment-section, .rating-section { padding: 1.2rem; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
        }
        @media print {
            header, .search-section, .comment-section, .rating-section, .sidebar, footer { display: none; }
            .content-wrapper { display: block; }
            body { background: #fff; color: #000; }
        }
        .last-updated {
            display: inline-block;
            background: #eef4fa;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #1a3a5c;
            margin-bottom: 1rem;
            border: 1px solid #d0d7e2;
        }
        .last-updated i { margin-right: 0.4rem; color: #f0a500; }
