:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #115740;
            --text-color: #333333;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        .game-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: var(--accent-color);
            border: none;
            padding: 12px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 10px;
        }
        .btn-download:hover {
            background-color: #0d4530;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 10px 28px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 10px;
        }
        .btn-login:hover {
            background-color: white;
            color: var(--primary-color);
            transform: scale(1.05);
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin: 2rem 0 1.5rem;
        }
        .content-section {
            padding: 3rem 0;
        }
        .content-section:nth-child(even) {
            background-color: var(--light-bg);
        }
        .feature-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
            width: 100%;
        }
        .rating-stars {
            color: #ffc107;
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: #0d4530;
            transform: scale(1.05);
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }
        .footer-link {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 2rem 0;
            }
        }
