@keyframes pulseLive {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.live-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ff4d4d;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulseLive 1.5s infinite;
    box-shadow: 0 0 12px #ff4d4d;
}

.card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 380px;
    max-width: 380px;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 20px 50px -12px rgba(59, 130, 246, 0.6);
}

.gradient-header {
    background: linear-gradient(135deg, #60a5fa, #a855f7, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.score-badge {
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body {
    background-color: #020617;
    background-image: radial-gradient(circle at 50% -20%, #1e293b 0%, #020617 80%);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.modal-overlay {
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
}

.nav-item {
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    opacity: 0.7;
    font-size: 1rem;
    font-weight: 900;
}

.nav-item.active {
    color: #3b82f6;
    border-color: #3b82f6;
    opacity: 1;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 2rem 0.5rem 3rem 0.5rem;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    opacity: 0;
}

.carousel-wrapper:hover .scroll-btn {
    opacity: 1;
}

.scroll-btn:hover {
    background: #3b82f6;
    transform: translateY(-50%) scale(1.2);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

.sport-section-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 6px solid #3b82f6;
}

.tv-badge {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    width: 100%;
    min-height: 56px;
}

.tv-logo {
    height: 28px;
    max-width: 100px;
    object-fit: contain;
}

.tv-text {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: #cbd5e1;
}

.performance-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 12px;
    margin-top: 15px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.detail-icon {
    font-size: 12px;
}

.detail-value {
    color: #e2e8f0;
    font-weight: 900;
}

.event-modal-content {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.2);
}

.detail-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

#refreshTimer {
    font-size: 10px;
    font-weight: 900;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 15px;
}

/* Estilos para o Modal de Ajustes Original */
.config-modal {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(40px);
}

.status-tag {
    font-size: 10px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 8px;
    text-transform: uppercase;
}

.status-active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-inactive {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.tv-logo {
    height: 32px;
    max-width: 100px;
    object-fit: contain;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.2));
}

.tv-text {
    font-size: 12px;
    color: #fff;
    margin-right: 6px;
}

/* Estilos Login OTP */
.otp-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

input::placeholder {
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

/* Painel Administrativo migrado para admin/css/admin.css */

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #334155;
}