/**
 * ===================================
 * HOME GAMES SECTION - CINEMATOGRÁFICO
 * ===================================
 * 
 * CSS épico para Games Carousel
 * Efeitos: Infinite scroll, Glass morphism, Hover panels, Neon effects
 * 
 * @package Nuntius Theme
 * @version 2.0.0 EPIC
 */

/* ===== FORÇA OVERFLOW PARA PANEL ===== */
body, html {
    overflow-x: visible !important;
}

.page, .site, .wrap, .container {
    overflow: visible !important;
}

/* ===== SEÇÃO PRINCIPAL ===== */
.home-games-epic {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: var(--section-margin-overlap); /* Sobreposição suave */
    padding: var(--section-padding-top) 0 var(--section-padding-bottom); /* Usa variáveis globais */
    background: 
        radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(114, 137, 218, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0f 0%, #16213e 50%, #0a0a0f 100%);
    overflow: visible;
    color: #ffffff;
}

/* ===== DEPTH LAYERS ===== */
.games-depth-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.games-depth-layer.layer-1 {
    background: radial-gradient(circle at 40% 30%, rgba(88, 101, 242, 0.1) 0%, transparent 60%);
    animation: gamesDepthFloat1 18s ease-in-out infinite;
}

.games-depth-layer.layer-2 {
    background: radial-gradient(circle at 60% 70%, rgba(114, 137, 218, 0.08) 0%, transparent 60%);
    animation: gamesDepthFloat2 22s ease-in-out infinite reverse;
}

.games-depth-layer.layer-3 {
    background: radial-gradient(circle at 50% 50%, rgba(67, 181, 129, 0.06) 0%, transparent 70%);
    animation: gamesDepthFloat3 25s ease-in-out infinite;
}

@keyframes gamesDepthFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.15; }
}

@keyframes gamesDepthFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.08; }
    50% { transform: translate(-25px, 25px) rotate(3deg); opacity: 0.12; }
}

@keyframes gamesDepthFloat3 {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.06; }
    50% { transform: scale(1.06) translateY(-12px); opacity: 0.1; }
}

/* ===== CONTAINER ===== */
.games-container {
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* ===== HEADER CINEMATOGRÁFICO ===== */
.games-header-cinematic {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid #5865F2;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5865F2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: gamesBadgePulse 3s ease-in-out infinite;
}

.games-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #5865F2;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes gamesBadgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(88, 101, 242, 0.3); }
    50% { box-shadow: 0 0 20px rgba(88, 101, 242, 0.6); }
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(88, 101, 242, 0.5); }
    50% { box-shadow: 0 0 15px rgba(88, 101, 242, 1); }
}

.games-epic-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin: 0 0 30px;
    line-height: 1.1;
}

.games-epic-title .neon-gradient {
    background: linear-gradient(135deg, #5865F2, #7289DA, #43B581);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 30px rgba(88, 101, 242, 0.8),
        0 0 60px rgba(88, 101, 242, 0.5);
    animation: gamesNeonPulse 3s ease-in-out infinite;
}

@keyframes gamesNeonPulse {
    0%, 100% { 
        filter: brightness(1);
        text-shadow: 
            0 0 30px rgba(88, 101, 242, 0.8),
            0 0 60px rgba(88, 101, 242, 0.5);
    }
    50% { 
        filter: brightness(1.2);
        text-shadow: 
            0 0 40px rgba(88, 101, 242, 1),
            0 0 80px rgba(88, 101, 242, 0.7);
    }
}

.title-separator {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5865F2, #7289DA, #43B581, transparent);
    margin: 0 auto 30px;
    border-radius: 10px;
    animation: separatorGlow 3s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(88, 101, 242, 0.3); }
    50% { box-shadow: 0 0 20px rgba(88, 101, 242, 0.6); }
}

.games-epic-subtitle {
    font-size: 1.3rem;
    color: #B9BBBE;
    line-height: 1.8;
}

.games-epic-subtitle .highlight {
    color: #7289DA;
    font-weight: 700;
}

