:root {
            --primary-color: #FF9933;
            --secondary-color: #138808;
            --accent-color: #000080;
            --text-color: #333333;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
        }
        h1, h2, h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--secondary-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .btn-download {
            background: linear-gradient(45deg, var(--primary-color), #ff6600);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 153, 51, 0.6);
        }
        .btn-login {
            background: linear-gradient(45deg, var(--secondary-color), #0d6e07);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(19, 136, 8, 0.4);
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(19, 136, 8, 0.6);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: var(--light-bg);
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        .footer {
            background: linear-gradient(135deg, var(--accent-color), #00004d);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .stat-box {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 15px 0;
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .rating-stars {
            color: #FFD700;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 20px;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
