/* css/maintenance.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #003049 0%, #002039 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.maintenance-container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    color: #fcbf49;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.animation-container {
    position: relative;
    height: 200px;
    margin: 2rem auto;
    width: 100%;
    max-width: 300px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(252, 191, 73, 0.2);
    animation: pulse 3s infinite ease-in-out;
}

.circle:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 10px;
    left: calc(50% - 90px);
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 30px;
    left: calc(50% - 70px);
    animation-delay: 0.5s;
}

.circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50px;
    left: calc(50% - 50px);
    animation-delay: 1s;
}

.player-silhouette {
    position: absolute;
    width: 80px;
    height: 150px;
    top: 25px;
    left: calc(50% - 40px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath fill='%23FCBF49' d='M50 20c-8.284 0-15-6.716-15-15S41.716 0 50 0s15 6.716 15 15-6.716 15-15 15zm25 30H25l5 40 5 50 5 20 20 10 20-10 5-20 5-50 5-40z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin: 1.5rem 0;
    color: #fff;
    letter-spacing: 1px;
}

.message {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
    backdrop-filter: blur(5px);
}

.message p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.message p:last-child {
    margin-bottom: 0;
}

.message strong {
    color: #fcbf49;
}

.progress-container {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, #f77f00 0%, #fcbf49 100%);
    border-radius: 10px;
    animation: loading 2s infinite ease-in-out;
}

.progress-text {
    font-size: 0.9rem;
    color: #fcbf49;
}

.whatsapp-button {
    margin: 2rem 0;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.countdown {
    margin: 2rem 0;
}

.countdown p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fcbf49;
}

.countdown-timer span {
    display: inline-block;
    min-width: 2.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-block;
    font-size: 1.5rem;
    color: #fcbf49;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes loading {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .countdown-timer {
        font-size: 1.5rem;
    }
    
    .animation-container {
        height: 150px;
    }
    
    .circle:nth-child(1) {
        width: 140px;
        height: 140px;
        left: calc(50% - 70px);
    }
    
    .circle:nth-child(2) {
        width: 110px;
        height: 110px;
        left: calc(50% - 55px);
    }
    
    .circle:nth-child(3) {
        width: 80px;
        height: 80px;
        left: calc(50% - 40px);
    }
    
    .player-silhouette {
        width: 60px;
        height: 120px;
        left: calc(50% - 30px);
    }
}