* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: white;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.maintenance-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #d9a928;
    filter: blur(160px);
    opacity: .08;
}

.glow-one {
    top: -150px;
    left: -150px;
}

.glow-two {
    bottom: -180px;
    right: -150px;
}


/* Particles */

.particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #f5c94a;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: .6;
}

.particles span:nth-child(1) {
    top: 15%;
    left: 10%;
}

.particles span:nth-child(2) {
    top: 30%;
    left: 85%;
}

.particles span:nth-child(3) {
    top: 70%;
    left: 15%;
}

.particles span:nth-child(4) {
    top: 80%;
    left: 90%;
}

.particles span:nth-child(5) {
    top: 45%;
    left: 5%;
}

.particles span:nth-child(6) {
    top: 20%;
    left: 70%;
}

.particles span:nth-child(7) {
    top: 65%;
    left: 75%;
}

.particles span:nth-child(8) {
    top: 90%;
    left: 45%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
        opacity: .2;
    }

    50% {
        transform: translateY(-25px);
        opacity: 1;
    }
}


/* Logo */

.logo-area {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.logo-area img {
    width: 280px;
    max-width: 70vw;
    display: block;
}


/* Content */

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
}

.small-title {
    color: #d8d8d8;
    font-size: 17px;
    letter-spacing: 6px;
    margin-bottom: 12px;
}

h1 {
    font-size: clamp(45px, 7vw, 90px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: 3px;
}

h1 span {
    display: block;
    color: #e7b938;
    text-shadow: 0 0 25px rgba(231, 185, 56, .2);
}

.gold-line {
    width: 180px;
    height: 2px;
    margin: 28px auto;
    background: linear-gradient(
        90deg,
        transparent,
        #f4c542,
        transparent
    );
}

.description {
    max-width: 650px;
    margin: auto;
    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.7;
}

.return-text {
    margin-top: 30px;
    color: #999;
    font-size: 15px;
    letter-spacing: 2px;
}


/* Date Box */

.date-box {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 18px;
    padding: 18px 40px;
    border: 1px solid #cda936;
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
    box-shadow:
        0 0 30px rgba(220, 175, 50, .08),
        inset 0 0 20px rgba(220, 175, 50, .03);
}

.date-box p {
    color: #bdbdbd;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.date-box h2 {
    color: #f1c84b;
    font-size: clamp(28px, 5vw, 48px);
    letter-spacing: 2px;
}


/* Calendar */

.calendar-icon {
    width: 48px;
    height: 48px;
    border: 2px solid #e7bd42;
    border-radius: 6px;
    position: relative;
}

.calendar-top {
    height: 10px;
    background: #e7bd42;
}

.calendar-body {
    padding: 7px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.calendar-body span {
    width: 5px;
    height: 5px;
    background: #e7bd42;
    border-radius: 1px;
}


/* Bottom */

.bottom-text {
    margin-top: 30px;
    color: #aaa;
    font-size: 15px;
}

.contact {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact a {
    color: #c9c9c9;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.contact span {
    color: #e5bb3d;
    margin-right: 7px;
}

.contact a:hover {
    color: #e5bb3d;
}


/* Footer */

footer {
    position: absolute;
    bottom: 20px;
    color: #666;
    font-size: 12px;
    letter-spacing: 1px;
}


/* Mobile */

@media (max-width: 600px) {

    .maintenance-page {
        padding: 35px 18px 70px;
    }

    .logo-area img {
        width: 210px;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 4px;
    }

    h1 {
        font-size: 44px;
    }

    .description {
        font-size: 15px;
        line-height: 1.6;
    }

    .date-box {
        width: 100%;
        padding: 15px;
        gap: 15px;
        justify-content: center;
    }

    .date-box h2 {
        font-size: 25px;
    }

    .date-box p {
        font-size: 9px;
    }

    .calendar-icon {
        width: 40px;
        height: 40px;
    }

    .contact {
        flex-direction: column;
        gap: 12px;
    }

    footer {
        font-size: 9px;
        text-align: center;
        width: 100%;
    }
}/* CSS Document */