/* ===== CAROUSEL WRAPPER ===== */
.games-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 80px;
    overflow: visible;
}

.games-track-container {
    overflow: visible;
    width: 100%;
    position: relative;
}

.games-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

/* ===== NAVIGATION ARROWS ===== */
.games-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(47, 49, 54, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(88, 101, 242, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.games-arrow:hover {
    background: rgba(88, 101, 242, 0.5);
    border-color: #5865F2;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.7);
}

.games-arrow.games-arrow-left {
    left: 0;
}

.games-arrow.games-arrow-right {
    right: 0;
}

/* ===== GAME CARDS ÉPICOS - REDESIGN 3.0 ===== */
.game-card-epic {
    min-width: 280px;
    width: 280px;
    height: 400px;
    background: 
        linear-gradient(145deg, rgba(30, 26, 58, 0.95) 0%, rgba(22, 19, 39, 0.98) 100%),
        radial-gradient(circle at top right, rgba(88, 101, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(114, 137, 218, 0.08) 0%, transparent 50%);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(88, 101, 242, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: perspective(1000px);
}

/* Glowing Border Effect */
.game-card-epic::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(88, 101, 242, 0.8) 0%, 
        rgba(114, 137, 218, 0.6) 25%,
        rgba(153, 170, 181, 0.4) 50%, 
        rgba(67, 181, 129, 0.6) 75%,
        rgba(88, 101, 242, 0.8) 100%);
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: 34px;
    pointer-events: none;
    z-index: -1;
    filter: blur(8px);
    animation: cardBorderPulse 4s ease-in-out infinite;
}

/* Animated Glow */
@keyframes cardBorderPulse {
    0%, 100% { 
        filter: blur(8px) brightness(1); 
        transform: scale(1); 
    }
    50% { 
        filter: blur(12px) brightness(1.2); 
        transform: scale(1.02); 
    }
}

/* Floating Particles Effect */
.game-card-epic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(114, 137, 218, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 90% 20%, rgba(153, 170, 181, 0.3) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 32px;
    pointer-events: none;
    animation: particlesFloat 15s linear infinite;
}

@keyframes particlesFloat {
    0% { background-position: 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 100% 100%, -100% 100%, 50% -100%; }
}

.game-card-epic:hover::before {
    opacity: 1;
}

.game-card-epic:hover::after {
    opacity: 1;
}

.game-card-epic:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.8),
        0 15px 40px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 120px rgba(88, 101, 242, 0.5),
        0 0 200px rgba(114, 137, 218, 0.2);
    z-index: 200;
}

/* Card click feedback */
.game-card-epic:active {
    transform: perspective(1000px) rotateY(2deg) rotateX(-2deg) scale(0.98);
    transition: all 0.1s ease-out;
}

/* Melhorar cursor pointer */
.game-card-epic {
    cursor: pointer;
}

.game-card-epic .game-btn,
.game-card-epic .panel-btn-steam {
    cursor: pointer;
    z-index: 10;
    position: relative;
}

/* ===== GAME IMAGE CONTAINER - ENHANCED ===== */
.game-image-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #1e1a3a 0%, #2c2759 50%, #16213e 100%),
        radial-gradient(circle at center, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    border-radius: 24px 24px 0 0;
    border-bottom: 3px solid rgba(88, 101, 242, 0.3);
}

/* Efeito de Vidro/Reflexo na Imagem */
.game-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 20%,
        transparent 80%,
        rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.game-card-epic:hover .game-image-container::after {
    opacity: 0.8;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85) saturate(1.2) contrast(1.1);
}

.game-card-epic:hover .game-image {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) saturate(1.4) contrast(1.2) hue-rotate(5deg);
}

.game-image-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(0, 0, 0, 0) 0%, 
            rgba(88, 101, 242, 0.1) 30%,
            rgba(0, 0, 0, 0.3) 60%, 
            rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at center, 
            rgba(88, 101, 242, 0.2) 0%, 
            transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
}

