/* ========================================
   Professional Website Styles - Modern Design
   ======================================== */

/* CSS Variables - Modern Color Palette */
:root {
    /* Light Theme (Default) */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-color: #f8fafc;
    --bg-dark: #0f172a;
    --white: #ffffff;
    
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --container-width: 1280px;
    --header-height: 80px;
    
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 50%, #14b8a6 100%);
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #60a5fa;
    --secondary-color: #f8fafc;
    --text-color: #f1f5f9;
    --text-light: #94a3b8;
    --text-muted: #64748b;
    --bg-color: #0f172a;
    --bg-dark: #020617;
    --white: #1e293b;
    
    --border-color: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme Toggle Button - Fixed Position & Visibility */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid #f97316;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
}

.theme-toggle-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-icon {
    position: absolute;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun { opacity: 1; transform: scale(1); color: #f59e0b; }
.moon { opacity: 0; transform: scale(0) rotate(-90deg); color: #6366f1; }

[data-theme="dark"] .sun { opacity: 0; transform: scale(0) rotate(90deg); }
[data-theme="dark"] .moon { opacity: 1; transform: scale(1) rotate(0); }

/* Dark Theme Global Force */
[data-theme="dark"] body { background-color: #0f172a; color: #f1f5f9; }
[data-theme="dark"] .site-header { background: #1e293b !important; }
[data-theme="dark"] .site-footer { background: #020617 !important; }
[data-theme="dark"] .card, 
[data-theme="dark"] .vp-card,
[data-theme="dark"] .table-card,
[data-theme="dark"] .welcome-box,
[data-theme="dark"] .news-card,
[data-theme="dark"] .torneo-card,
[data-theme="dark"] .sport-stat-card,
[data-theme="dark"] .action-card,
[data-theme="dark"] .detalle-header,
[data-theme="dark"] .info-detail-card {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #f1f5f9 !important;
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4,
[data-theme="dark"] .sport-stat-card h3,
[data-theme="dark"] .torneo-card h3,
[data-theme="dark"] .action-card h2,
[data-theme="dark"] .news-card h3 { 
    color: #ffffff !important; 
}

[data-theme="dark"] p, 
[data-theme="dark"] span, 
[data-theme="dark"] .detalle-desc,
[data-theme="dark"] .torneo-content p,
[data-theme="dark"] .sport-stat-card p { 
    color: #cbd5e1 !important; 
}

[data-theme="dark"] .main-nav ul li a { color: #f1f5f9; }
[data-theme="dark"] .main-nav ul li a:hover { color: #f97316; }
[data-theme="dark"] .activity-ticker { background: #020617; border-color: #1e293b; }
[data-theme="dark"] .ticker-label { background: #f97316; }
[data-theme="dark"] .btn-secondary { background: #334155; color: #f1f5f9; border-color: #475569; }
[data-theme="dark"] .btn-action { background: #334155; color: #ffffff; }
[data-theme="dark"] .sport-icon-circle { background: #334155; border-color: #475569; }

/* Tooltip */
.theme-toggle-tooltip {
    position: absolute;
    right: 70px;
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    z-index: 1000;
}

.theme-toggle-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #f97316;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.theme-toggle:hover .theme-toggle-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.theme-toggle-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.theme-toggle-icon.sun {
    color: #f59e0b;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle-icon.moon {
    color: #6366f1;
    opacity: 0;
    transform: rotate(180deg) scale(0.5);
}

.theme-toggle-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.theme-toggle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

/* Dark Theme State */
[data-theme="dark"] .theme-toggle {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-color: #f97316;
    box-shadow:
        0 10px 40px rgba(249, 115, 22, 0.4),
        0 0 0 4px rgba(249, 115, 22, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .theme-toggle:hover {
    box-shadow:
        0 15px 50px rgba(249, 115, 22, 0.6),
        0 0 0 6px rgba(249, 115, 22, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.05);
    border-color: #dc2626;
}

[data-theme="dark"] .theme-toggle-icon.sun {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
}

[data-theme="dark"] .theme-toggle-icon.moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-toggle-icon.moon svg {
    filter: drop-shadow(0 2px 6px rgba(99, 102, 241, 0.4));
}

[data-theme="dark"] .theme-toggle-bg {
    opacity: 1;
    transform: scale(1);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

/* Ripple Effect */
.theme-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.3);
    opacity: 0;
    transform: scale(0.5);
}

.theme-toggle:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .theme-toggle {
        width: 60px;
        height: 60px;
        right: 20px;
        top: 80px;
    }

    .theme-toggle-icon {
        width: 28px;
        height: 28px;
    }

    .admin-floating-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }

    .admin-btn-tooltip,
    .theme-toggle-tooltip {
        display: none;
    }
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Header & Navigation - Modern Glass Effect
   ======================================== */
.site-header {
    background: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .site-header {
    background: #1e293b;
    border-bottom: 1px solid #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    max-height: 45px;
    width: auto;
    transition: transform 0.3s ease;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f97316;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    animation: borderColors 8s linear infinite, logoGlow 3s ease-in-out infinite;
}

@keyframes borderColors {
    0% { border-color: #f97316; box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3); }
    25% { border-color: #dc2626; box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3); }
    50% { border-color: #000000; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }
    75% { border-color: #ffffff; box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3); }
    100% { border-color: #f97316; box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3); }
}

@keyframes logoGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.site-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
}

.site-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    transition: color 0.3s ease;
}

[data-theme="dark"] .site-name {
    color: #f1f5f9;
}

.site-name .name-highlight {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: namePulse 3s ease-in-out infinite;
}

@keyframes namePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3px;
}

.main-nav a {
    display: block;
    padding: 10px 14px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.82rem;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

[data-theme="dark"] .main-nav a {
    color: #e2e8f0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 60%;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-color);
}

[data-theme="dark"] .main-nav a:hover,
[data-theme="dark"] .main-nav a.active {
    background: rgba(37, 99, 235, 0.4);
    color: #93c5fd;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 8px;
    border-radius: var(--radius);
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ========================================
   Hero Section - Modern Gradient
   ======================================== */
.hero {
    background: linear-gradient(-45deg, #000000, #dc2626, #f97316, #ffffff);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

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

.hero-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* ========================================
   Main Content
   ======================================== */
.site-main {
    padding: 60px 0;
    min-height: calc(100vh - var(--header-height) - 300px);
}

.page-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .page-content {
    background: #1e293b;
    border-color: #334155;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-body {
    line-height: 1.9;
    color: var(--text-light);
    font-size: 1.05rem;
}

.content-body p {
    margin-bottom: 20px;
}

/* Multimedia Section */
.multimedia-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.multimedia-item {
    margin-bottom: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.multimedia-item h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.multimedia-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.multimedia-video video {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.multimedia-youtube iframe {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.multimedia-embed {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .multimedia-item {
        padding: 20px;
    }
    
    .multimedia-youtube iframe {
        height: 250px;
    }
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ========================================
   News Section - Modern Cards
   ======================================== */
.news-section {
    margin-top: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
}

[data-theme="dark"] .news-card {
    background: #1e293b;
    border-color: #334155;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-content {
    padding: 28px;
}

.news-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-color);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ========================================
   Article Page - Modern Typography
   ======================================== */
.news-article {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.article-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--border-color);
}

.article-header h1 {
    font-size: 2.8rem;
    margin: 20px 0;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.article-meta {
    display: flex;
    gap: 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.article-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.8;
}

.article-content {
    line-height: 1.9;
    color: var(--text-color);
    font-size: 1.05rem;
}

.article-content p {
    margin-bottom: 25px;
}

.article-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

/* ========================================
   Contact Form - Modern Design
   ======================================== */
.contact-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .contact-section {
    background: #1e293b;
    border-color: #334155;
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
}

/* ========================================
   Forms - Modern Inputs
   ======================================== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* ========================================
   Buttons - Modern Style
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

.btn-secondary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn:active {
    transform: translateY(0);
}

/* ========================================
   Alerts - Modern Notifications
   ======================================== */
.alert {
    padding: 18px 24px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #34d399;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #f87171;
}

/* ========================================
   Footer - Modern Dark Design
   ======================================== */
.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 40px 0 20px;
    margin-top: 60px;
    transition: background-color 0.3s ease;
    border-top: 3px solid #f97316;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #f97316 100%);
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #60a5fa;
}

.footer-bottom a:hover {
    color: #93c5fd;
}

/* Admin Access Button */
.admin-access {
    margin-top: 15px;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 25px;
    color: #f97316;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border-color: rgba(220, 38, 38, 0.5);
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.admin-btn i {
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none !important;
}

.social-links .social-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.social-links .social-link[href*="facebook"] {
    background: #1877f2 !important;
    border-color: #1877f2;
}

.social-links .social-link[href*="facebook"]:hover {
    background: #166fe5 !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-links .social-link[href*="instagram"] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    border-color: #dc2743;
}

.social-links .social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #a1186e) !important;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.social-links .social-link[href*="twitter"] {
    background: #000000 !important;
    border-color: #000000;
}

.social-links .social-link[href*="twitter"]:hover {
    background: #333333 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-links .social-link[href*="youtube"] {
    background: #ff0000 !important;
    border-color: #ff0000;
}

.social-links .social-link[href*="youtube"]:hover {
    background: #cc0000 !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.social-links .social-link[href*="tiktok"] {
    background: #000000 !important;
    border-color: #25f4ee;
}

.social-links .social-link[href*="tiktok"]:hover {
    background: #1a1a1a !important;
    box-shadow: 0 4px 15px rgba(37, 244, 238, 0.4);
}

/* Admin Floating Button */
.admin-floating-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999 !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.admin-floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
}

.admin-floating-btn i {
    animation: pulse 2s infinite;
}

/* Tooltip */
.admin-btn-tooltip {
    position: absolute;
    right: 70px;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    z-index: 999;
}

.admin-btn-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #dc2626;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.admin-floating-btn:hover .admin-btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========================================
   Categories Filter
   ======================================== */
.categories-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .categories-filter {
    background: #1e293b;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.categories-filter span {
    font-weight: 600;
    color: var(--text-light);
    margin-right: 8px;
}

/* ========================================
   Pagination - Modern Style
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.page-info {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

[data-theme="dark"] .page-info {
    background: #1e293b;
    color: #f1f5f9;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .page-header {
    background: #1e293b;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   Related News
   ======================================== */
.related-news {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.related-news h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav ul {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 15px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

    .main-nav ul.nav-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 16px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .news-article {
        padding: 30px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .page-content h1 {
        font-size: 1.8rem;
    }
    
    .page-content,
    .contact-section {
        padding: 25px;
    }
}

/* ========================================
   Gallery - Modern Grid & Lightbox
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #000;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-thumb img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.gallery-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.gallery-category {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.gallery-views {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img,
.lightbox-content video,
.lightbox-content iframe {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-content iframe {
    width: 80vw;
    height: 45vw;
    max-width: 1200px;
    max-height: 675px;
}

.lightbox-caption {
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lightbox-caption p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--primary-light);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
    
    .lightbox-content iframe {
        width: 100vw;
        height: 56vw;
    }
}

/* ========================================
   En Vivo / Streaming Section
   ======================================== */
.live-section {
    padding: 40px 0;
}

.section-header-live {
    text-align: center;
    margin-bottom: 40px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
    border: 2px solid #ffffff;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }
}

.live-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.section-header-live h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.section-header-live p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.live-player-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .live-player-container {
    background: #1e293b;
    border-color: #334155;
}

.live-player {
    position: relative;
}

.player-placeholder {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.player-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.player-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.player-placeholder p {
    font-size: 1.1rem;
    opacity: 0.7;
}

.live-info {
    padding: 30px;
    background: var(--white);
}

[data-theme="dark"] .live-info {
    background: #1e293b;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.live-info h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.live-info p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Upcoming Events */
.upcoming-events {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .upcoming-events {
    background: #1e293b;
    border-color: #334155;
}

.upcoming-events h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.upcoming-events h2 i {
    color: var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.event-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

[data-theme="dark"] .event-card {
    background: #0f172a;
    border-color: #334155;
}

.event-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 10px 15px;
    border-radius: var(--radius);
    min-width: 70px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    color: #dc2626;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .player-placeholder {
        height: 250px;
    }
    
    .player-placeholder i {
        font-size: 3rem;
    }
    
    .player-placeholder h3 {
        font-size: 1.3rem;
    }
    
    .section-header-live h1 {
        font-size: 1.8rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .live-info {
        padding: 20px;
    }
    
    .upcoming-events {
        padding: 25px;
    }
}

.no-results {
    text-align: center;
    padding: 60px 40px;
    color: var(--text-light);
    font-size: 1.1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

[data-theme="dark"] .no-results {
    background: #1e293b;
    color: #94a3b8;
}

/* ========================================
   Utilities
   ======================================== */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .news-card {
        will-change: transform;
    }
}
