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

:root {
    --text-main: #111827;
    --text-soft: #4b5563;
    --text-fade: #9ca3af;
    --bg-main: #f3f6fb;
    --bg-card: #ffffff;
    --brand-primary: #2d8cf0;
    --brand-primary-hover: #1e70c8;
    --shadow-soft: 0 4px 18px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(45, 140, 240, 0.1);
    --border-light: #e5e7eb;
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    overflow: hidden;
    color: var(--text-main);
}

.mobile-wrapper {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Card structure matching app pages */
.coming-soon-card {
    position: relative;
    width: 100%;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.badge {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f8fbff;
    border: 2px solid var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(45, 140, 240, 0.2);
    /* Bring it nicely above the top border */
    transform: translateY(24px);
}

.top-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 140, 240, 0.15), transparent 70%);
    filter: blur(10px);
    z-index: 0;
}

.content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.mini-label {
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    color: var(--text-main);
}

h1 span {
    display: inline-block;
    color: var(--brand-primary);
}

.description {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.countdown-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.count-item {
    padding: 12px 6px;
    border-radius: var(--radius-md);
    background: #f8fbff;
    border: 1px solid #dce9f9;
    text-align: center;
    transition: transform 0.2s ease;
}

.count-item:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
}

.count-item h2 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--brand-primary);
}

.count-item p {
    font-size: 11px;
    color: var(--text-soft);
    font-weight: 600;
    text-transform: uppercase;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #4b5563;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: #e5e7eb;
    color: #1f2937;
}

/* Mobile Height Feel */
@media (max-width: 420px) {
    .mobile-wrapper {
        min-height: 100vh;
    }

    .coming-soon-card {
        padding: 24px 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .description {
        font-size: 13px;
    }
}

/* Tablet / Desktop Preview */
@media (min-width: 768px) {
    body {
        padding: 32px;
    }
}