/* Game List Component Styles */
.game-list-section {
    padding: 5rem 0;
    background: var(--background-primary);
}

.game-list-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
}

.game-list-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.game-list-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.game-list-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.game-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.game-slides-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
}

.game-image-container {
    flex: 0 0 300px;
    height: 400px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-slide:hover .game-image {
    transform: scale(1.05);
}

.game-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.game-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-badge.new {
    background: rgba(16, 185, 129, 0.8);
    color: white;
    border-color: rgba(16, 185, 129, 0.3);
}

.game-badge.update {
    background: rgba(245, 158, 11, 0.8);
    color: white;
    border-color: rgba(245, 158, 11, 0.3);
}

.game-badge.featured {
    background: rgba(139, 92, 246, 0.8);
    color: white;
    border-color: rgba(139, 92, 246, 0.3);
}

.game-content {
    flex: 1;
    color: white;
}

.game-category {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.game-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.game-btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.game-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.game-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.game-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.game-stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.game-rating-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Game Navigation */
.game-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    color: white;
}

.game-navigation:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.game-nav-prev {
    left: 1rem;
}

.game-nav-next {
    right: 1rem;
}

/* Game Indicators */
.game-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.game-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-indicator.active {
    background: white;
    transform: scale(1.2);
}

.game-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-slide {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .game-image-container {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .game-list-container {
        padding: 2rem 1rem;
    }
    
    .game-slide {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .game-image-container {
        height: 250px;
    }
    
    .game-title {
        font-size: 1.75rem;
    }
    
    .game-description {
        font-size: 1rem;
    }
    
    .game-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .game-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .game-navigation {
        width: 40px;
        height: 40px;
    }
    
    .game-nav-prev {
        left: 0.5rem;
    }
    
    .game-nav-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .game-list-header h2 {
        font-size: 2rem;
    }
    
    .game-title {
        font-size: 1.5rem;
    }
    
    .game-image-container {
        height: 200px;
    }
    
    .game-slide {
        padding: 1rem;
    }
}

/* Animation Keyframes */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-slide {
    animation: slideIn 0.6s ease-out;
}

.game-content > * {
    animation: fadeInUp 0.6s ease-out both;
}

.game-category { animation-delay: 0.1s; }
.game-title { animation-delay: 0.2s; }
.game-subtitle { animation-delay: 0.3s; }
.game-description { animation-delay: 0.4s; }
.game-actions { animation-delay: 0.5s; }
.game-rating { animation-delay: 0.6s; }

/* Loading State */
.game-slide.loading {
    opacity: 0.7;
    pointer-events: none;
}

.game-slide.loading .game-image {
    filter: blur(2px);
}

/* Auto-play pause indicator */
.game-list-container.paused::after {
    content: '⏸️';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.7;
    z-index: 20;
}
