* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a2744;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0ece4;
    overflow: hidden;
}

.bg-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.bg-glow--gold {
    background: #d4a843;
    top: -150px;
    right: -100px;
}

.bg-glow--blue {
    background: #3a5a9f;
    bottom: -200px;
    left: -100px;
}

.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    background: #2a3f6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.logo span {
    font-size: 3rem;
    font-weight: 800;
    color: #d4a843;
    letter-spacing: -2px;
    line-height: 1;
}

.logo::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.3);
}

h1 {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    animation: fadeInDown 0.8s ease-out 0.15s both;
}

h1 strong {
    font-weight: 700;
    color: #d4a843;
}

.tagline {
    font-size: 1rem;
    color: rgba(240, 236, 228, 0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.divider {
    width: 60px;
    height: 2px;
    background: #d4a843;
    margin: 0 auto 2.5rem;
    animation: fadeInDown 0.8s ease-out 0.45s both;
}

.message {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(240, 236, 228, 0.75);
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out 0.6s both;
}

.cta {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(212, 168, 67, 0.5);
    color: #d4a843;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInDown 0.8s ease-out 0.75s both;
}

.cta:hover {
    background: #d4a843;
    color: #1a2744;
    border-color: #d4a843;
}

.footer {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(240, 236, 228, 0.25);
    letter-spacing: 2px;
    animation: fadeInDown 0.8s ease-out 0.9s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .logo span {
        font-size: 2.2rem;
    }

    .message {
        font-size: 1rem;
    }
}
