#server-save-counter {
    width: 100%;
    text-align: center;
    font-size: 110%;
    font-weight: bold;
    background: linear-gradient(120deg, 
        rgba(176, 0, 2, 1) 0%, 
        rgba(181, 5, 3, 1) 10%, 
        rgba(185, 11, 5, 1) 20%, 
        rgba(190, 16, 6, 1) 30%, 
        rgba(194, 22, 7, 1) 40%, 
        rgba(199, 27, 9, 1) 50%, 
        rgba(204, 32, 10, 1) 60%, 
        rgba(208, 38, 11, 1) 70%, 
        rgba(213, 43, 12, 1) 80%, 
        rgba(217, 49, 14, 1) 90%, 
        rgba(222, 54, 15, 1) 100%);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    border-bottom: 1px solid #990000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    animation: pulse-glow 2s infinite;
    margin-bottom: 5px;
}

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); 
    }
    70% { 
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); 
    }
}

#server-save-counter p {
    margin: 0;
    line-height: 1;
    font-size: 14px;
}

#countdown {
    font-weight: 600;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    min-width: 80px;
    margin-left: 4px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

 /* ESTILOS DO CABEÇALHO */
        .welcome-header {
            text-align: center;
            margin-bottom: 15px;
            
            padding: 0 20px;
        }

        .welcome-title {
            font-size: 24px;
            font-weight: 800;
            color: #1a365d;
            margin: 0 0 6px 0;
            line-height: 1.1;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .welcome-subtitle {
            font-size: 14px;
            font-weight: 600;
            color: #4a5568;
          
            line-height: 1.3;
        }

        .welcome-stats {
            font-size: 1.1rem;
            font-weight: 500;
            color: #718096;
            margin: 0;
            line-height: 1.4;
            background: rgba(113, 128, 150, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            display: inline-block;
            border: 1px solid rgba(113, 128, 150, 0.2);
        }