/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #0f172a,
        #1e293b,
        #334155
    );

    color: #ffffff;
    padding: 20px;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 850px;
    text-align: center;
}

/* Logo */
.logo {
    margin-bottom: 45px;
}

.logo h1 {
    font-size: 2.2rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.logo h1 span {
    color: #d4af37;
}

.logo p {
    color: #d4af37;
    font-size: 0.85rem;
    letter-spacing: 8px;
    margin-top: 5px;
}

/* Content Card */
.content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 20px;

    padding: 60px 40px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Coming Soon Badge */
.badge {
    display: inline-block;

    background: #d4af37;
    color: #111827;

    padding: 8px 20px;

    border-radius: 30px;

    font-size: 0.8rem;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

/* Heading */
.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Paragraph */
.content p {
    max-width: 650px;

    margin: 0 auto 15px;

    font-size: 1rem;
    line-height: 1.8;

    color: #d1d5db;
}

.content .sub-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Button */
.btn {
    display: inline-block;

    background: #d4af37;
    color: #111827;

    padding: 14px 30px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

/* Footer */
footer {
    margin-top: 35px;
}

footer p {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 600px) {

    .logo h1 {
        font-size: 1.6rem;
    }

    .content {
        padding: 45px 25px;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 0.9rem;
    }
}