#live-notification.caixa {
    width: fit-content; /* ou use uma largura fixa como 300px */
    max-width: 90%;
    margin: 20px auto; /* centraliza horizontalmente */
    padding: 16px 24px;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: white;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  

#live-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--void-purple-light) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.live-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--void-purple), var(--void-purple-dark));
    color: var(--void-green);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    margin-top: var(--space-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--void-purple-light);
    box-shadow: var(--shadow-void);
    position: relative;
    overflow: hidden;
}

.live-btn::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.6s ease;
}

.live-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
    background: linear-gradient(90deg, var(--void-purple-dark), var(--void-purple));
}

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

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--void-green);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px var(--void-green);
}

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

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

/* Offline state styles */
#live-notification.offline {
    background: linear-gradient(135deg, #555, #333);
    border-color: rgba(106, 13, 173, 0.3);
}

.offline .live-dot {
    background-color: #888;
    box-shadow: none;
}

.offline .live-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Variáveis - Tema Cho'Gath */
:root {
    /* Cores principais do Cho'Gath */
    --void-purple: #6a0dad;
    --void-purple-dark: #4a0080;
    --void-purple-light: #9d4edd;
    --void-green: #39ff14;
    --void-green-muted: rgba(57, 255, 20, 0.6);
    --void-red: #c51350;
    --void-text: #e4e4ff;
    
    /* Cores de background e UI */
    --bg-dark: #0f0014;
    --bg-surface: #1a0025;
    --card-bg: #230033;
    --card-bg-hover: #3a0055;
    
    /* Cores funcionais */
    --accent: var(--void-green);
    --accent-muted: rgba(57, 255, 20, 0.3);
    --text-bright: #ffffff;
    --text-primary: #e8dfff;
    --text-secondary: #b5a9d4;
    
    /* Sombras */
    --shadow-void: 0 5px 25px rgba(106, 13, 173, 0.25);
    --shadow-accent: 0 5px 25px rgba(57, 255, 20, 0.25);
    --shadow-inner: inset 0 0 25px rgba(106, 13, 173, 0.5);
    
    /* Dimensões e espaçamento */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Animações */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Bordas e decorações */
    --border-glow: 1px solid rgba(106, 13, 173, 0.5);
    --border-accent: 1px solid rgba(57, 255, 20, 0.5);
}

/* Conteúdo principal */
main {
    max-width: 1200px;
    width: 100%;
    margin: var(--space-xl) auto;
    padding: 0 var(--space-lg);
    flex-grow: 1;
    position: relative;
    z-index: 2;
}