:root {
    --primary-color: #ff4444;
    --secondary-color: #333;
    --accent-color: #555;
    --background-color: #f0f4f8;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--background-color) 0%, #e0e8f0 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

/* Navegación */
.nav-bar {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-bar li a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 6px;
    transition: all var(--transition-speed) ease;
}

.nav-bar li a i {
    font-size: 1.1rem;
}

.nav-bar li a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

/* Contenido Principal */
.content-container {
    flex: 1;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.05), rgba(255, 68, 68, 0.1));
    padding: 3rem 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Grid de Jefes */
.boss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.boss-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
}

.boss-card:hover {
    transform: translateY(-5px);
}

.boss-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.boss-info {
    padding: 1.5rem;
}

.boss-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.boss-info p {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.boss-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-color);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    color: #ffd700;
}

/* Sección de Video */
.video-section {
    margin-bottom: 2rem;
}

.video-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.video-container {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(51, 51, 51, 0.9) 100%);
    color: white;
    padding: 2rem 1rem;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-bar {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .boss-grid {
        grid-template-columns: 1fr;
    }
    
    .boss-image img {
        height: 250px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .nav-bar {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .boss-info {
        padding: 1rem;
    }
    
    .boss-image img {
        height: 200px;
    }
    
    .header-content {
        padding: 1rem;
    }
}
