:root {
    --primary: #ffda30;       /* matches TheWeblish tone */
    --secondary: #000000;
    --dark: #0f172a;
    --light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f8fafc;
    color: var(--dark);
}

/* Wrapper */
.landing-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

/* Overlay */
.landing-wrapper .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Content */
.content {
    position: relative;
    background: var(--light);
    max-width: 720px;
    width: 100%;
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    animation: fadeUp 1s ease forwards;
}

.badge {
    display: inline-block;
    background: rgba(111, 86, 232, 0.1);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.sub-text {
    color: #555;
}

/* CTA */
.cta-group {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn.primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn.primary:hover {
    background: var(--secondary);
    color: var(--light);
    transform: translateY(-2px);
}

/* Countdown */
.countdown {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* Info box */
.info-box {
    margin-top: 35px;
    text-align: left;
}

.info-box h3 {
    margin-bottom: 12px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    margin-bottom: 8px;
    font-size: 15px;
}

.legal-note {
    margin-top: 30px;
    font-size: 13px;
    color: #666;
    text-align: center;
}


/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .content {
        padding: 35px 25px;
    }

    .content h1 {
        font-size: 26px;
    }
}
