:root {
    --bg-color: #07080d;
    --text-gold: #e5cc98;
    --text-cream: #f8eac9;
    --accent-red: #ff3333;
    --neon-blue: #00f2ff;
    --footer-gray: #888;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-cream);
    font-family: 'Barlow Condensed', sans-serif;
    overflow-x: hidden;
    line-height: 1.1;
}

/* Background Layers */
.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/base_bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.side-graphics {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/side_graphics.webp');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    mix-blend-mode: screen;
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
}

.content-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography styles */
.main-title,
.section-title {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    margin: 5px 0 15px;
    color: var(--text-cream);
    line-height: 1;
}

.section-title {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #f8eac9 30%, #e5cc98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
}

.left-align {
    text-align: left;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding-top: 0;
    margin-top: -30px;
    /* Essential to anchor clocks to top */
}

.hero-image-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
}

.ticker-box {
    margin: 0 0 25px;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 900;
}

.ticker-label {
    color: var(--text-cream);
}

.ticker-value {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.8), 0 0 30px rgba(0, 242, 255, 0.4);
}

.cta-button,
.presale-button {
    background: linear-gradient(to bottom, #6b1414 0%, #300606 100%);
    color: white;
    text-decoration: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 900;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    border: 3px solid #ff3333;
    box-shadow: 0 0 25px rgba(255, 51, 51, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}

.cta-button::after,
.presale-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    border: 1px solid #efc565;
    pointer-events: none;
}

.cta-button:hover,
.presale-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 51, 51, 0.8);
}

/* Info Sections */
.side-by-side {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
}

.image-container {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hourglass-img {
    width: 110%;
    /* Slight oversize for "broken" feel */
    height: auto;
    transform: translateX(-5%);
}

.pocket-watch-img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

.bullet-points {
    list-style: none;
    margin-bottom: 25px;
}

.bullet-points li {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--text-cream);
    letter-spacing: -0.5px;
}

.bullet-points.large li {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

/* Timers */
.big-timer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    flex-wrap: nowrap;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block .num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1;
    background: linear-gradient(to bottom, #ffd77b 0%, #ff8f1f 52%, #ff4520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 24px rgba(255, 103, 34, 0.35);
}

.time-block .label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ff6600;
    margin-top: 4px;
}

.colon {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: #ff7a18;
    line-height: 1;
    transform: translateY(-8px);
    text-shadow: 0 0 18px rgba(255, 94, 0, 0.4);
}

.timer-kicker {
    margin-top: 5px;
    font-family: 'Anton', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff9d3c;
}

.timer-urgency {
    max-width: 28rem;
    margin-top: 16px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-gold);
    line-height: 1.2;
}

/* Collage */
.center-stack {
    align-items: center;
    padding-top: 100px;
}

.center-stack .section-title {
    margin-bottom: -15px;
    z-index: 5;
}

.collage-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    overflow: hidden;
}

.collage-title {
    position: absolute;
    top: 16%;
    left: 12%;
    z-index: 12;
    width: min(7ch, 38%);
    margin: 0;
    font-size: clamp(3.35rem, 7.2vw, 5.8rem);
    line-height: 0.9;
    text-align: left;
    pointer-events: none;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.6));
}

.collage-image {
    width: 108%;
    max-width: 1360px;
    height: auto;
}

.banner-overlay {
    background-color: #c9b188;
    width: 85%;
    max-width: 1100px;
    padding: 20px 40px;
    border: 4px solid #dcc698;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    transform: rotate(-1deg) translateY(-50px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNkOGMyOTAiIC8+PHBhdGggZD0iTTAgMGgxMDB2MTAwSDB6IiBmaWxsPSJyZ2JhKDAsMCwwLDAuMTEpIiBmaWx0ZXI9InVybCgjbm9pc2UpIi8+PGZpbHRlciBpZD0ibm9pc2UiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjgiIG51bU9jdGF2ZXM9IjIiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48L3N2Zz4');
}

.banner-overlay p {
    color: #1a1a1a;
    font-weight: 950;
    font-size: clamp(1.2rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Footer Section */
.footer-cta {
    padding-top: 60px;
    padding-bottom: 60px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.social-links a {
    text-decoration: none;
    color: white;
    background: linear-gradient(180deg, rgba(28, 21, 13, 0.95), rgba(7, 8, 13, 0.98));
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 2px solid rgba(229, 204, 152, 0.28);
    box-shadow: 0 0 28px rgba(229, 204, 152, 0.14);
    overflow: hidden;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-links a:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
    border-color: rgba(255, 143, 31, 0.6);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--footer-gray);
    line-height: 1.8;
}

.footer-bottom p {
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {

    .side-by-side,
    .side-by-side.reverse {
        flex-direction: column;
        gap: 20px;
    }

    .text-container {
        align-items: center;
        text-align: center;
    }

    .left-align {
        text-align: center;
    }

    .bullet-points li {
        font-size: 1.5rem;
    }

    .timer-numbers {
        font-size: 2rem;
    }

    .banner-overlay {
        width: 100%;
        transform: rotate(0) translateY(-20px);
        padding: 15px;
    }

    .collage-title {
        top: 17%;
        left: 18%;
        width: min(6ch, 60%);
        font-size: clamp(2.7rem, 11.5vw, 3.85rem);
    }

    .collage-image {
        width: 128%;
        max-width: none;
        transform: translateX(-3%);
    }

    .big-timer {
        justify-content: center;
    }

    .timer-kicker,
    .timer-urgency {
        text-align: center;
    }

    .social-links a {
        width: 72px;
        height: 72px;
    }

    .hourglass-img,
    .pocket-watch-img {
        max-width: 75%;
        margin: 0 auto;
        transform: none;
    }
}
