/* Games Page Specific Styles */

/* Games Hero */
.games-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.games-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.games-hero-title {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Game Information Section */
.game-info-section {
    background: #0a0a0a;
    padding: 6rem 0;
}

.game-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.game-info-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.game-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.spec-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
}

.spec-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.spec-item h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.spec-item p {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Featured Game */
.featured-game {
    background: #0a0a0a;
    padding: 6rem 0;
}

.featured-game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-game-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.featured-game-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-frame-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-iframe {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    background: #000;
    transition: all 0.5s ease;
}

.game-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.game-info h3 {
    margin-bottom: 1.5rem;
    color: #667eea;
}

.game-features {
    list-style: none;
    text-align: left;
}

.game-features li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.game-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gaming Experience */
.gaming-experience {
    background: #0a0a0a;
    padding: 6rem 0;
}

.gaming-experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gaming-experience-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gaming-experience-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.experience-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.experience-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.experience-feature h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.experience-feature p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Games CTA */
.games-cta {
    background: #0a0a0a;
    padding: 6rem 0;
    text-align: center;
}

.games-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.games-cta-title {
    margin-bottom: 1.5rem;
}

.games-cta-description {
    margin-bottom: 3rem;
    opacity: 0.8;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-hero {
        padding: 4rem 0 3rem;
    }
    
    .games-hero-title {
        font-size: 2.5rem;
    }
    
    .games-hero-description {
        font-size: 1.1rem;
    }
    
    .game-iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .game-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-item,
    .experience-feature {
        padding: 2rem;
    }
    
    .games-hero-title {
        font-size: 2rem;
    }
    
    .games-hero-description {
        font-size: 1rem;
    }
    
    .game-iframe {
        height: 300px;
    }
    
    .game-frame-container {
        padding: 1rem;
    }
}
