:root {
    --bg-gray: #8f8f8f;
    --light-gray: #f2f2f2;
    --dark: #111;
    --text: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: white;
}

/* Layout */
.layout {
    display: flex;
    height: calc(100vh - 50px);
}

/* Countdown */
.countdown-bar {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    gap: 90px;
    padding: 17px;
    font-size: 12px;
}

.countdown-bar span span {
    font-size: 20px;
    font-weight: 600;
}

/* Hero */
.hero {
    width: 44.5%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/HeroBGD_2.jpg');
    background-size: cover;
    background-position-y: 50%;
    /* background-position-x: 10px; */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-overlay.dark {
    background: rgba(0, 0, 0, 0.75);
}

.hero-content {
    color: white;
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    align-items: center;

    padding-bottom: 1.4rem;

    text-align: center;

    position: relative;
    z-index: 3;
}

.hero-footer {
    background: #000;
    color: #fff;
    font-size: 16px;
    padding: 1.3rem 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    flex-shrink: 0;
    z-index: 3;
}

.hero-footer a {
    color: #fff;
    text-decoration: underline;
}

.hero-footer span {
    margin: 0 6px;
}

.subtitle {
    font-size: 16px;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.hashtag {
    font-family: "Gilda Display", serif;
    font-size: 70px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.5px;
    line-height: 1.06;
    margin-top: 21px;
    margin-bottom: 21px;
}

.outline-btn {
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    color: #fff;
    padding: 21px 42px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

/* Content */
.content {
    width: 55.5%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0px 0px;
    scrollbar-width: none;
}

.content::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Nav */
.nav {
    font-family: "DM Mono", monospace;
    font-weight: 400;

    display: flex;
    align-items: center;

    white-space: nowrap;
    overflow-x: auto;
    flex-wrap: nowrap;

    gap: 25px;

    justify-content: space-between;

    padding: 31px 50px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 50;

    padding-inline: 50px;
    scroll-padding-inline: 80px;
}

/* Hide scrollbar but keep scroll */
.nav::-webkit-scrollbar {
    display: none;
}

.nav {
    scrollbar-width: none;
}

.nav a {
    position: relative;
    text-decoration: none;
    color: #999;
    font-size: 14px;
}

.nav a.active {
    color: black;
}

.nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: #111;
}

/* Sections */
.section {
    text-align: center;
    /* margin-bottom: 120px; */
}

.section h2 {
    font-family: "Gilda Display", serif;
    font-size: 52px;
    text-align: center;
    font-weight: 550;
    letter-spacing: 1px;
}

.disabled-cursor {
    cursor: not-allowed !important;
    opacity: 0.3;
}