:root {
    --white-color: #FFF;
    --black-color: #0B1629;
    --purple-color: #330840;
    --dark-pink-color: #72156C;
    --pink-color: #B12398;
    --light-second-pink-color: #C14FAD;
    --light-pink-color: #F590E0;
    --gold-color: #D0BB20;
    --yellow-color: #FFF380;
    --transition-default: .3s;
    --font-family-default: "Poppins", sans-serif;
    --font-family-heading: 'Bebas Neue', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-default);
    background-color: var(--black-color);
    background-image: url('assets/hero_bg.png');
    background-position: 0% 100%;
    background-size: max(400px, 35%);
    background-repeat: no-repeat;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/smoke_bg.png');
    background-position: center;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.maintenance-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.logo h1 {
    font-family: var(--font-family-heading);
    font-size: 42px;
    letter-spacing: 2px;
    margin: 0;
    color: var(--white-color);
}

.content {
    padding: 40px 0;
}

.title {
    font-family: var(--font-family-heading);
    font-size: 80px;
    margin: 0 0 20px 0;
    color: var(--white-color);
    position: relative;
    display: inline-block;
    line-height: 1.1;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    border-bottom: 5px solid var(--yellow-color);
    box-shadow: 0px 0px 24px 1px rgba(255, 243, 128, 0.5);
}

.description {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold-color);
    margin: 30px 0 50px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    align-items: center;
}

.contact-item {
    color: var(--white-color);
    text-decoration: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-default);
}

.contact-item i {
    color: var(--yellow-color);
}

.contact-item:hover {
    color: var(--yellow-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-item {
    width: 50px;
    height: 50px;
    background: var(--pink-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition-default);
}

.social-item:hover {
    background: var(--light-second-pink-color);
    transform: translateY(-5px);
}

footer {
    padding-top: 50px;
}

.footer-content p {
    font-size: 14px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .title {
        font-size: 60px;
    }

    .description {
        font-size: 18px;
    }

    .contact-item {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 45px;
    }

    .logo h1 {
        font-size: 32px;
    }
}