* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #b71c1c, #d32f2f);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.15);
        }
        .logo {
            color: #ffffff;
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 10px 0;
        }
        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 25px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #b71c1c;
            font-size: 34px;
            margin: 20px 0 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #d32f2f;
        }
        h2 {
            color: #b71c1c;
            font-size: 26px;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #d32f2f;
        }
        h3 {
            color: #b71c1c;
            font-size: 22px;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b71c1c;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 28px;
            background-color: #d32f2f;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 17px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background-color: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-secondary {
            background-color: #1565c0;
        }
        .btn-secondary:hover {
            background-color: #0d47a1;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 25px;
            margin: 50px 0;
            text-align: center;
        }
        .stat-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            width: 230px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 38px;
            font-weight: bold;
            color: #d32f2f;
            margin-bottom: 8px;
        }
        .stat-text {
            font-size: 17px;
            color: #2d2d2d;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 4px solid #1565c0;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #2d2d2d;
        }
        .rating {
            color: #ffb300;
            font-weight: bold;
        }
        .tag-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #f1f8e9;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            color: #2e7d32;
            font-size: 15px;
            transition: all 0.3s ease;
            border: 1px solid #c8e6c9;
        }
        .tag:hover {
            background-color: #2e7d32;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-types h3 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 20px;
        }
        .game-type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type-links a {
            color: #e8eaf6;
            text-decoration: none;
            padding: 6px 12px;
            border: 1px solid #7986cb;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        .game-type-links a:hover {
            background-color: #7986cb;
            color: #1a237e;
        }
        .footer-tagline {
            margin: 40px 0;
            font-size: 17px;
            line-height: 1.7;
            color: #e8eaf6;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            color: #c5cae9;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                gap: 10px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .stat-box {
                width: 100%;
                max-width: 300px;
            }
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
