:root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #4fc3f7;
            --dark-bg: #0d1b2a;
            --light-text: #e0f7fa;
        }
        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;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(26, 35, 126, 0.9)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 2rem;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            margin-bottom: 1rem;
        }
        .btn-download {
            background: linear-gradient(45deg, var(--secondary-color), #ff8f00);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
        }
        .btn-login {
            background: transparent;
            border: 2px solid var(--accent-color);
            color: white;
            padding: 0.8rem 2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background: var(--accent-color);
            color: var(--dark-bg);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #e1f5fe 0%, #e1f5fe 100%);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .key-feature {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        .key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-left: 4px solid var(--secondary-color);
        }
        .tag {
            display: inline-block;
            background: #e3f2fd;
            color: var(--primary-color);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--accent-color);
            color: white;
            text-decoration: none;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
            transition: all 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .rating-stars {
            color: #ffc107;
            font-size: 1.2rem;
        }
        .player-review {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--secondary-color);
        }
        footer {
            background: var(--dark-bg);
            color: var(--light-text);
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .footer-links a {
            color: var(--accent-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
