/* Estilos personalizados para Fútbol Torneos */

/* Efectos de hover mejorados */
.card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Animaciones de entrada */
@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Efectos de partículas mejorados */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 8s infinite linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) rotate(36deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) rotate(324deg) scale(1);
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Efectos de glassmorphism mejorados */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Botones con efectos especiales */
.btn-special {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.btn-special:hover::before {
    left: 100%;
}

.btn-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Efectos de texto */
.text-gradient {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Efectos de imagen */
.image-hover {
    transition: all 0.3s ease;
}

.image-hover:hover {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

/* Efectos de tabla */
.table-hover-effect tbody tr {
    transition: all 0.3s ease;
}

.table-hover-effect tbody tr:hover {
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    transform: scale(1.01);
}

/* Efectos de navegación */
.nav-link-special {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-special::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link-special:hover::after,
.nav-link-special.active::after {
    width: 100%;
}

/* Efectos de estadísticas */
.stats-card-special {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.stats-card-special::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}

.stats-card-special:hover::before {
    opacity: 1;
}

.stats-card-special:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

/* Efectos de loading */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Efectos de scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Efectos de modal */
.modal-special .modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* Efectos de formulario */
.form-control-special {
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control-special:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: scale(1.02);
}

/* Efectos de badge */
.badge-special {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.badge-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Efectos de alerta */
.alert-special {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Efectos de paginación */
.pagination-special .page-link {
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    margin: 0 3px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.pagination-special .page-link:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.pagination-special .page-item.active .page-link {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Efectos de tooltip */
.tooltip-special {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Efectos de dropdown */
.dropdown-menu-special {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dropdown-item-special {
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
}

.dropdown-item-special:hover {
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    transform: translateX(5px);
}

/* Efectos de progreso */
.progress-special {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    overflow: hidden;
    height: 10px;
}

.progress-bar-special {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    transition: all 0.5s ease;
}

/* Efectos de timeline */
.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 12px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

/* Efectos de galería */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    transition: all 0.4s ease;
}

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

/* Efectos de chat */
.chat-bubble {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chat-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Efectos de notificación */
.notification-badge {
    position: relative;
    display: inline-block;
}

.notification-badge::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    animation: pulse-notification 2s infinite;
}

/* Badge de notificación con número para team admin */
.nav-tab .notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    min-width: 20px;
    animation: pulse-notification 2s infinite;
}

@keyframes pulse-notification {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Efectos de scrollbar personalizada */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
}

/* Efectos de responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .stats-card-special {
        padding: 1.5rem;
    }
    
    .btn-special {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Efectos de dark mode (opcional) */
@media (prefers-color-scheme: dark) {
    .glass-card {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .form-control-special {
        background: rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
        color: white;
    }
}

/* ===== ESTILOS ESPECÍFICOS PARA EQUIPOS - MOBILE FIRST ===== */

/* Hero Section del Equipo */
.team-hero {
    position: relative;
    min-height: 50vh;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.team-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.team-hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ===== MOBILE STYLES (Default) ===== */

/* Logo del equipo - Mobile */
.team-logo-mobile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    padding: 10px;
    transition: all 0.3s ease;
}

.team-logo-mobile:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Título del equipo - Mobile */
.hero-title-mobile {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2;
}

/* Meta información del equipo - Mobile */
.team-meta-mobile {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.team-city-mobile,
.team-captain-mobile {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.team-city-mobile:hover,
.team-captain-mobile:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== TABLET STYLES ===== */
@media (min-width: 768px) {
    .team-hero {
        min-height: 70vh;
    }
    
    .team-logo-mobile {
        width: 150px;
        height: 150px;
    }
    
    .hero-title-mobile {
        font-size: 3rem;
    }
    
    .team-meta-mobile {
        font-size: 1.1rem;
    }
}

/* ===== DESKTOP STYLES ===== */
@media (min-width: 992px) {
    .team-hero {
        min-height: 80vh;
    }
    
    /* Logo del equipo - Desktop */
    .team-logo-desktop {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 4px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        object-fit: contain;
        padding: 15px;
        transition: all 0.3s ease;
    }
    
    .team-logo-desktop:hover {
        transform: scale(1.05);
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
    }
    
    /* Título del equipo - Desktop */
    .hero-title-desktop {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
        margin: 0;
        line-height: 1.2;
    }
    
    /* Meta información del equipo - Desktop */
    .team-meta-desktop {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
    }
    
    .team-city-desktop,
    .team-captain-desktop {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0.75rem 1.5rem;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: inline-block;
        margin-right: 1rem;
        transition: all 0.3s ease;
    }
    
    .team-city-desktop:hover,
    .team-captain-desktop:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
}

/* ===== LARGE DESKTOP STYLES ===== */
@media (min-width: 1200px) {
    .team-hero {
        min-height: 90vh;
    }
    
    .team-logo-desktop {
        width: 200px;
        height: 200px;
    }
    
    .hero-title-desktop {
        font-size: 4rem;
    }
    
    .team-meta-desktop {
        font-size: 1.3rem;
    }
}

/* ===== ANIMACIONES ESPECÍFICAS ===== */
@keyframes teamLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.team-logo-mobile,
.team-logo-desktop {
    animation: teamLogoFloat 3s ease-in-out infinite;
}

/* ===== EFECTOS DE HOVER MEJORADOS ===== */
.team-hero-content-wrapper:hover .team-logo-mobile,
.team-hero-content-wrapper:hover .team-logo-desktop {
    animation-play-state: paused;
}

/* ===== RESPONSIVE BACKGROUND ATTACHMENT ===== */
@media (max-width: 768px) {
    .team-hero {
        min-height: 40vh;
        max-height: 60vh;
    }
    
    .team-hero .hero-background {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .team-hero {
        min-height: 45vh;
        max-height: 65vh;
    }
    
    .team-hero .hero-background {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
    }
}

@media (min-width: 1025px) {
    .team-hero {
        min-height: 50vh;
        max-height: 70vh;
    }
    
    .team-hero .hero-background {
        background-attachment: fixed !important;
        background-size: cover !important;
        background-position: center !important;
    }
}

/* ===== ESTILOS PARA CARDS DE PARTIDOS - MOBILE FIRST ===== */

/* Card de partido base */
.game-card {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: auto;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Layout de equipos */
.game-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    gap: 0.5rem;
}

/* Equipos (local y visitante) */
.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    max-width: 120px;
    padding: 0 0.25rem;
}

/* Logo del equipo */
.team-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 3px;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.team-logo:hover {
    transform: scale(1.05);
    border-color: #667eea;
}

/* Placeholder para logo */
.team-logo-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.team-logo-placeholder:hover {
    transform: scale(1.05);
}

/* Nombre del equipo */
.team-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    height: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Información del partido (centro) */
.game-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex: 0 0 auto;
    min-width: 80px;
    text-align: center;
    padding: 0 0.5rem;
}

/* Badge VS */
.vs-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

/* Badge de resultado */
.score-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.score-separator {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Fecha del partido */
.game-date {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1;
}

/* Hora del partido */
.game-time {
    font-size: 0.75rem;
    color: #1f2937;
    font-weight: 600;
    line-height: 1;
}

/* Torneo */
.game-tournament {
    font-size: 0.65rem;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    width: 100%;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Estado del partido */
.game-status {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.game-status.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* ===== RESPONSIVE DESIGN PARA CARDS DE PARTIDOS ===== */

/* Mobile (Default) */
@media (max-width: 575px) {
    .game-card {
        padding: 0.75rem;
        min-height: 200px;
    }
    
    .team {
        max-width: 90px;
        padding: 0 0.15rem;
    }
    
    .team-logo,
    .team-logo-placeholder {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .team-name {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .game-info {
        min-width: 70px;
        padding: 0 0.3rem;
    }
    
    .vs-badge {
        width: 30px;
        height: 30px;
        font-size: 0.6rem;
    }
    
    .game-date,
    .game-time {
        font-size: 0.65rem;
    }
    
    .game-tournament {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
    }
}

/* Tablet y Desktop */
@media (min-width: 576px) {
    .game-card {
        min-height: 220px;
        padding: 1rem;
    }
    
    .team {
        max-width: 120px;
    }
    
    .team-logo,
    .team-logo-placeholder {
        width: 45px;
        height: 45px;
    }
    
    .team-name {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .game-info {
        min-width: 80px;
        padding: 0 0.5rem;
    }
    
    .game-tournament {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ===== ANIMACIONES PARA CARDS DE PARTIDOS ===== */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.game-card {
    animation: cardFloat 4s ease-in-out infinite;
}

.game-card:hover {
    animation-play-state: paused;
}

/* ===== EFECTOS ESPECIALES ===== */
.upcoming-game {
    border-left: 4px solid #667eea;
}

.completed-game {
    border-left: 4px solid #10b981;
}

/* Efecto de brillo en hover */
.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
    border-radius: 15px;
}

.game-card:hover::before {
    left: 100%;
}

/* ===== ESTILOS PARA VISTA DE JUGADOR - MOBILE FIRST ===== */

/* Hero Section del Jugador */
.player-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
}

/* Foto del jugador - Desktop */
.player-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.player-photo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Contenido del hero - Desktop */
.player-hero-content {
    color: white;
}

.player-hero-content .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.player-meta {
    font-size: 1.1rem;
    opacity: 0.9;
}

.captain-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== MOBILE STYLES PARA JUGADOR ===== */

/* Foto del jugador - Mobile */
.player-photo-mobile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.player-photo-mobile:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Contenido del hero - Mobile */
.player-hero-content-mobile {
    color: white;
    width: 100%;
}

.hero-title-mobile {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.player-meta-mobile {
    font-size: 1rem;
    opacity: 0.9;
}

.player-meta-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.player-meta-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.captain-badge-mobile {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* ===== RESPONSIVE BREAKPOINTS PARA JUGADOR ===== */

@media (max-width: 575px) {
    .player-hero {
        min-height: 35vh;
        padding: 1.5rem 0;
    }
    
    .player-photo-mobile {
        width: 100px;
        height: 100px;
    }
    
    .hero-title-mobile {
        font-size: 1.8rem;
    }
    
    .player-meta-mobile {
        font-size: 0.9rem;
    }
    
    .player-meta-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .player-hero {
        min-height: 40vh;
        padding: 2rem 0;
    }
    
    .player-photo-mobile {
        width: 120px;
        height: 120px;
    }
    
    .hero-title-mobile {
        font-size: 2.2rem;
    }
}

@media (min-width: 768px) {
    .player-hero {
        min-height: 45vh;
        padding: 2.5rem 0;
    }
    
    .player-photo {
        width: 150px;
        height: 150px;
    }
    
    .player-hero-content .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .player-hero {
        min-height: 50vh;
        padding: 3rem 0;
    }
    
    .player-photo {
        width: 180px;
        height: 180px;
    }
    
    .player-hero-content .hero-title {
        font-size: 3rem;
    }
    
    .player-meta {
        font-size: 1.2rem;
    }
}

/* ===== ESTILOS PARA SECCIÓN DE NOTICIAS ===== */

.news-section-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    position: relative;
    overflow: hidden;
}

.news-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.news-card-enhanced {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

.news-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.news-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image-enhanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-enhanced:hover .news-image-enhanced {
    transform: scale(1.05);
}

.news-image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.7;
}

.news-badge {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: linear-gradient(45deg, #ff6b35, #f7931e) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.news-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.news-date {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 1.1rem;
}

.news-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.news-related {
    margin-bottom: 1rem;
}

.news-tournaments,
.news-teams {
    margin-bottom: 0.5rem;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.news-author {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-news {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.btn-news:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive para noticias */
@media (max-width: 768px) {
    .news-card-enhanced {
        margin-bottom: 1.5rem;
    }
    
    .news-image-container {
        height: 180px;
    }
    
    .news-body {
        padding: 1.2rem;
    }
    
    .news-title {
        font-size: 1rem;
    }
    
    .news-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-news {
        text-align: center;
        width: 100%;
    }
}

/* ===== ESTILOS ADICIONALES PARA VISTAS DE NOTICIAS ===== */

/* Filtros mejorados */
.filters-section-enhanced {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    margin: 2rem 0 !important;
    padding: 2rem !important;
}

/* Breadcrumb mejorado */
.breadcrumb-section-enhanced {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    margin: 1rem 0 !important;
}

.breadcrumb-section-enhanced .breadcrumb {
    background: transparent !important;
    margin: 0 !important;
    padding: 1rem 1.5rem !important;
}

.breadcrumb-section-enhanced .breadcrumb-item a {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

.breadcrumb-section-enhanced .breadcrumb-item.active {
    color: var(--text-secondary) !important;
}

/* Artículo mejorado */
.news-article-section-enhanced {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.article-header-enhanced {
    border-bottom: 2px solid var(--border-color) !important;
    padding-bottom: 1.5rem !important;
}

.article-meta-enhanced {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
}

.meta-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.meta-label {
    font-weight: 600 !important;
    color: var(--text-secondary) !important;
}

.meta-value {
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

/* Imagen destacada mejorada */
.featured-image-container-enhanced {
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.featured-image-enhanced {
    width: 100% !important;
    height: auto !important;
    transition: transform 0.3s ease !important;
}

.featured-image-container-enhanced:hover .featured-image-enhanced {
    transform: scale(1.02) !important;
}

/* Tags mejorados */
.article-tags-enhanced {
    border-top: 2px solid var(--border-color) !important;
    padding-top: 1.5rem !important;
}

.tags-list-enhanced {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}

/* Tags más pequeños y compactos */
.article-tags-enhanced .btn-outline-enhanced {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 15px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

/* ===== TÍTULOS DE SECCIÓN DEL MISMO TAMAÑO ===== */

/* Título de Tags compacto */
.tags-title-compact {
    color: var(--text-primary) !important;
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 600 !important;
    opacity: 0.9 !important;
}

/* Títulos de relaciones más grandes */
.relation-title-compact {
    color: var(--text-primary) !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 600 !important;
    opacity: 0.9 !important;
}

/* Título de compartir del mismo tamaño */
.share-title-compact {
    color: var(--text-primary) !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 600 !important;
    opacity: 0.9 !important;
}

/* Sección de tags */
.tags-section-enhanced {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    margin: 2rem 0 !important;
}

/* ===== CONSISTENCIA DE FUENTES PARA NOTICIAS ===== */

/* Títulos principales - Usar Orbitron como el resto del sitio */
.news-section-enhanced .section-title-enhanced,
.news-article-section-enhanced .section-title-enhanced,
.tags-section-enhanced .section-title-enhanced,
.hero-section-enhanced .section-title-enhanced {
    font-family: 'Orbitron', monospace !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    font-size: 3rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1) !important;
}

/* Subtítulos - Usar Poppins como el resto del sitio */
.news-section-enhanced .section-subtitle,
.news-article-section-enhanced .section-subtitle,
.hero-section-enhanced .section-subtitle {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 400 !important;
    color: var(--text-secondary) !important;
    font-size: 1.2rem !important;
    opacity: 0.9 !important;
}

/* Títulos de noticias - Usar Poppins con peso semibold */
.news-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 600 !important;
}

/* Texto del contenido - Usar Poppins */
.news-excerpt,
.news-content,
.article-content {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Meta información - Usar Poppins */
.news-meta,
.article-meta-enhanced {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Breadcrumb - Usar Poppins */
.breadcrumb-section-enhanced {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Botones - Usar Poppins */
.btn-news,
.btn-outline-enhanced {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* ===== ESTILOS PARA VISTA DE NOTICIA INDIVIDUAL ===== */

/* Hero section para noticia individual */
.news-hero-section-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    margin-bottom: 2rem !important;
}

.news-hero-section-enhanced::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') !important;
    opacity: 0.3 !important;
    pointer-events: none !important;
}

/* ===== HERO SECTION CLARO CON FONDO BLANCO ===== */

.news-hero-section-clear {
    background: white !important;
    color: var(--text-primary) !important;
    position: relative !important;
    border-radius: 20px !important;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.breadcrumb-section-clear {
    background: rgba(102, 126, 234, 0.05) !important;
    border-radius: 15px !important;
    padding: 1rem !important;
    border: 1px solid rgba(102, 126, 234, 0.1) !important;
}

.breadcrumb-section-clear .breadcrumb-item a {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
}

.breadcrumb-section-clear .breadcrumb-item.active {
    color: var(--text-secondary) !important;
    font-weight: 600 !important;
}

.article-header-clear {
    padding: 1rem 0 !important;
}

.news-badge-clear {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
}

.news-category-clear {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3) !important;
}

.section-title-clear {
    color: var(--text-primary) !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 800 !important;
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
}

.article-meta-clear {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1rem !important;
    padding: 1rem 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.meta-item-clear {
    display: flex !important;
    align-items: center !important;
    font-size: 0.9rem !important;
    color: var(--text-secondary) !important;
}

.meta-label-clear {
    font-weight: 600 !important;
    color: var(--text-secondary) !important;
    margin-right: 0.5rem !important;
}

.meta-value-clear {
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

/* Relaciones mejoradas */
.article-relations-enhanced {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ===== ESTILOS COMPACTOS PARA RELACIONES Y COMPARTIR ===== */

/* Relaciones compactas */
.article-relations-compact {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.relation-section-compact {
    margin-bottom: 1rem !important;
}

.relation-section-compact:last-child {
    margin-bottom: 0 !important;
}

.relation-title-compact {
    color: var(--text-primary) !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.75rem !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 600 !important;
    opacity: 0.9 !important;
}

.relation-items-compact {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}

.relation-item-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25) !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.relation-item-compact:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35) !important;
    color: white !important;
}

/* Compartir compacto */
.share-section-compact {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.share-title-compact {
    color: var(--text-primary) !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.75rem !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 600 !important;
    opacity: 0.9 !important;
}

.share-buttons-compact {
    display: flex !important;
    gap: 0.5rem !important;
    justify-content: flex-start !important;
}

.share-btn-compact {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.share-facebook-compact { background: #1877f2 !important; }
.share-twitter-compact { background: #1da1f2 !important; }
.share-linkedin-compact { background: #0077b5 !important; }
.share-whatsapp-compact { background: #25d366 !important; }

.share-btn-compact:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    color: white !important;
}

.relation-section-enhanced {
    margin-bottom: 1.5rem !important;
}

.relation-section-enhanced:last-child {
    margin-bottom: 0 !important;
}

.relation-items-enhanced {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin-top: 1rem !important;
}

.relation-item-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.relation-item-enhanced:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
    color: white !important;
}

/* Compartir mejorado */
.share-section-enhanced {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.share-buttons-enhanced {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin-top: 1rem !important;
}

.share-btn-enhanced {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.share-facebook { background: #1877f2 !important; }
.share-twitter { background: #1da1f2 !important; }
.share-linkedin { background: #0077b5 !important; }
.share-whatsapp { background: #25d366 !important; }

.share-btn-enhanced:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

/* Sidebar mejorado */
.sidebar-section-enhanced {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.sidebar-title-enhanced {
    color: var(--text-primary) !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid var(--border-color) !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 700 !important;
}

.related-news-item-enhanced,
.popular-news-item-enhanced {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid var(--border-color) !important;
    transition: all 0.3s ease !important;
}

.related-news-item-enhanced:last-child,
.popular-news-item-enhanced:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.related-news-item-enhanced:hover,
.popular-news-item-enhanced:hover {
    transform: translateX(5px) !important;
}

.related-news-image-enhanced,
.popular-news-image-enhanced {
    width: 80px !important;
    height: 60px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: var(--bg-secondary) !important;
}

.related-news-placeholder,
.popular-news-placeholder {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    font-size: 1.5rem !important;
}

.related-news-content-enhanced h6,
.popular-news-content-enhanced h6 {
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 600 !important;
}

.related-news-content-enhanced a,
.popular-news-content-enhanced a {
    color: var(--text-primary) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.related-news-content-enhanced a:hover,
.popular-news-content-enhanced a:hover {
    color: var(--primary-color) !important;
}

/* ===== ESTILOS ESPECÍFICOS PARA HERO DE NOTICIAS ===== */

/* Hero section de noticias */
.hero-section-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    background-image: url('/public/images/hero/football-stadium.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-section-enhanced::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Título del hero de noticias */
.hero-section-enhanced .section-title-enhanced {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 1.5rem !important;
}

/* Subtítulo del hero de noticias */
.hero-section-enhanced .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Subtítulo del hero principal */
.hero-section-enhanced .hero-subtitle-enhanced {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* ===== EFECTO DE PAPELITOS PICADOS PARA CALENDARIO ===== */

/* Contenedor de papelitos */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Papelitos individuales */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    animation: confetti-fall 3s linear infinite;
}

.confetti:nth-child(2n) {
    background: #4ecdc4;
    animation-delay: 0.5s;
}

.confetti:nth-child(3n) {
    background: #45b7d1;
    animation-delay: 1s;
}

.confetti:nth-child(4n) {
    background: #96ceb4;
    animation-delay: 1.5s;
}

.confetti:nth-child(5n) {
    background: #feca57;
    animation-delay: 2s;
}

.confetti:nth-child(6n) {
    background: #ff9ff3;
    animation-delay: 2.5s;
}

/* Animación de caída */
@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Posiciones iniciales aleatorias - 50 PAPELITOS */
.confetti:nth-child(1) { left: 5%; animation-duration: 2.5s; }
.confetti:nth-child(2) { left: 10%; animation-duration: 3.2s; }
.confetti:nth-child(3) { left: 15%; animation-duration: 2.8s; }
.confetti:nth-child(4) { left: 20%; animation-duration: 3.5s; }
.confetti:nth-child(5) { left: 25%; animation-duration: 2.9s; }
.confetti:nth-child(6) { left: 30%; animation-duration: 3.1s; }
.confetti:nth-child(7) { left: 35%; animation-duration: 2.7s; }
.confetti:nth-child(8) { left: 40%; animation-duration: 3.3s; }
.confetti:nth-child(9) { left: 45%; animation-duration: 2.6s; }
.confetti:nth-child(10) { left: 50%; animation-duration: 3.4s; }
.confetti:nth-child(11) { left: 55%; animation-duration: 2.8s; }
.confetti:nth-child(12) { left: 60%; animation-duration: 3.0s; }
.confetti:nth-child(13) { left: 65%; animation-duration: 2.5s; }
.confetti:nth-child(14) { left: 70%; animation-duration: 3.6s; }
.confetti:nth-child(15) { left: 75%; animation-duration: 2.9s; }
.confetti:nth-child(16) { left: 80%; animation-duration: 3.2s; }
.confetti:nth-child(17) { left: 85%; animation-duration: 2.7s; }
.confetti:nth-child(18) { left: 90%; animation-duration: 3.1s; }
.confetti:nth-child(19) { left: 95%; animation-duration: 2.4s; }
.confetti:nth-child(20) { left: 7%; animation-duration: 3.3s; }
.confetti:nth-child(21) { left: 12%; animation-duration: 2.6s; }
.confetti:nth-child(22) { left: 17%; animation-duration: 3.4s; }
.confetti:nth-child(23) { left: 22%; animation-duration: 2.8s; }
.confetti:nth-child(24) { left: 27%; animation-duration: 3.0s; }
.confetti:nth-child(25) { left: 32%; animation-duration: 2.5s; }
.confetti:nth-child(26) { left: 37%; animation-duration: 3.5s; }
.confetti:nth-child(27) { left: 42%; animation-duration: 2.9s; }
.confetti:nth-child(28) { left: 47%; animation-duration: 3.1s; }
.confetti:nth-child(29) { left: 52%; animation-duration: 2.7s; }
.confetti:nth-child(30) { left: 57%; animation-duration: 3.3s; }
.confetti:nth-child(31) { left: 62%; animation-duration: 2.6s; }
.confetti:nth-child(32) { left: 67%; animation-duration: 3.4s; }
.confetti:nth-child(33) { left: 72%; animation-duration: 2.8s; }
.confetti:nth-child(34) { left: 77%; animation-duration: 3.0s; }
.confetti:nth-child(35) { left: 82%; animation-duration: 2.5s; }
.confetti:nth-child(36) { left: 87%; animation-duration: 3.2s; }
.confetti:nth-child(37) { left: 92%; animation-duration: 2.9s; }
.confetti:nth-child(38) { left: 97%; animation-duration: 3.1s; }
.confetti:nth-child(39) { left: 3%; animation-duration: 2.7s; }
.confetti:nth-child(40) { left: 8%; animation-duration: 3.5s; }
.confetti:nth-child(41) { left: 13%; animation-duration: 2.6s; }
.confetti:nth-child(42) { left: 18%; animation-duration: 3.3s; }
.confetti:nth-child(43) { left: 23%; animation-duration: 2.8s; }
.confetti:nth-child(44) { left: 28%; animation-duration: 3.0s; }
.confetti:nth-child(45) { left: 33%; animation-duration: 2.5s; }
.confetti:nth-child(46) { left: 38%; animation-duration: 3.4s; }
.confetti:nth-child(47) { left: 43%; animation-duration: 2.9s; }
.confetti:nth-child(48) { left: 48%; animation-duration: 3.1s; }
.confetti:nth-child(49) { left: 53%; animation-duration: 2.7s; }
.confetti:nth-child(50) { left: 58%; animation-duration: 3.2s; }

/* ===== EFECTO DE PELOTAS DE FÚTBOL PARA GOLEADORES ===== */

/* Contenedor de pelotas */
.football-balls-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Pelotas individuales */
.football-ball {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #000000;
    border-radius: 50%;
    background-image: 
        radial-gradient(circle at 30% 30%, #ffffff 0%, #ffffff 8%, transparent 8%),
        radial-gradient(circle at 70% 70%, #ffffff 0%, #ffffff 8%, transparent 8%),
        linear-gradient(45deg, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%);
    background-size: 100% 100%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
}

.football-ball:nth-child(2n) {
    animation-delay: 0.8s;
    background: #1a5f7a;
    background-image: 
        linear-gradient(45deg, transparent 30%, #ffffff 30%, #ffffff 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, #ffffff 30%, #ffffff 70%, transparent 70%);
}

.football-ball:nth-child(3n) {
    animation-delay: 1.6s;
    background: #8b4513;
    background-image: 
        linear-gradient(45deg, transparent 30%, #ffffff 30%, #ffffff 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, #ffffff 30%, #ffffff 70%, transparent 70%);
}

.football-ball:nth-child(4n) {
    animation-delay: 2.4s;
    background: #2e8b57;
    background-image: 
        linear-gradient(45deg, transparent 30%, #ffffff 30%, #ffffff 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, #ffffff 30%, #ffffff 70%, transparent 70%);
}

.football-ball:nth-child(5n) {
    animation-delay: 3.2s;
    background: #8b0000;
    background-image: 
        linear-gradient(45deg, transparent 30%, #ffffff 30%, #ffffff 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, #ffffff 30%, #ffffff 70%, transparent 70%);
}

/* Animación de rebote */
@keyframes football-bounce {
    0%, 100% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1.1);
    }
    20% {
        transform: translateY(70vh) scale(0.9);
    }
    30% {
        transform: translateY(50vh) scale(1.2);
    }
    40% {
        transform: translateY(30vh) scale(0.8);
    }
    50% {
        transform: translateY(20vh) scale(1.3);
    }
    60% {
        transform: translateY(40vh) scale(0.7);
    }
    70% {
        transform: translateY(60vh) scale(1.1);
    }
    80% {
        transform: translateY(80vh) scale(0.9);
    }
    90% {
        transform: translateY(95vh) scale(1);
        opacity: 0.8;
    }
}

/* Posiciones estáticas - 12 PELOTAS */
.football-ball:nth-child(1) { left: 10%; }
.football-ball:nth-child(2) { left: 20%; }
.football-ball:nth-child(3) { left: 30%; }
.football-ball:nth-child(4) { left: 40%; }
.football-ball:nth-child(5) { left: 50%; }
.football-ball:nth-child(6) { left: 60%; }
.football-ball:nth-child(7) { left: 70%; }
.football-ball:nth-child(8) { left: 80%; }
.football-ball:nth-child(9) { left: 15%; }
.football-ball:nth-child(10) { left: 35%; }
.football-ball:nth-child(11) { left: 55%; }
.football-ball:nth-child(12) { left: 75%; }

/* ===== FOOTER MODERNO Y PROFESIONAL ===== */

/* Mejoras específicas para móvil */
.footer-modern {
    position: relative !important;
    margin-top: auto !important;
}

.footer-main {
    padding: 4rem 0 2rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 1.5rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Footer principal */
.footer-modern {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%) !important;
    color: #ffffff !important;
    position: relative !important;
    margin-top: 4rem !important;
    overflow: hidden !important;
}

/* Efecto de fondo con patrón */
.footer-modern::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>') !important;
    pointer-events: none !important;
}

/* Footer principal */
.footer-main {
    padding: 4rem 0 3rem !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Estructura del footer optimizada */
.footer-main .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Footer inferior */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 1.5rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Brand del footer */
.footer-brand {
    margin-bottom: 1rem !important;
}

/* Secciones del footer */
.footer-section {
    margin-bottom: 1rem !important;
}

.footer-logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
}

.footer-logo-img {
    height: 40px !important;
    width: auto !important;
    border-radius: 8px !important;
}

.footer-logo-icon {
    width: 40px !important;
    height: 40px !important;
    background: var(--primary-gradient) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.footer-brand-text {
    font-family: 'Orbitron', monospace !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    background: var(--primary-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0 !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    font-size: 0.95rem !important;
}

/* Redes sociales */
.footer-social {
    display: flex !important;
    gap: 1rem !important;
}

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

.social-link:hover {
    background: var(--primary-gradient) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
    border-color: transparent !important;
}

/* Secciones del footer */
.footer-section {
    margin-bottom: 1rem !important;
}

.footer-title {
    color: white !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    font-family: 'Orbitron', monospace !important;
    letter-spacing: 0.5px !important;
    font-size: 1.1rem !important;
    position: relative !important;
}

.footer-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 30px !important;
    height: 2px !important;
    background: var(--primary-gradient) !important;
    border-radius: 1px !important;
}

/* Enlaces del footer */
.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 0.75rem !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.9rem !important;
    padding: 0.25rem 0 !important;
}

.footer-links a:hover {
    color: white !important;
    transform: translateX(5px) !important;
}

.footer-links i {
    color: var(--primary-color) !important;
    font-size: 0.8rem !important;
    width: 16px !important;
}

/* Información de contacto */
.contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
}

.contact-icon {
    width: 32px !important;
    height: 32px !important;
    background: var(--primary-gradient) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
}

.contact-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
}

.contact-label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

/* Footer inferior */
.copyright-text {
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
}

.footer-bottom-links {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: flex-end !important;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    transition: color 0.3s ease !important;
}

.footer-bottom-links a:hover {
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 2rem !important;
    }
    
    .footer-bottom-links {
        justify-content: center !important;
        margin-top: 1rem !important;
    }
    
    .copyright-text {
        text-align: center !important;
    }
    
    .footer-section {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .footer-brand {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .footer-social {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    .footer-modern {
        padding: 1.5rem 0 1rem !important;
    }
    
    .footer-main .container {
        padding: 0 0.75rem !important;
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-brand-text {
        font-size: 1.5rem !important;
    }
    
    .footer-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .footer-title {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-links {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem !important;
    }
    
    .footer-links a {
        font-size: 0.85rem !important;
        padding: 0.4rem 0 !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }
    
    .footer-links i {
        font-size: 0.9rem !important;
        width: 16px !important;
    }
    
    .social-link {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
    
    .contact-info {
        gap: 1rem !important;
    }
    
    .contact-item {
        margin-bottom: 1.2rem !important;
        justify-content: center !important;
    }
    
    .contact-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .contact-details {
        gap: 0.25rem !important;
    }
    
    .contact-label {
        font-size: 0.75rem !important;
    }
    
    .contact-value {
        font-size: 0.85rem !important;
    }
    
    .copyright-text {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-bottom-links {
        gap: 1rem !important;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 575.98px) {
    .footer-modern {
        padding: 1rem 0 0.75rem !important;
    }
    
    .footer-main .container {
        padding: 0 0.5rem !important;
    }
    
    .footer-brand-text {
        font-size: 1.3rem !important;
    }
    
    .footer-description {
        font-size: 0.85rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .footer-title {
        font-size: 1rem !important;
    }
    
    .footer-links a {
        font-size: 0.8rem !important;
        padding: 0.35rem 0 !important;
    }
    
    .social-link {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .contact-item {
        margin-bottom: 1rem !important;
    }
    
    .contact-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }
    
    .contact-label {
        font-size: 0.7rem !important;
    }
    
    .contact-value {
        font-size: 0.8rem !important;
    }
}

/* ===== ESTILOS PARA VISTA DE TORNEOS EN MÓVIL ===== */

/* Hero de torneos responsive */
.tournament-hero-content-wrapper {
    width: 100% !important;
}

/* Layout móvil para torneos */
.tournament-logo-mobile {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.tournament-logo-mobile img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
}

.hero-title-mobile {
    font-family: 'Orbitron', monospace !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    margin-bottom: 1rem !important;
}

.tournament-meta-mobile {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: center !important;
    width: 100% !important;
}

/* Estilos móviles para el grid de información */
.tournament-meta-mobile .tournament-status-container {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
}

.tournament-meta-mobile .tournament-info-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 300px !important;
}

.tournament-meta-mobile .tournament-info-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-align: center !important;
}

.tournament-meta-mobile .tournament-info-item i {
    width: 18px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
}

.tournament-meta-mobile .tournament-info-item span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
}

.tournament-status-mobile {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
}

.tournament-date-mobile {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.tournament-teams-mobile {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

/* Layout desktop para torneos */
.tournament-logo-desktop {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.tournament-logo-desktop img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
}

.hero-title-desktop {
    font-family: 'Orbitron', monospace !important;
    font-weight: 800 !important;
    font-size: 2.5rem !important;
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8) !important;
}

.tournament-meta-desktop {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

/* Nuevos estilos para el grid de información */
.tournament-status-container {
    display: flex !important;
    justify-content: flex-start !important;
}

.tournament-info-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.tournament-info-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

.tournament-info-item i {
    width: 20px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
}

.tournament-info-item span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
}

/* Responsive para torneos */
@media (max-width: 767.98px) {
    .tournament-hero .hero-background {
        min-height: 60vh !important;
    }
    
    .tournament-hero-content-wrapper {
        padding: 2rem 0 !important;
    }
    
    .hero-title-mobile {
        font-size: 1.8rem !important;
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.8),
            0 0 15px rgba(255, 255, 255, 0.6),
            0 0 20px rgba(255, 255, 255, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    }
    
    .tournament-logo-mobile {
        width: 100px !important;
        height: 100px !important;
    }
    
    .tournament-logo-mobile img {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Estilos simples para títulos de torneos */
.tournament-title {
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-family: 'Orbitron', monospace !important;
    color: white !important;
}

/* Efecto hover simple */
.hero-title-mobile:hover,
.hero-title-desktop:hover {
    transform: translateY(-2px) !important;
    transition: transform 0.3s ease !important;
}

/* Asegurar que todos los títulos usen la fuente principal */
.hero-title-mobile,
.hero-title-desktop,
.tournament-title {
    font-family: 'Orbitron', monospace !important;
    color: white !important;
}

/* ===== NAVBAR MODERNA Y PROFESIONAL ===== */

/* Navbar principal - Override de Bootstrap */
.navbar.navbar-modern {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
}

/* Override de estilos Bootstrap por defecto */
.navbar-modern .navbar-nav {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

.navbar-modern .navbar-collapse {
    justify-content: space-between !important;
}

/* Container optimizado */
.navbar-modern .container {
    padding: 0 1rem !important;
}

/* Brand/Logo moderno */
.navbar-brand-modern {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease !important;
    margin-right: 1rem !important;
}

.navbar-brand-modern:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px) !important;
}

.brand-icon-modern {
    width: 40px !important;
    height: 40px !important;
    background: var(--primary-gradient) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.brand-text-modern {
    font-family: 'Orbitron', monospace !important;
    font-weight: 800 !important;
    background: var(--primary-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.navbar-logo-modern {
    height: 40px !important;
    width: auto !important;
    border-radius: 8px !important;
}

/* Toggle button moderno */
.navbar-toggler-modern {
    border: none !important;
    padding: 0.5rem !important;
    border-radius: 8px !important;
    background: rgba(102, 126, 234, 0.1) !important;
    transition: all 0.3s ease !important;
}

.navbar-toggler-modern:hover {
    background: rgba(102, 126, 234, 0.2) !important;
}

.navbar-toggler-icon-modern {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(102, 126, 234, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navegación moderna - Override de Bootstrap */
.navbar-modern .navbar-nav {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.navbar-modern .nav-item {
    margin: 0 0.15rem !important;
}

.navbar-modern .nav-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.2rem !important;
    padding: 0.5rem 0.75rem !important;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    min-width: 70px !important;
}

.nav-link-modern:hover {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.08) !important;
    transform: translateY(-2px) !important;
}

.navbar-modern .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.12) !important;
    font-weight: 600 !important;
}

/* Override de estilos Bootstrap para dropdown */
.navbar-modern .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 0.75rem 0 !important;
    margin-top: 0.5rem !important;
    min-width: 200px !important;
}

.navbar-modern .dropdown-item {
    padding: 0.75rem 1.5rem !important;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 500 !important;
}

.navbar-modern .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.08) !important;
    color: var(--primary-color) !important;
    transform: translateX(5px) !important;
}

.navbar-modern .dropdown-divider {
    margin: 0.5rem 0 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.nav-icon-modern {
    font-size: 1.1rem !important;
    margin-bottom: 0.25rem !important;
}

.nav-text-modern {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Navegación derecha */
.navbar-nav-right {
    margin-left: auto !important;
}

/* Contenedor del usuario centrado */
.navbar-modern .dropdown {
    display: flex !important;
    justify-content: center !important;
}

/* Dropdown toggle centrado */
.navbar-modern .dropdown-toggle {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Enlaces especiales */
.nav-link-panel {
    background: rgba(255, 107, 107, 0.1) !important;
    color: #ff6b6b !important;
}

.nav-link-panel:hover {
    background: rgba(255, 107, 107, 0.2) !important;
    color: #ff6b6b !important;
}

.nav-link-login {
    background: rgba(102, 126, 234, 0.1) !important;
    color: var(--primary-color) !important;
}

.nav-link-login:hover {
    background: rgba(102, 126, 234, 0.2) !important;
    color: var(--primary-color) !important;
}

.nav-link-register {
    background: var(--primary-gradient) !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
}

.nav-link-register i,
.nav-link-register .nav-icon-modern {
    color: white !important;
    font-size: 1rem !important;
}

.nav-link-register .nav-text-modern {
    color: white !important;
}

.nav-link-register:hover {
    background: var(--primary-gradient) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5) !important;
    scale: 1.05 !important;
}

/* Dropdown moderno */
.navbar-modern .dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-direction: column !important;
    min-width: 80px !important;
    padding: 0.5rem 0.75rem !important;
    text-align: center !important;
}

.user-avatar-modern {
    width: 28px !important;
    height: 28px !important;
    background: var(--primary-gradient) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.25rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative !important;
}

/* Icono dentro del avatar perfectamente centrado */
.user-avatar-modern i {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 0.75rem !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

.user-name-modern {
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    width: 100% !important;
}

.dropdown-arrow-modern {
    font-size: 0.8rem !important;
    color: var(--text-secondary) !important;
    transition: transform 0.3s ease !important;
}

.dropdown-toggle-modern[aria-expanded="true"] .dropdown-arrow-modern {
    transform: rotate(180deg) !important;
}

.dropdown-menu-modern {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 0.75rem 0 !important;
    margin-top: 0.5rem !important;
    min-width: 200px !important;
}

.dropdown-item-modern {
    padding: 0.75rem 1.5rem !important;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 500 !important;
}

.dropdown-item-modern:hover {
    background: rgba(102, 126, 234, 0.08) !important;
    color: var(--primary-color) !important;
    transform: translateX(5px) !important;
}

.dropdown-divider-modern {
    margin: 0.5rem 0 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-nav-modern {
        gap: 0.25rem !important;
    }
    
    .nav-link-modern {
        min-width: auto !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .nav-text-modern {
        font-size: 0.7rem !important;
    }
    
    .navbar-brand-modern {
        font-size: 1.25rem !important;
    }
    
    .brand-icon-modern {
        width: 35px !important;
        height: 35px !important;
    }
}

/* ===== ESTILOS PARA SECCIÓN DE GOLEADORES ===== */

.scorers-section-enhanced {
    background: #f2f2f2 !important;
    background-color: #f2f2f2 !important;
    position: relative;
    overflow: hidden;
}

.scorers-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Estilos adicionales para asegurar que se aplique el fondo */
section.scorers-section-enhanced {
    background: #f2f2f2 !important;
    background-color: #f2f2f2 !important;
}

.scorers-section-enhanced .container {
    background: #f2f2f2 !important;
    background-color: #f2f2f2 !important;
}
