/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background Glow */
.maintenance-container {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
   
    color: #fff;
}


.glass-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: 50px 40px;
    border-radius: 24px;
    background: linear-gradient(75deg, #071c1a, #0b2f2b, #103f3a);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(21, 199, 184, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    text-align: center;
}


.glass-card::before,
.glass-card::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.glass-card::before {
    background: rgba(21, 199, 184, 0.35);
    top: -100px;
    left: -100px;
}

.glass-card::after {
    background: rgba(21, 199, 184, 0.25);
    bottom: -100px;
    right: -100px;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #15c7b8;
}

.tagline {
    font-size: 1.1rem;
    color: #dffcf8;
    margin-bottom: 12px;
}

.experience {
    font-size: 0.95rem;
    color: #b8ece7;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Elegant Loader */
.loader {
    width: 55px;
    height: 55px;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-top: 4px solid #15c7b8;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.refresh p {
    margin-bottom: 18px;
    color: #dffcf8;
    font-size: 0.95rem;
}

.btn-reload {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #15c7b8, #0ea89b);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 199, 184, 0.35);
}

.btn-reload:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 199, 184, 0.5);
}

@media (max-width: 768px) {
    .glass-card {
        padding: 40px 25px;
    }

    h1 {
        font-size: 2.3rem;
    }

    .tagline {
        font-size: 1rem;
    }
}