/* ===== MUNDIAL 2026 - Estilo Verde/Dorado ===== */
.countdown-mundial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 50%, #1a472a 100%);
    border-radius: 12px;
    padding: 8px 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 2px 8px rgba(26, 71, 42, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.countdown-mundial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
    transition: left 0.5s ease;
}

.countdown-mundial:hover::before {
    left: 100%;
}

.countdown-mundial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 71, 42, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
    text-decoration: none;
    color: #fff;
    border-color: rgba(255,215,0,0.5);
}

.mundial-icon {
    font-size: 1.5rem;
    animation: pulse-trophy 2s ease-in-out infinite;
}

@keyframes pulse-trophy {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.mundial-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mundial-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFD700;
}

.mundial-partidos {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.mundial-countdown {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', monospace;
    color: #FFD700;
    animation: glow-gold 2s ease-in-out infinite;
}

@keyframes glow-gold {
    0%, 100% { text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4); }
}

.countdown-mundial-segundo {
    padding: 6px 12px;
    margin-left: 5px;
}

.countdown-mundial-segundo .mundial-partidos {
    font-size: 0.7rem;
}

/* ===== F1 COUNTDOWN - Estilo Racing ===== */
.countdown-f1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E10600 0%, #15151E 100%);
    border-radius: 12px;
    padding: 10px 18px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 8px rgba(225, 6, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.countdown-f1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.countdown-f1:hover::before {
    left: 100%;
}

.countdown-f1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(225, 6, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    text-decoration: none;
    color: #fff;
}

.f1-icon {
    font-size: 1.5rem;
    animation: pulse-racing 1.5s ease-in-out infinite;
}

@keyframes pulse-racing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.f1-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.f1-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.f1-countdown {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Montserrat', monospace;
    color: #fff;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(225, 6, 0, 0.4); }
}

/* ===== GRAN HERMANO - Estilo Rosa ===== */
.countdown-granhomano {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    border-radius: 12px;
    padding: 10px 18px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
}

.countdown-granhomano::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: skewX(-20deg) translateX(-150%);
    transition: transform 0.5s ease;
}

.countdown-granhomano:hover::before {
    transform: skewX(-20deg) translateX(150%);
}

.countdown-granhomano:hover {
    background: linear-gradient(135deg, #FF1493 0%, #C71585 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 16px rgba(255, 20, 147, 0.5);
    text-decoration: none;
    color: #fff;
}

.gh-icon {
    font-size: 1.3rem;
    animation: bounce-soft 2s ease-in-out infinite;
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.gh-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* ===== TRENDING TAGS - Estilo Dorado/Naranja ===== */
.trending-tags-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.trending-label {
    color: #FF6B35;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: fadeIn 0.6s ease-out;
}

.trending-tag-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
    border: none;
    color: #1a1a2e;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
    animation: fadeIn 0.7s ease-out;
    animation-fill-mode: backwards;
}

.trending-tag-badge:nth-child(2) { animation-delay: 0.1s; }
.trending-tag-badge:nth-child(3) { animation-delay: 0.2s; }
.trending-tag-badge:nth-child(4) { animation-delay: 0.3s; }
.trending-tag-badge:nth-child(5) { animation-delay: 0.4s; }

.trending-tag-badge:hover {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B35 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
    text-decoration: none;
    color: #1a1a2e;
}

/* Pulse suave para los tags */
@keyframes tag-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.trending-tag-badge:not(:hover) {
    animation: tag-breathe 3s ease-in-out infinite;
}

/* Responsive para móviles */
@media (max-width: 992px) {
    .countdown-mundial {
        padding: 6px 10px;
        gap: 5px;
    }
    
    .mundial-icon {
        font-size: 1.2rem;
    }
    
    .mundial-label {
        font-size: 0.55rem;
    }
    
    .mundial-partidos {
        font-size: 0.65rem;
    }
    
    .mundial-countdown {
        font-size: 0.65rem;
    }
    
    .countdown-mundial-segundo {
        display: none;
    }
    
    .countdown-f1,
    .countdown-granhomano {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .f1-icon,
    .gh-icon {
        font-size: 1.2rem;
    }
    
    .f1-label,
    .gh-label {
        font-size: 0.6rem;
    }
    
    .f1-countdown {
        font-size: 0.75rem;
    }
    
    .trending-tags-container {
        justify-content: center;
        margin-top: 10px;
        width: 100%;
    }
    
    .trending-label {
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .countdown-mundial,
    .countdown-f1,
    .countdown-granhomano {
        display: none;
    }
}