* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff5f5;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #ff6b6b, #ffdd59);
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.25);
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .nav {
            display: flex;
            justify-content: center;
            gap: 22px;
            flex-wrap: wrap;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav a:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px;
        }
        h1 {
            color: #e50914;
            text-align: center;
            margin: 35px 0;
            font-size: 2.8rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #c41e3a;
            margin: 45px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffcc29;
            font-size: 2.2rem;
        }
        h3 {
            color: #8b0000;
            margin: 35px 0 18px;
            font-size: 1.7rem;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🎨";
            margin-right: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background: #ff5252;
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            margin: 20px 12px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 8px rgba(0,0,0,0.15);
            font-size: 1.1rem;
        }
        .btn:hover {
            background: #d32f2f;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .btn-login {
            background: #1a237e;
        }
        .btn-login:hover {
            background: #0d1b2a;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 6px solid #ffcc29;
        }
        .stats-box p {
            margin: 12px 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        .stats-box p::before {
            content: "•";
            color: #ff5252;
            font-weight: bold;
            margin-right: 10px;
        }
        .review-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #4a6fa5;
        }
        .reviewer {
            font-weight: bold;
            color: #283593;
            font-size: 1.2rem;
            margin-bottom: 8px;
            display: block;
        }
        .tag {
            display: inline-block;
            background: #f8f9fa;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            color: #1a237e;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        .tag:hover {
            background: #e8eaf6;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #c41e3a;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #8b0000;
            text-decoration: underline;
        }
        .footer {
            background: #1a237e;
            color: white;
            padding: 50px 25px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin: 15px 0;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 22px;
                right: 22px;
            }
            .nav {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                gap: 15px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                margin: 25px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 35px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 20px;
            }
            .btn {
                padding: 12px 24px;
                margin: 15px 8px;
                font-size: 1rem;
            }
            .image-container {
                margin: 30px 0;
            }
            .stats-box, .review-card {
                padding: 20px;
                margin: 20px 0;
            }
        }
