* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #0f3b5e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f59e0b;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0b1f2e 0%, #1a3a4a 100%);
            padding: 18px 0;
            border-bottom: 4px solid #f59e0b;
            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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: #fbbf24;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-menu li a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s;
        }
        .nav-menu li a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            text-decoration: none;
        }
        .breadcrumb {
            background: #e9edf2;
            padding: 12px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #d1d9e6;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #64748b;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #0f3b5e;
        }
        .breadcrumb .current {
            color: #475569;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #0f2a3b, #1c4a5e);
            padding: 50px 0 45px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎮";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 8rem;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }
        .hero h1 span {
            color: #fbbf24;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto 22px;
            opacity: 0.9;
        }
        .hero .download-badge {
            display: inline-block;
            background: #f59e0b;
            color: #0b1f2e;
            padding: 14px 42px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35);
            transition: all 0.3s;
        }
        .hero .download-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(245, 158, 11, 0.45);
            text-decoration: none;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 45px 0 60px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #0b1f2e;
            border-left: 5px solid #f59e0b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 30px 0 12px;
            color: #1a3a4a;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 22px 0 8px;
            color: #2d4a5e;
        }
        p {
            margin-bottom: 18px;
            color: #334155;
        }
        .content-area p {
            font-size: 1.02rem;
        }
        .highlight-box {
            background: #f1f5f9;
            border-left: 5px solid #f59e0b;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
        }
        .info-table th {
            background: #0b1f2e;
            color: #fbbf24;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .info-table td {
            padding: 11px 16px;
            border-bottom: 1px solid #e2e8f0;
            background: #fff;
        }
        .info-table tr:last-child td {
            border-bottom: none;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .card {
            background: #fff;
            border-radius: 14px;
            padding: 24px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s, box-shadow 0.3s;
            border: 1px solid #eef2f6;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
        }
        .card .card-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.92rem;
            margin-bottom: 0;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: #f1f5f9;
            padding: 10px 18px;
            font-size: 0.88rem;
            color: #475569;
            text-align: center;
            font-style: italic;
        }
        .search-box {
            background: #fff;
            border-radius: 50px;
            display: flex;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            margin: 20px 0 30px;
            border: 1px solid #d1d9e6;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 22px;
            font-size: 1rem;
            outline: none;
            background: transparent;
        }
        .search-box button {
            background: #0b1f2e;
            border: none;
            color: #fff;
            padding: 0 28px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .search-box button:hover {
            background: #1a3a4a;
        }
        .comment-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #e2e8f0;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form,
        .rating-form {
            display: grid;
            gap: 16px;
            background: #f1f5f9;
            padding: 24px 28px;
            border-radius: 14px;
            margin: 18px 0 28px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input,
        .rating-form select {
            padding: 12px 16px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form input:focus,
        .rating-form select:focus {
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form .btn,
        .rating-form .btn {
            background: #0b1f2e;
            color: #fff;
            border: none;
            padding: 13px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            justify-self: start;
        }
        .comment-form .btn:hover,
        .rating-form .btn:hover {
            background: #1a3a4a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.7rem;
            color: #f59e0b;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 22px 20px;
            margin-bottom: 22px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f6;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 14px;
            border-bottom: 2px solid #f59e0b;
            padding-bottom: 8px;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 9px;
        }
        .sidebar-links a {
            font-size: 0.92rem;
            color: #0f3b5e;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-links a:hover {
            color: #f59e0b;
        }
        .sidebar-links a::before {
            content: "▸";
            color: #f59e0b;
            font-weight: 700;
        }
        friend-link {
            display: block;
            background: #0b1f2e;
            color: #e2e8f0;
            padding: 28px 0;
            margin-top: 20px;
            text-align: center;
        }
        friend-link .friend-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        friend-link h4 {
            color: #fbbf24;
            font-size: 1.15rem;
            margin-bottom: 14px;
            border-bottom: none;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 28px;
            list-style: none;
        }
        friend-link .friend-list a {
            color: #cbd5e1;
            font-size: 0.92rem;
            transition: color 0.2s;
        }
        friend-link .friend-list a:hover {
            color: #fbbf24;
            text-decoration: none;
        }
        footer {
            background: #07131c;
            color: #94a3b8;
            padding: 30px 0;
            text-align: center;
            font-size: 0.88rem;
            border-top: 2px solid #1a3a4a;
        }
        footer .copyright {
            margin-bottom: 4px;
        }
        footer .copyright a {
            color: #fbbf24;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 16px 0 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .breadcrumb ol {
                font-size: 0.82rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .info-table {
                font-size: 0.85rem;
            }
            .info-table th,
            .info-table td {
                padding: 8px 10px;
            }
            .hero .download-badge {
                padding: 12px 28px;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 14px;
            }
            .search-box button {
                padding: 12px;
                justify-content: center;
            }
            .comment-form,
            .rating-form {
                padding: 16px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #0b1f2e;
            color: #fbbf24;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            z-index: 999;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            background: #1a3a4a;
        }
