* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #050507;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f8fafc;
    background:
        radial-gradient(circle at 50% 12%, rgba(56, 189, 248, 0.18), transparent 34rem),
        linear-gradient(135deg, #050507 0%, #0a0d13 52%, #030305 100%);
}

.coming-soon {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 18px;
}

.coming-soon-card {
    width: min(100%, 780px);
    text-align: center;
    padding: clamp(32px, 8vw, 76px) clamp(20px, 6vw, 64px);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 34px;
    background: rgba(10, 13, 19, 0.88);
    box-shadow: 0 32px 110px rgba(0, 0, 0, 0.45);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    margin-bottom: 34px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand span {
    color: #67e8f9;
}

.eyebrow {
    margin: 0 0 14px;
    color: #67e8f9;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(48px, 10vw, 106px);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: 0;
}

.intro {
    max-width: 560px;
    margin: 26px auto 0;
    color: #cbd5e1;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.65;
}

.timer-link {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 24px;
    border: 1px solid #22d3ee;
    border-radius: 8px;
    color: #041014;
    background: #67e8f9;
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.18);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.timer-link:hover {
    border-color: #a5f3fc;
    background: #a5f3fc;
    transform: translateY(-1px);
}

.timer-link:focus-visible {
    outline: 3px solid rgba(103, 232, 249, 0.3);
    outline-offset: 3px;
}

.status-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.status-row span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 430px) {
    .coming-soon {
        padding: 18px 12px;
    }

    .coming-soon-card {
        border-radius: 26px;
    }
}

.timer-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 26px 14px;
}

.timer-card {
    width: min(100%, 720px);
    padding: clamp(24px, 6vw, 52px);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 34px;
    background: rgba(10, 13, 19, 0.9);
    box-shadow: 0 32px 110px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.timer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    margin-bottom: 28px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
}

.timer-brand span {
    color: #67e8f9;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 2vw, 14px);
    margin: 30px auto;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    font-size: clamp(46px, 11vw, 96px);
    line-height: 1;
    font-weight: 950;
}

.timer-display span {
    min-width: 1.35em;
    text-align: center;
}

.timer-display span:nth-child(2),
.timer-display span:nth-child(4) {
    min-width: auto;
    color: #22d3ee;
}

.timer-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.timer-controls label {
    display: grid;
    gap: 8px;
    text-align: left;
}

.timer-controls span {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.timer-controls input {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: #05070b;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    outline: none;
}

.timer-controls input:focus {
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.timer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.timer-actions button {
    min-height: 54px;
    border: 0;
    border-radius: 18px;
    cursor: pointer;
    color: #041014;
    background: #22d3ee;
    font-size: 16px;
    font-weight: 950;
}

.timer-actions button:last-child {
    color: #e2e8f0;
    background: #111827;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.timer-status {
    min-height: 24px;
    margin: 18px 0 0;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 430px) {
    .timer-card {
        border-radius: 26px;
        padding: 22px 14px;
    }

    .timer-controls {
        gap: 8px;
    }

    .timer-controls input {
        min-height: 50px;
        border-radius: 15px;
        font-size: 19px;
    }
}
