/* ==========================================
   GAMER PAGE - CUSTOM STYLES
   Following standard site design pattern
   ========================================== */

/* Gamer Hero Section */
.gamer-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #1E6BF1 100%);
    position: relative;
    overflow: hidden;
}

.gamer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/gamer_banner.webp') center/cover no-repeat;
    opacity: 0.15;
}

.gamer-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.gamer-hero-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.gamer-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.gamer-hero-title .text-gradient {
    background: linear-gradient(90deg, #FCD34D, #F59E0B, #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gamer-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.gamer-hero-subtitle strong {
    color: #FCD34D;
}

/* Route Display */
.gamer-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.route-display {
    width: 100%;
    max-width: 350px;
}

.route-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.route-card>i {
    font-size: 3rem;
    color: #FCD34D;
    margin-bottom: 1rem;
    display: block;
}

.route-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.route-cities {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.route-city {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.route-city i {
    color: #FCD34D;
    font-size: 0.85rem;
}

.route-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Plan Features with Gamepad Icon */
.plan-features li i.fa-gamepad {
    color: var(--primary-blue);
}

.plan-features li strong {
    color: var(--primary-blue);
}

/* Gamer Benefits Section - Custom Background */
.gamer-benefits {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 107, 241, 0.85) 100%),
        url('../images/gamer_banner_2.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.gamer-benefits::before {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .gamer-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gamer-hero-title {
        font-size: 2.5rem;
    }

    .gamer-hero-visual {
        order: -1;
    }

    .route-display {
        max-width: 300px;
        margin: 0 auto;
    }

    .route-card {
        padding: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gamer-hero {
        padding: 6rem 0 3rem;
    }

    .gamer-hero-title {
        font-size: 2rem;
    }

    .gamer-hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .route-card>i {
        font-size: 2.5rem;
    }

    .route-card h3 {
        font-size: 1.25rem;
    }
}