:root {
            --primary-blue: #1a73e8;
            --ocean-teal: #00bcd4;
            --marine-green: #009688;
            --coral-orange: #ff7043;
            --deep-blue: #0d47a1;
            --sand-beige: #ffd54f;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--deep-blue) !important;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(0, 188, 212, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            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-blue);
            margin-bottom: 25px;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--ocean-teal);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--marine-green);
        }
        .highlight-box {
            background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
            border-left: 4px solid var(--primary-blue);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .btn-download {
            background: linear-gradient(45deg, var(--coral-orange), #ff9800);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(255, 112, 67, 0.4);
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 112, 67, 0.6);
        }
        .btn-login {
            background: linear-gradient(45deg, var(--ocean-teal), var(--marine-green));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 188, 212, 0.6);
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin-bottom: 20px;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--sand-beige), #ffca28);
            color: #333;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .footer-section {
            background: linear-gradient(135deg, var(--deep-blue), #1565c0);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--ocean-teal);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .rating-stars {
            color: var(--sand-beige);
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 25px;
            }
        }
