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

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(circle at top,
            rgba(212, 175, 55, 0.12),
            transparent 40%),
        linear-gradient(
            135deg,
            #081225,
            #0B1D3A,
            #12284d
        );
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,0.03),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(212,175,55,0.06),
            transparent 30%
        );
    pointer-events: none;
}

.coming-soon-container {
    position: relative;
    width: 90%;
    max-width: 750px;
    padding: 70px 50px;
    text-align: center;
    background: rgba(248, 247, 242, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 50px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(212, 175, 55, 0.12);
}

.gold-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #D4AF37,
        transparent
    );
    margin: 0 auto 35px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    color: #F8F7F2;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

h2 {
    color: #D4AF37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

p {
    color: #F8F7F2;
    line-height: 1.9;
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.divider {
    color: #D4AF37;
    font-size: 1.5rem;
    margin: 35px 0;
    letter-spacing: 10px;
}

.launch-text {
    font-style: italic;
    margin-bottom: 40px;
}

.contact-btn {
    display: inline-block;
    text-decoration: none;
    color: #0B1D3A;
    background: linear-gradient(
        135deg,
        #f4df9d,
        #D4AF37
    );
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 50px 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    p {
        font-size: 0.95rem;
    }
}