.game-card-epic:hover .game-image-overlay {
    opacity: 1;
}

/* ===== RATING BADGE - ENHANCED ===== */
.game-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 26, 58, 0.95) 100%),
        radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    backdrop-filter: blur(20px);
    color: #FFD700;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.game-card-epic:hover .game-rating {
    transform: scale(1.1);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.8);
}

.game-rating i {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
    animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
    from { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8)); }
    to { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 1)); }
}

/* ===== HOVER ACTIONS - ENHANCED ===== */
.game-card-hover-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: flex;
    gap: 16px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card-epic:hover .game-card-hover-actions {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.game-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(25px);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.game-btn:hover::before {
    left: 100%;
}

.game-btn-play {
    background: 
        linear-gradient(135deg, #5865F2 0%, #7289DA 50%, #5865F2 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    color: #ffffff;
    box-shadow: 
        0 8px 25px rgba(88, 101, 242, 0.5),
        0 0 20px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(88, 101, 242, 0.6);
}

.game-btn-play:hover {
    background: 
        linear-gradient(135deg, #7289DA 0%, #5865F2 50%, #7289DA 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(88, 101, 242, 0.7),
        0 0 40px rgba(88, 101, 242, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(88, 101, 242, 0.9);
}

.game-btn-info {
    background: 
        rgba(0, 0, 0, 0.95),
        radial-gradient(circle at center, rgba(114, 137, 218, 0.3) 0%, transparent 70%);
    color: #0e4481 !important;
    border: 2px solid rgba(114, 137, 218, 0.8);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(114, 137, 218, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.game-btn-info:hover {
    background: 
        rgba(114, 137, 218, 0.3),
        radial-gradient(circle at center, rgba(114, 137, 218, 0.3) 0%, transparent 70%);
    transform: scale(1.15) translateY(-2px);
    border-color: rgba(114, 137, 218, 0.9);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(114, 137, 218, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ===== CARD INFO - ENHANCED ===== */
.game-card-info {
    padding: 24px;
    background: 
        linear-gradient(180deg, 
            rgba(30, 26, 58, 0.9) 0%, 
            rgba(22, 19, 39, 0.95) 100%),
        radial-gradient(circle at bottom, rgba(88, 101, 242, 0.1) 0%, transparent 60%);
    backdrop-filter: blur(30px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 0 24px 24px;
    border-top: 2px solid rgba(88, 101, 242, 0.2);
    position: relative;
}

.game-card-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(88, 101, 242, 0.8) 50%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

.game-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 
        0 0 10px rgba(88, 101, 242, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #ffffff 0%, #e3e5e8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.game-card-epic:hover .game-title {
    text-shadow: 
        0 0 15px rgba(88, 101, 242, 0.8),
        0 2px 10px rgba(0, 0, 0, 1);
}

.game-genre {
    font-size: 0.95rem;
    color: #B9BBBE;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #B9BBBE 0%, #7289DA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-year {
    font-size: 0.9rem;
    color: #7289DA;
    font-weight: 700;
    padding: 4px 12px;
    background: rgba(114, 137, 218, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(114, 137, 218, 0.3);
    display: inline-block;
    text-shadow: 0 0 8px rgba(114, 137, 218, 0.5);
}

/* ===== DESCRIPTION PANEL - FINAL WORKING VERSION ===== */
.game-description-panel {
    position: absolute;
    top: 0;
    left: 100%;
    width: 320px;
    height: 100%;
    background: linear-gradient(145deg, 
        rgba(30, 26, 58, 0.98) 0%, 
        rgba(22, 19, 39, 0.99) 50%,
        rgba(16, 13, 33, 0.99) 100%);
    backdrop-filter: blur(30px);
    border-radius: 0 20px 20px 0;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-left: none;
    box-shadow: 
        5px 0 30px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(88, 101, 242, 0.3);
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card-epic:hover .game-description-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* GARANTE OVERFLOW VISÍVEL NOS CONTAINERS */
.home-games-epic,
.games-container,
.games-carousel-wrapper,
.games-track-container,
.games-track,
.game-card-epic {
    overflow: visible !important;
}

.panel-title {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #7289DA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(114, 137, 218, 0.5);
    position: relative;
}

.panel-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5865F2, #7289DA);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

.panel-description {
    font-size: 0.8rem;
    color: #D4D7DC;
    line-height: 1.4;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    max-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.panel-features h5,
.panel-platforms h5 {
    font-size: 0.7rem;
    background: linear-gradient(135deg, #7289DA 0%, #99AAB5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 6px;
}

.features-list,
.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.feature-tag,
.platform-badge {
    background: 
        linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, rgba(114, 137, 218, 0.2) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    border: 1px solid rgba(88, 101, 242, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(88, 101, 242, 0.5);
}

.feature-tag:hover,
.platform-badge:hover {
    background: 
        linear-gradient(135deg, rgba(88, 101, 242, 0.5) 0%, rgba(114, 137, 218, 0.4) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(1.05);
    border-color: rgba(88, 101, 242, 0.8);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.panel-action {
    margin-top: auto;
    padding-top: 10px;
}

.panel-btn-steam {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: 
        linear-gradient(135deg, #5865F2 0%, #7289DA 50%, #5865F2 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(88, 101, 242, 0.6);
    box-shadow: 
        0 6px 20px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.panel-btn-steam::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.panel-btn-steam:hover::before {
    left: 100%;
}

.panel-btn-steam:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 
        0 10px 25px rgba(88, 101, 242, 0.6),
        0 0 30px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(88, 101, 242, 0.9);
}

.panel-btn-steam i {
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* ===== INDICATORS ===== */
.games-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    padding: 0 20px;
}

.games-indicator {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(153, 170, 181, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.games-indicator.active {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    transform: scale(1.3);
    box-shadow: 
        0 4px 15px rgba(88, 101, 242, 0.4),
        0 0 20px rgba(88, 101, 242, 0.3);
}

.games-indicator:hover {
    background: linear-gradient(135deg, #7289DA 0%, #99AAB5 100%);
    transform: scale(1.2);
}

/* ===== SCROLL REVEAL ===== */
.reveal-hidden {
    opacity: 0;
}

.revealed.reveal-fade-up {
    animation: revealFadeUp 0.8s ease forwards;
}

@keyframes revealFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE - UPDATED ===== */
@media (max-width: 1200px) {
    .games-carousel-wrapper {
        padding: 0 70px;
    }
    
    .game-card-epic {
        min-width: 300px;
        width: 300px;
        height: 460px;
    }
    
    .game-description-panel {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .home-games-epic {
        padding: 60px 0 80px;
    }
    
    .games-header-cinematic {
        margin-bottom: 50px;
    }
    
    .games-carousel-wrapper {
        padding: 0 60px;
    }
    
    .games-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .game-card-epic {
        min-width: 240px;
        width: 240px;
        height: 400px;
    }
    
    .game-image-container {
        height: 260px;
    }
    
    .game-description-panel {
        width: 280px;
    }
}

/* ===== BOTÃO CTA "VER TODOS OS JOGOS" ===== */
.games-cta-container {
    margin-top: 4rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.games-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #5865f2, #7289da, #43b581);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease-in-out infinite;
}

.games-cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(88, 101, 242, 0.6),
        0 0 40px rgba(114, 137, 218, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.games-cta-btn:hover .cta-icon {
    transform: translateX(5px);
}

.cta-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.games-cta-btn:hover .cta-glow-effect {
    transform: scale(1.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .games-carousel-wrapper {
        padding: 0 50px;
    }
    
    .games-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .game-card-epic {
        min-width: 200px;
        width: 200px;
        height: 350px;
    }
    
    .game-image-container {
        height: 220px;
    }
    
    .game-description-panel {
        display: none; /* Esconder painel em telas muito pequenas */
    }
    
    .games-cta-container {
        margin-top: 2.5rem;
    }
    
    .games-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 1px;
    }
}
