*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#0f172a;
    color:white;
    min-height:100vh;
    overflow-x:hidden;
    position:relative;
}

.gradient-bg{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,.25), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(99,102,241,.25), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(59,130,246,.15), transparent 35%);
    animation: moveGradient 12s ease-in-out infinite;
}

@keyframes moveGradient{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.1);
    }
}

.container{
    position:relative;
    z-index:10;
    max-width:1000px;
    margin:auto;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 24px;
}

.logo{
    margin-bottom:30px;
}

.logo img{
    width:240px;
    height:auto;
    display:block;
    filter:
    drop-shadow(0 0 20px rgba(59,130,246,.25))
    drop-shadow(0 0 40px rgba(99,102,241,.15));
}

.badge{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.12);
    padding:12px 20px;
    border-radius:999px;
    margin-bottom:30px;
    color:#cbd5e1;
}

h1{
    font-size:clamp(42px,7vw,76px);
    line-height:1;
    font-weight:900;
    max-width:900px;
    margin-bottom:25px;
}

.subtitle{
    max-width:700px;
    color:#cbd5e1;
    font-size:1.15rem;
    line-height:1.8;
    margin-bottom:50px;
}

.notice-card{
    width:100%;
    max-width:850px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:35px;
    text-align: center;
    margin-bottom:40px;
}

.notice-card h2{
    margin-bottom:20px;
    font-size:1.8rem;
}

.notice-card p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:15px;
}

.status-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin-bottom:50px;
}

.status-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(20px);
    border-radius:20px;
    padding:20px;
    font-weight:600;
}

.status-card span{
    color:#22c55e;
    margin-right:8px;
}

.contact{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
}

.btn-primary{
    text-decoration:none;
    background:linear-gradient(
        135deg,
        #3b82f6,
        #6366f1
    );
    color:white;
    padding:16px 28px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    text-decoration:none;
    color:white;
    border:1px solid rgba(255,255,255,.15);
    padding:16px 28px;
    border-radius:14px;
    transition:.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.05);
}

.footer{
    margin-top:50px;
    color:#94a3b8;
}

.floating{
    position:fixed;
    border-radius:50%;
    filter:blur(70px);
    opacity:.35;
}

.floating-1{
    width:250px;
    height:250px;
    background:#3b82f6;
    top:10%;
    left:10%;
    animation:float 12s infinite ease-in-out;
}

.floating-2{
    width:300px;
    height:300px;
    background:#6366f1;
    right:10%;
    top:20%;
    animation:float 16s infinite ease-in-out;
}

.floating-3{
    width:220px;
    height:220px;
    background:#3b82f6;
    bottom:10%;
    left:40%;
    animation:float 14s infinite ease-in-out;
}

.important {
    text-decoration: underline;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-30px);
    }
}