:root {
    --sky: #0e1018;
    --counter-atmo: #1a1c24;
    --zinc: #3a3840;
    --walnut: #2a2420;
    --zinc-highlight: #5a5860;
    --moon: #d8dce8;
    --text-primary: #a0a8b8;
    --text-display: #d8dce8;
    --text-dim: #707888;
    --text-nav: #505868;
    --star: #4a5060;
    --crescent: #8a90a0;
}

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

body {
    background-color: var(--sky);
    color: var(--text-primary);
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-rows: 35vh 30vh 35vh;
}

/* Sky Band */
.sky-band {
    background-color: var(--sky);
    position: relative;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: var(--star);
}

.moon-svg {
    position: absolute;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%);
}

/* Counter Zone */
.counter-zone {
    background-color: var(--counter-atmo);
    overflow: hidden;
    position: relative;
}

.counter-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 100%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.counter-scroll::-webkit-scrollbar {
    display: none;
}

/* Seats */
.seat {
    flex: 0 0 80vw;
    height: 100%;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    margin-right: 40px;
}

.seat:last-child {
    margin-right: 0;
}

.seat-content {
    max-width: 480px;
    text-align: center;
}

.crescent-icon {
    display: block;
    margin: 0 auto 16px;
}

.domain-name {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 48px);
    letter-spacing: 0.06em;
    color: var(--text-display);
    text-transform: lowercase;
    margin-bottom: 16px;
}

.body-text {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    white-space: normal;
}

.mono-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    line-height: 1.8;
    white-space: normal;
}

.coaster-line {
    width: 120px;
    height: 1px;
    background-color: var(--zinc);
    margin: 20px auto 0;
}

.coaster-short {
    width: 80px;
    margin-bottom: 20px;
}

.domain-small {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-nav);
    margin-bottom: 16px;
}

/* Bar Surface */
.bar-surface {
    background: linear-gradient(to bottom, var(--zinc) 0%, var(--walnut) 100%);
    border-top: 1px solid var(--zinc-highlight);
    position: relative;
}

/* Mobile */
@media (max-width: 768px) {
    .seat {
        flex: 0 0 90vw;
        padding: 16px 20px;
        margin-right: 20px;
    }

    .seat-content {
        max-width: 100%;
    }

    .body-text {
        font-size: 14px;
    }
}
