:root {
            --himalayan-blue: #4A90E2;
            --mountain-green: #27AE60;
            --snow-white: #F8F9FA;
            --golden-sun: #F39C12;
            --deep-valley: #2C3E50;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, var(--snow-white) 0%, #E3F2FD 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--himalayan-blue), var(--mountain-green));
            -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(42, 67, 101, 0.8), rgba(32, 58, 92, 0.9)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .game-feature {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .game-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .btn-download {
            background: linear-gradient(45deg, var(--golden-sun), #E67E22);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
        }
        .btn-login {
            background: linear-gradient(45deg, var(--himalayan-blue), #3498DB);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
        }
        .tag-badge {
            display: inline-block;
            background: var(--mountain-green);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            background: var(--deep-valley);
            transform: scale(1.05);
            text-decoration: none;
            color: white;
        }
        .rating-stars {
            color: var(--golden-sun);
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, var(--himalayan-blue), var(--mountain-green));
            margin: 40px 0;
            border-radius: 3px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
        }
        h1, h2, h3 {
            color: var(--deep-valley);
            margin-bottom: 20px;
        }
        h1 {
            font-weight: 800;
            font-size: 2.5rem;
        }
        h2 {
            font-weight: 700;
            font-size: 2rem;
            border-left: 5px solid var(--himalayan-blue);
            padding-left: 15px;
        }
        h3 {
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--mountain-green);
        }
        .key-feature {
            background: rgba(74, 144, 226, 0.1);
            border-left: 4px solid var(--himalayan-blue);
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
        }
        footer {
            background: var(--deep-valley);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
