* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf8f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #d92b2b;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.9rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd6d6;
            text-decoration: underline;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.6rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 45px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a365d;
            font-size: 2.6rem;
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 18px;
            border-bottom: 4px solid #d92b2b;
        }
        h2 {
            color: #1a365d;
            font-size: 2.1rem;
            margin: 50px 0 25px;
            padding-left: 12px;
            border-left: 5px solid #d92b2b;
        }
        h3 {
            color: #1a365d;
            font-size: 1.6rem;
            margin: 35px 0 18px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #d92b2b;
            font-weight: 700;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .btn-group {
            text-align: center;
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        .btn {
            padding: 18px 38px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 0 rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #00a8e8;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #008fc9;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 rgba(0,0,0,0.15);
        }
        .login-btn {
            background-color: #3a0ca3;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #2a0878;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 rgba(0,0,0,0.15);
        }
        .stats-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            background-color: #f8f9fa;
            padding: 22px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #d92b2b;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #495057;
            font-weight: 500;
        }
        .review-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f1f3f5;
        }
        .reviewer-name {
            font-weight: 700;
            color: #1a365d;
            font-size: 1.1rem;
        }
        .review-rating {
            color: #ffc107;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .tag-section {
            margin: 60px 0 40px;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #1a365d;
            padding: 10px 20px;
            border-radius: 50px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #bbdefb;
            color: #0d2647;
        }
        .game-type-nav {
            margin: 40px 0 60px;
        }
        .game-type-link {
            color: #3a0ca3;
            text-decoration: none;
            margin-right: 25px;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            color: #2a0878;
            text-decoration: underline;
        }
        footer {
            background-color: #1a365d;
            color: #ffffff;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffffff;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #d92b2b;
            display: inline-block;
        }
        .footer-recommendation {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #e9ecef;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #d92b2b;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 8px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
                width: 100%;
                text-align: center;
            }
            .game-type-link {
                display: block;
                margin-bottom: 15px;
            }
        }
