@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&display=swap');

#tio-hp-contest {
    font-family: 'Open Sans', sans-serif;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.tio-hp-inner {
    position: relative;
    display: grid;
    align-items: stretch;
    min-height: 96px;
}

.tio-hp-inner.three { grid-template-columns: 1fr auto 1fr; }
.tio-hp-inner.two   { grid-template-columns: 1fr 1fr; }
.tio-hp-inner.one   { grid-template-columns: 1fr; }

/* ── LEFT ── */
.tio-hp-left {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    border-right: 1px solid rgba(255,255,255,0.07);
}

.tio-hp-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.tio-hp-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 600;
    margin: 4px 0 0;
}

.tio-hp-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    color: rgba(255,255,255);
    margin: 3px 0 0;
}

/* ── CENTER ── */
.tio-hp-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-right: 1px solid rgba(255,255,255,0.07);
}

/* ── DIGITS ── */
.tio-hp-digits {
    display: flex;
    gap: 5px;
}

.tio-hp-digit {
    width: 44px;
    height: 54px;
    background: #fff;
    border: 2px solid rgba(214,214,214,0.6);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

/* ── COUNTDOWN ── */
.tio-hp-cd-wrap {
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.tio-hp-cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.tio-hp-cd-num {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: #fff;
    line-height: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    width: 50px;
    text-align: center;
    padding: 7px 4px 5px;
    display: block;
}

.tio-hp-cd-unit {
    font-size: 9px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
}

.tio-hp-cd-sep {
    font-size: 20px;
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    padding-bottom: 16px;
    line-height: 1;
}

/* ── STARTED ── */
.tio-hp-started {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}

.tio-hp-started-main {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.tio-hp-started-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ── RIGHT ── */
.tio-hp-right {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

.tio-hp-prize-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    margin: 0 0 4px;
}

.tio-hp-prize-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.tio-hp-prize-freq {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin: 5px 0 0;
}

.tio-hp-btn {
    font-family: 'Barlow Condensed', sans-serif;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #fff;
    color: #000 !important;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
    border: none !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.15s, transform 0.1s;
}

.tio-hp-btn:hover {
    background: #e0e0e0;
    transform: scale(1.02);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
    #tio-hp-contest {
        border-radius: 0;
    }
    .tio-hp-inner.three,
    .tio-hp-inner.two {
        grid-template-columns: 1fr;
    }
    .tio-hp-left {
        padding: 16px 18px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .tio-hp-right {
        padding: 14px 18px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .tio-hp-prize-wrap { text-align: left; }
}