/* Container Principal */
.sm-live-container {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 1rem;
    border-radius: 1.5rem;
    /* 2xl */
    background-color: #000;
}

/* Imagem de Background */
.sm-live-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay Radial Invertido */
.sm-live-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

/* Badge AO VIVO */
.sm-live-badge-wrapper {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.sm-live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #dc2626;
    /* red-600 */
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: background 0.3s ease;
}

.sm-live-badge:hover {
    background-color: #ef4444;
}

/* O Ponto Pulsante */
.sm-live-dot {
    width: 0.625rem;
    height: 0.625rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.sm-live-badge-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Box de Conteúdo Central */
.sm-live-content-box {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 448px;
    /* max-md */
    margin: 0 auto 2.5rem;
    /* mb-10 */
    padding: 1.5rem;
    background: rgba(30, 58, 138, 0.4);
    /* blue-800/40 */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.sm-live-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sm-live-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 100%;
    margin: 0;
    line-height: 1.4;
}

/* Botão de Play */
.sm-live-play-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(59, 130, 246, 0.9);
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sm-live-play-btn:hover {
    background-color: #60a5fa;
    transform: scale(1.05);
}

.sm-live-play-icon {
    margin-right: 0.5rem;
}