:root {
            --primary-blue: #1a73e8;
            --ocean-deep: #0066cc;
            --marine-teal: #00a896;
            --coral-orange: #ff6b6b;
            --sand-beige: #f4e4bc;
            --wave-light: #e3f2fd;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, var(--wave-light) 0%, #ffffff 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--ocean-deep), var(--marine-teal));
            -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, 102, 204, 0.8), rgba(0, 168, 150, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--ocean-deep);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--coral-orange);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--marine-teal);
            margin-top: 2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--wave-light), #ffffff);
            border-left: 4px solid var(--ocean-deep);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--ocean-deep), var(--marine-teal));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-success {
            background: linear-gradient(45deg, var(--marine-teal), #00cc99);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--ocean-deep);
            display: block;
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--wave-light), #e3f2fd);
            color: var(--ocean-deep);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin: 0.3rem;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag-badge:hover {
            background: var(--ocean-deep);
            color: white;
            transform: translateY(-2px);
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .rating-stars {
            color: #ffc107;
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(135deg, var(--ocean-deep), #0047ab);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: var(--sand-beige);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
