:root {
            --saffron: #FF9933;
            --green: #138808;
            --navy: #000080;
            --gold: #FFD700;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--saffron);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--saffron) !important;
            transform: translateY(-2px);
        }
        .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;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: bold;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            margin-bottom: 1rem;
        }
        .btn-download {
            background: linear-gradient(45deg, var(--saffron), var(--gold));
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 5px;
        }
        .btn-download:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
        }
        .btn-login {
            background: linear-gradient(45deg, var(--green), #2ECC71);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 5px;
        }
        .btn-login:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(19, 136, 8, 0.4);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin: 30px 0;
        }
        h1, h2, h3 {
            color: var(--navy);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--saffron);
            padding-bottom: 10px;
        }
        h2 {
            border-left: 5px solid var(--green);
            padding-left: 15px;
        }
        .highlight {
            background-color: rgba(255, 153, 51, 0.1);
            border-left: 4px solid var(--saffron);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-icon {
            color: var(--saffron);
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: #f0f0f0;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #333;
        }
        .tag:hover {
            background: var(--saffron);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: var(--navy);
            color: white;
            padding: 40px 0 20px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--saffron);
        }
        .rating-stars {
            color: var(--gold);
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
