/* ================================================
   EA SCREENSHOT STYLES - CLICKABLE IMAGE
   ================================================ */

.ea-screenshot-container {
    display: flex;
    justify-content: center;
    margin: 40px 0 60px 0;
}

.ea-screenshot-link {
    display: block;
    text-decoration: none;
    max-width: 900px;
    width: 100%;
    cursor: pointer;
}

.ea-screenshot-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ea-screenshot-card:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.35);
    border-color: rgba(212, 175, 55, 0.6);
}

.screenshot-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    }
}

.ea-screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.ea-screenshot-card:hover .ea-screenshot-image {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ea-screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.play-icon {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ea-screenshot-card:hover .play-icon {
    transform: scale(1);
}

.play-icon svg {
    margin-left: 4px;
}

/* ================================================
   INDICATOR IMAGE SHOWCASE
   ================================================ */

.indicator-showcase {
    display: flex;
    justify-content: center;
    margin: 50px 0 60px 0;
}

.indicator-image-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    transition: all 0.5s ease;
}

.indicator-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.indicator-image {
    width: 100%;
    height: auto;
    display: block;
}

.indicator-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.indicator-image-container:hover .indicator-image-glow {
    opacity: 1;
}

/* ================================================
   RESPONSIVE - EA & INDICATOR IMAGES
   ================================================ */

@media (max-width: 768px) {
    .ea-screenshot-container,
    .indicator-showcase {
        margin: 30px 0 40px 0;
    }
    
    .ea-screenshot-card,
    .indicator-image-container {
        border-radius: 20px;
    }
    
    .screenshot-badge {
        top: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .play-icon {
        width: 70px;
        height: 70px;
    }
    
    .play-icon svg {
        width: 40px;
        height: 40px;
    }
}
