:root {
            --saffron: #FF9933;
            --indigo: #138808;
            --gold: #FFD700;
            --deep-purple: #4B0082;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--saffron), var(--indigo));
            -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(--deep-purple);
            margin-bottom: 20px;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--saffron);
            padding-bottom: 15px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--indigo);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--saffron);
        }
        .highlight {
            background-color: rgba(255, 153, 51, 0.1);
            border-left: 4px solid var(--saffron);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--saffron), var(--indigo));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-secondary {
            background: linear-gradient(45deg, var(--deep-purple), #6a0dad);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            color: white;
        }
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: white;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: linear-gradient(45deg, var(--saffron), var(--gold));
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            text-decoration: none;
            color: white;
        }
        .rating-stars {
            color: var(--gold);
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(45deg, var(--deep-purple), #2c003e);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: #ddd;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--saffron);
        }
        .nav-link {
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--saffron) !important;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 25px;
            }
        }
