* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #1a202c;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1e3a8a;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            color: #fbbf24;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1.5px;
            font-family: 'Trebuchet MS', sans-serif;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 15px;
        }
        .nav-links li {
            margin: 5px 8px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #fbbf24;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 25px;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #1e3a8a;
            text-align: center;
            margin: 0 0 40px;
            font-size: 38px;
            padding-bottom: 15px;
            border-bottom: 4px solid #fbbf24;
        }
        h2 {
            color: #1e3a8a;
            margin: 50px 0 25px;
            font-size: 30px;
            border-left: 5px solid #fbbf24;
            padding-left: 15px;
        }
        h3 {
            color: #1e3a8a;
            margin: 35px 0 18px;
            font-size: 24px;
            position: relative;
            padding-bottom: 8px;
        }
        h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #fbbf24;
        }
        p {
            margin-bottom: 22px;
            font-size: 17.5px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #1e3a8a;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            margin: 0 12px 18px;
            background-color: #1e3a8a;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 19px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .btn:hover {
            background-color: #fbbf24;
            color: #1e3a8a;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
            border-top: 6px solid #fbbf24;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid #f1f5f9;
            font-size: 17px;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-box {
            background-color: white;
            border-left: 5px solid #fbbf24;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
        }
        .reviewer {
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 8px;
            font-size: 19px;
            display: flex;
            align-items: center;
        }
        .reviewer:before {
            content: '👤';
            margin-right: 10px;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #dbeafe;
            color: #1e3a8a;
            padding: 9px 18px;
            border-radius: 25px;
            margin: 0 10px 15px 0;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #fbbf24;
            color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .game-type-nav {
            margin: 45px 0 25px;
        }
        .game-type {
            display: inline-block;
            color: #1e3a8a;
            margin-right: 25px;
            margin-bottom: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            position: relative;
            padding-bottom: 3px;
        }
        .game-type:hover {
            color: #fbbf24;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #1e293b;
            color: #f8fafc;
            padding: 60px 20px 40px;
            margin-top: 80px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 21px;
            margin-bottom: 25px;
            color: #fbbf24;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(251, 191, 36, 0.3);
        }
        .footer-section p {
            text-align: left;
            font-size: 17px;
            color: #e2e8f0;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 30px;
            font-size: 16px;
            color: #94a3b8;
            border-top: 1px solid #334155;
            grid-column: 1 / -1;
        }
        .tips-box {
            background-color: #eff6ff;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #3b82f6;
        }
        .tips-box h4 {
            color: #1e3a8a;
            margin-bottom: 15px;
            font-size: 19px;
            display: flex;
            align-items: center;
        }
        .tips-box h4:before {
            content: '💡';
            margin-right: 10px;
        }
        .feature-list {
            margin: 25px 0 35px 20px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 17px;
            position: relative;
            padding-left: 30px;
        }
        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #1e3a8a;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #1e3a8a;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                padding: 25px 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                width: 90%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                width: 100%;
                padding: 12px;
                font-size: 17px;
            }
            h1 {
                font-size: 30px;
                margin-bottom: 35px;
                padding-bottom: 12px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
                padding-left: 12px;
            }
            h3 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            p {
                font-size: 16.5px;
                margin-bottom: 20px;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 14px 20px;
                font-size: 18px;
            }
            .stat-item {
                flex-direction: column;
                gap: 8px;
                padding-bottom: 15px;
                margin-bottom: 15px;
            }
            .stat-item span:first-child {
                font-weight: bold;
                color: #1e3a8a;
            }
            .footer-content {
                gap: 30px;
            }
            .footer-section h4 {
                font-size: 20px;
                margin-bottom: 20px;
            }
            .copyright {
                padding-top: 30px;
                font-size: 15px;
            }
        }
