/* Game Banner Styles */
.game-banner {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.game-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Banner content overlay - positioned on LEFT side of banner */
.game-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    z-index: 2;
    /*background: linear-gradient(135deg, rgba(230, 57, 87, 0.8) 0%, rgba(248, 110, 100, 0.8) 100%);
    backdrop-filter: blur(5px);*/
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

/* Text content section */
.banner-text-section {
    color: white;
    width: 100%;
}

/* Main heading */
.banner-main-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    /*margin-bottom: 15px;*/
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

/* Subheading */
.banner-subtitle {
    font-size: 2.4rem;
    font-weight: bold;
    color: #FFD700;
    /*margin-bottom: 10px;*/
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Price section */
.banner-pricing {
    font-size: 4.0rem;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* QR Code section */
.banner-qr-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.banner-qr-container {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.banner-qr-code {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    display: block;
}

.banner-qr-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.banner-qr-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-qr-instructions {
    font-size: 0.85rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    max-width: 250px;
}

/* Tablet responsive adjustments */
@media (max-width: 768px) {
    .game-banner {
        margin-bottom: 15px;
    }
    
    .game-banner-content {
        width: 55%;
        padding: 25px;
    }
    
    .banner-main-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .banner-subtitle {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .banner-pricing {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .banner-qr-section {
        gap: 15px;
        margin-top: 12px;
    }
    
    .banner-qr-code {
        width: 90px;
        height: 90px;
    }
    
    .banner-qr-instructions {
        font-size: 0.8rem;
        max-width: 220px;
    }
    
    .banner-qr-label {
        font-size: 1rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .game-banner {
        margin-bottom: 10px;
    }
    
    .game-banner-content {
        width: 100%;
        position: static;
        border-radius: 20px;
        margin-top: 20px;
        background: linear-gradient(135deg, #E63957 0%, #F86E64 100%);
    }
    
    .banner-main-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 6px;
        text-align: center;
    }
    
    .banner-pricing {
        font-size: 1.6rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .banner-qr-section {
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .banner-qr-code {
        width: 80px;
        height: 80px;
    }
    
    .banner-qr-instructions {
        font-size: 0.8rem;
        max-width: 100%;
        text-align: center;
    }
    
    .banner-qr-label {
        font-size: 1rem;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .game-banner {
        margin-bottom: 8px;
    }
    
    .game-banner-content {
        padding: 20px 15px;
        /*margin-top: 15px;*/
        border-radius: 15px;
    }
    
    .banner-main-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .banner-pricing {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .banner-qr-section {
        gap: 12px;
        margin-top: 12px;
    }
    
    .banner-qr-code {
        width: 70px;
        height: 70px;
    }
    
    .banner-qr-instructions {
        font-size: 0.75rem;
    }
    
    .banner-qr-label {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .game-banner {
        margin-bottom: 6px;
    }
    
    .game-banner-content {
        padding: 18px 12px;
        margin-top: 12px;
        border-radius: 12px;
    }
    
    .banner-main-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .banner-pricing {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .banner-qr-section {
        gap: 10px;
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .banner-qr-code {
        width: 60px;
        height: 60px;
    }
    
    .banner-qr-instructions {
        font-size: 0.7rem;
        text-align: center;
        max-width: 160px;
    }
    
    .banner-qr-label {
        font-size: 0.9rem;
    }
}

/* Accessibility - Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .game-banner {
        transition: none;
    }
}