* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .header {
            background-color: #1e293b;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.4);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #f43f5e;
            font-size: 1.7rem;
            font-weight: 900;
            text-decoration: none;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            text-shadow: 0 0 5px rgba(244, 63, 94, 0.2);
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #f43f5e;
            border-bottom: 3px solid #f43f5e;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #e2e8f0;
            font-size: 2rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #f43f5e;
            font-size: 3rem;
            margin: 50px 0 35px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 5px solid #f43f5e;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        h2 {
            color: #e2e8f0;
            font-size: 2.3rem;
            margin: 60px 0 30px;
            padding-left: 20px;
            border-left: 6px solid #f43f5e;
        }
        h3 {
            color: #f43f5e;
            font-size: 1.8rem;
            margin: 40px 0 25px;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            color: #cbd5e1;
        }
        .highlight {
            font-weight: 800;
            color: #f43f5e;
            text-shadow: 0 0 3px rgba(244, 63, 94, 0.2);
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: #f43f5e;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            margin: 25px 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(244, 63, 94, 0.2);
            font-size: 1.1rem;
        }
        .btn:hover {
            background-color: #ec1d3b;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-card {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            border-top: 6px solid #f43f5e;
        }
        .tag {
            display: inline-block;
            background-color: #334155;
            padding: 8px 18px;
            border-radius: 30px;
            margin: 10px;
            text-decoration: none;
            color: #e2e8f0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #f43f5e;
            transform: translateY(-3px);
        }
        .game-type {
            display: inline-block;
            margin: 15px 20px 15px 0;
            text-decoration: none;
            color: #cbd5e1;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .game-type:hover {
            color: #f43f5e;
            transform: translateX(4px);
        }
        .footer {
            background-color: #020617;
            color: #cbd5e1;
            padding: 60px 20px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #f43f5e;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #334155;
            margin-top: 40px;
            font-size: 1.1rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 30px;
                gap: 25px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.4);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            p {
                font-size: 1.15rem;
            }
            .btn {
                padding: 14px 30px;
                margin: 18px 10px;
                font-size: 1rem;
            }
            .image-container {
                margin: 35px 0;
            }
        }
