:root {
    --primary-black: #000000;
    --light-purple: #E9D5FF;
    --btn-purple: #9333EA;
    --btn-purple-hover: #7E22CE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #804575;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.maintenance-container {
    max-width: 600px;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.logo-wrapper {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.brand-logo {
    max-width: 150px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.brand-logo:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.text-content {
    margin-bottom: 3rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.sub-title {
    font-size: 2rem;
    font-weight: 500;
    opacity: 0.8;
}

.notify-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notify-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.1);
}

.notify-desc {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.notify-btn {
    background: var(--primary-black);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.notify-btn:hover {
    background: var(--btn-purple);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    transform: scale(1.05);
}

.notify-btn:active {
    transform: scale(0.98);
}

.notify-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 1.2rem;
    color: #E9D5FF;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 3rem;
    }
    .sub-title {
        font-size: 1.5rem;
    }
}
