/* ==========================================
   WP ARCADE GAMES - ESTILOS
   ========================================== */

/* Grid de juegos */
.arcade-grid {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.arcade-game-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arcade-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.4);
    border-color: #00ff00;
}

.arcade-game-card .game-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.arcade-game-card h3 {
    color: #00ff00;
    font-size: 28px;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.arcade-game-card p {
    color: #ecf0f1;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.arcade-play-btn {
    display: inline-block;
    background: #00ff00;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arcade-play-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.5);
}

/* Contenedor de juego individual */
.arcade-game-container {
    background: #000;
    min-height: 100vh;
    padding: 30px;
}

.arcade-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 15px;
    margin-bottom: 30px;
}

.arcade-game-header h2 {
    color: #00ff00;
    font-size: 36px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.arcade-back-btn {
    background: #00ff00;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.arcade-back-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.5);
}

.arcade-game-wrapper {
    text-align: center;
    padding: 30px;
}

.arcade-game-iframe {
    border: 4px solid #00ff00;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.5);
    background: #000;
}

.arcade-game-footer {
    padding: 30px;
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    border-radius: 15px;
    margin-top: 30px;
}

.arcade-game-footer .game-content {
    color: #00ff00;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Courier New', monospace;
}

.arcade-game-footer .game-content p {
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .arcade-grid {
        grid-template-columns: 1fr !important;
    }
    
    .arcade-game-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .arcade-game-header h2 {
        font-size: 24px;
    }
    
    .arcade-game-iframe {
        width: 100% !important;
        height: 400px !important;
    }
}

/* Estilos para páginas de archivo */
.post-type-archive-arcade_game .site-main,
.single-arcade_game .site-main {
    background: #000;
    min-height: 100vh;
    padding: 40px 20px;
}

.post-type-archive-arcade_game .entry-header,
.single-arcade_game .entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-type-archive-arcade_game .page-title,
.single-arcade_game .entry-title {
    color: #00ff00;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}
