/* --- CÀI ĐẶT CHUNG --- */
:root {
    --bg-dark: #0A192F;
    --bg-light: #2563EB;
    --text-primary: #FFFFFF;
    --text-secondary: #A8B2D1;
    --accent-color: #FFC107;
    --card-bg: rgba(10, 25, 47, 0.7);
    --anim-duration: 400ms;
    --anim-easing: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===== Base reset tối thiểu ===== */
html, body { height: 100%; }
body { margin: 0; box-sizing: border-box; -webkit-text-size-adjust: 100%; }
*, *::before, *::after { box-sizing: inherit; }

/* ===== Chiến lược chiều cao an toàn (theo thứ tự ưu tiên) ===== */
/* 0) Fallback cũ */
.app, .screen { min-height: 100vh; }

/* 1) WebKit đời cũ (trước khi có dvh) */
@supports (-webkit-touch-callout: none) {
  .app, .screen { min-height: -webkit-fill-available; }
}

/* 2) Fallback khi chưa có dvh: dùng biến --vh tính bằng JS */
@supports not (min-height: 100dvh) {
  .app, .screen { min-height: calc(var(--vh, 1vh) * 100); }
}

/* 3) Trình duyệt hiện đại: dvh theo visual viewport động */
@supports (min-height: 100dvh) {
  .app, .screen { min-height: 100dvh; }
}

/* ===== Layout ổn định ===== */
.app { 
  display: flex; 
  flex-direction: column;
  /* Safe areas (tai thỏ, gesture bar) */
  padding-bottom: env(safe-area-inset-bottom);
  padding-left:   env(safe-area-inset-left);
  padding-right:  env(safe-area-inset-right);
}
.main { flex: 1 1 auto; }

/* Nếu đang dùng header/footer dính mép, ưu tiên sticky thay vì fixed */
.header { position: sticky; top: 0; }
.footer { position: sticky; bottom: 0; }

/* Modal toàn màn (nếu có) – tránh 100vh cứng */
.modal,
.modal__backdrop {
  min-height: 100vh;
}
@supports (min-height: 100dvh) {
  .modal,
  .modal__backdrop { min-height: 100dvh; }
}
.modal__content {
  max-height: 100%;
  overflow: auto;
}

/* Tránh overflow ẩn toàn cục (chỉ áp khi thực sự cần) */
html, body { overflow-x: hidden; }

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

html {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow: hidden;
    width: 100vw;
    margin: 0;
    padding: 0;
    position: fixed;
    height: 100%;
}

body.is-animating {
    pointer-events: none;
    user-select: none;
}

/* SLIDES WRAPPER - CHUYỂN SECTION */
.slides-wrapper {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    will-change: transform;
    transition: transform var(--anim-duration) var(--anim-easing);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
}
@supports (height: 100dvh) {
    .slides-wrapper {
        height: 100dvh;
    }
}

.slide {
    width: 100vw;
    position: relative;
    overflow: hidden;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}
@supports (height: 100dvh) {
    .slide {
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
    }
}

/* HEADER & LOGO */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 5vw;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(5px);
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
}

.main-header .logo img {
    height: 80px;
    width: auto;
}

/* HERO SECTION */
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
}

.hero-content {
    z-index: 1;

}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-title span {
    display: block;
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: .15em solid var(--accent-color);
    animation: typing 3.5s steps(32, end), blink-caret .75s step-end infinite;
    max-width: 100%;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-color);
    }
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ROADMAP SECTION */
#roadmap-container {
    position: relative;
    background: linear-gradient(160deg, #0A192F 0%, #1a3a7a 100%);
}

.roadmap-track {
    width: 400vw;
    display: flex;
    will-change: transform;
    transition: transform var(--anim-duration) var(--anim-easing);
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
}
@supports (height: 100dvh) {
    .roadmap-track {
        height: 100dvh;
    }
}

.roadmap-stage {
    width: 100vw;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vw;
    gap: 5vw;
    overflow: hidden;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
}
@supports (height: 100dvh) {
    .roadmap-stage {
        height: 100dvh;
    }
}

.roadmap-stage:nth-child(even) {
    flex-direction: row-reverse;
}

.stage-image-wrapper {
    width: 45%;
    height: 60vh;
    max-width: 700px;
    overflow: hidden;
    border-radius: 15px;
}

.stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 4s ease-out;
}

.roadmap-stage.is-active .stage-image {
    transform: scale(1);
}

.stage-content {
    width: 40%;
    max-width: 500px;
}

.stage-year {
    color: var(--accent-color);
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 15px;
}

.stage-goal {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

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

.milestones li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.milestones li span {
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1.2;
}

.milestones li div {
    flex: 1;
}

.challenge {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.challenge h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.anim-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.roadmap-stage.is-active .anim-item:nth-child(1) {
    transition-delay: 0.2s;
}

.roadmap-stage.is-active .anim-item:nth-child(2) {
    transition-delay: 0.3s;
}

.roadmap-stage.is-active .anim-item:nth-child(3) {
    transition-delay: 0.4s;
}

.roadmap-stage.is-active .anim-item:nth-child(4) {
    transition-delay: 0.5s;
}

.roadmap-stage.is-active .anim-item {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.nav-dot:hover {
    transform: scale(1.2);
}

.nav-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.4);
}

/* CLUBS SECTION */
#clubs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 5vw 60px 5vw;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    flex-shrink: 0;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.clubs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.club-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.club-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid rgba(37, 99, 235, 0.5);
    background-color: #fff;
}

.club-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-card p {
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Mobile section navigation - hidden on desktop */
.mobile-section-nav {
    display: none;
}

.mobile-section-btn {
    display: none;
}

/* JOBS SECTION WITH PAGINATION */
#jobs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 5vw 80px 5vw;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0f2350 100%);
}

.jobs-viewport {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    /* Hide overflowing content */
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jobs-track {
    display: flex;
    will-change: transform;
    transition: transform var(--anim-duration) var(--anim-easing);
}

/* Desktop: Show desktop pages, hide mobile pages */
.jobs-page.desktop-page {
    display: grid;
    width: 100%;
    flex-shrink: 0;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns in 1 row */
    grid-template-rows: 1fr;
    /* Single row */
    gap: 30px;
    padding: 0 60px;
    align-items: stretch;
    box-sizing: border-box;
}

.jobs-page.mobile-page {
    display: none;
}

.jobs-page {
    width: 100%;
    flex-shrink: 0;
}

.job-card {
    background: var(--card-bg);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    /* Allow cards to shrink */
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.job-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #e0e0e0;
}

.job-card h3 {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    padding: 15px 10px 10px 10px;
    font-weight: 600;
    line-height: 1.3;
}

.job-card p {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    color: var(--text-secondary);
    padding: 0 10px 15px 10px;
    flex-grow: 1;
    line-height: 1.5;
}

.jobs-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 99, 235, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    color: white;
}

.jobs-nav-btn:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateY(-50%) scale(1.1);
}

.jobs-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.jobs-prev {
    left: 5px;
}

.jobs-next {
    right: 5px;
}

.jobs-pagination {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.jobs-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.jobs-dot:hover {
    transform: scale(1.2);
}

.jobs-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.4);
}

/* DESTINATION SECTION */
#destination {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #0f2350 0%, var(--bg-light) 100%);
}

.destination-content {
    z-index: 1;
}

.destination-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.destination-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
}
@supports (height: 100dvh) {
    .loading-screen {
        height: 100dvh;
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-screen p {
    margin-top: 20px;
    color: var(--text-secondary);
}

/* SNAP CONTAINER - Legacy code (not used in slide mode) */
.snap-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.snap-container::-webkit-scrollbar {
    display: none;
}

/* HEADER & LOGO */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 5vw;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
}

.main-header .logo img {
    height: 70px;
    width: auto;
}

/* HERO & DESTINATION */
#hero,
#destination {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}
@supports (height: 100dvh) {
    #hero,
    #destination {
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
    }
}

#hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: .15em solid var(--accent-color);
    animation: typing 3.5s steps(32, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-color);
    }
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    transform: translateY(-5px);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ROADMAP CUỘN NGANG */
#roadmap-container {
    height: 400vh;
    position: relative;
}

.roadmap-track {
    width: 400vw;
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
}
@supports (height: 100dvh) {
    .roadmap-track {
        height: 100dvh;
    }
}

.roadmap-stage {
    width: 100vw;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vw;
    position: relative;
    gap: 5vw;
    background: linear-gradient(160deg, #0A192F 0%, #1a3a7a 100%);
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
}
@supports (height: 100dvh) {
    .roadmap-stage {
        height: 100dvh;
    }
}

.roadmap-stage:nth-child(even) {
    flex-direction: row-reverse;
}

.stage-image-wrapper {
    width: 45%;
    height: 60vh;
    max-width: 700px;
    overflow: hidden;
    border-radius: 15px;
}

.stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 4s ease-out;
}

.roadmap-stage.is-active .stage-image {
    transform: scale(1);
}

.stage-content {
    width: 40%;
    max-width: 500px;
}

.stage-year {
    color: var(--accent-color);
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 15px;
}

.stage-goal {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

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

.milestones li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.milestones li span {
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1.2;
}

.milestones li div {
    flex: 1;
}

.challenge {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.challenge h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.anim-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.roadmap-stage.is-active .anim-item:nth-child(1) {
    transition-delay: 0.2s;
}

.roadmap-stage.is-active .anim-item:nth-child(2) {
    transition-delay: 0.3s;
}

.roadmap-stage.is-active .anim-item:nth-child(3) {
    transition-delay: 0.4s;
}

.roadmap-stage.is-active .anim-item:nth-child(4) {
    transition-delay: 0.5s;
}

.roadmap-stage.is-active .anim-item {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
    opacity: 0;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-dot:hover {
    transform: scale(1.2);
}

.nav-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.4);
}

/* CÂU LẠC BỘ */
#clubs {
    width: 100vw;
    padding: 80px 5vw 60px 5vw;
    background-color: var(--bg-dark);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    position: relative;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}
@supports (height: 100dvh) {
    #clubs {
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
    }
}

#clubs .section-title {
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

#clubs .clubs-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    padding-top: 16px;
    align-content: flex-start;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 99, 235, 0.3) transparent;
}

#clubs .clubs-grid::-webkit-scrollbar {
    width: 6px;
}

#clubs .clubs-grid::-webkit-scrollbar-track {
    background: transparent;
}

#clubs .clubs-grid::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.3);
    border-radius: 3px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.clubs-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.club-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 320px;
    min-height: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.club-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    border: 3px solid rgba(37, 99, 235, 0.5);
    background-color: #fff;
}

.club-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.club-card p {
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* CƠ HỘI NGHỀ NGHIỆP */
#jobs {
    width: 100vw;
    padding: 80px 5vw 60px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    position: relative;
    /* Dynamic viewport height - Fallback + Modern */
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}
@supports (height: 100dvh) {
    #jobs {
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
    }
}

#jobs .section-title {
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

#jobs .jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    align-content: flex-start;
    padding-bottom: 20px;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 99, 235, 0.3) transparent;
}

#jobs .jobs-grid::-webkit-scrollbar {
    width: 6px;
}

#jobs .jobs-grid::-webkit-scrollbar-track {
    background: transparent;
}

#jobs .jobs-grid::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.3);
    border-radius: 3px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background: var(--card-bg);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.job-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #e0e0e0;
}

.job-card h3 {
    font-size: 1.1rem;
    padding: 15px 15px 10px 15px;
    font-weight: 500;
}

.job-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0 15px 15px 15px;
    flex-grow: 1;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 900px) {

    /* Enable smooth scrolling for mobile */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .hero-content {
        width: 100%;
    }

    /* Keep slide-by-slide on mobile */
    html {
        overflow: hidden;
    }

    body {
        overflow: hidden;
        position: fixed;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Header more compact */
    .main-header {
        padding: 10px 20px;
    }

    .main-header .logo img {
        height: 50px;
    }

    /* Hero section mobile */
    #hero {
        padding: 0 15px;
    }

    .main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.5;
        width: max-content !important;
        margin: auto;
    }

    .subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-top: 15px;
    }

    /* Roadmap mobile - still horizontal scroll */
    .roadmap-stage {
        padding: 80px 20px 40px 20px;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: rgba(37, 99, 235, 0.3) transparent;
    }

    .roadmap-stage::-webkit-scrollbar {
        width: 4px;
    }

    .roadmap-stage::-webkit-scrollbar-track {
        background: transparent;
    }

    .roadmap-stage::-webkit-scrollbar-thumb {
        background: rgba(37, 99, 235, 0.3);
        border-radius: 2px;
    }

    .stage-image-wrapper {
        width: 90%;
        max-width: 400px;
        height: auto;
        max-height: 35vh;
        max-height: 35dvh;
        /* Dynamic viewport height for mobile browsers */
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    .stage-content {
        width: 100%;
        max-width: 500px;
        padding-bottom: 20px;
    }

    .stage-year {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 10px;
    }

    .stage-goal {
        font-size: clamp(0.85rem, 3vw, 1rem);
        margin-bottom: 15px;
    }

    .milestones li {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .milestones li span {
        font-size: 1.2rem;
    }

    .challenge {
        padding: 15px;
        margin-top: 15px;
    }

    .challenge h4 {
        font-size: 0.9rem;
    }

    .challenge p {
        font-size: 0.85rem;
    }

    /* Roadmap nav - show on mobile */
    .roadmap-nav {
        bottom: 15px;
        gap: 12px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    /* Clubs section mobile - Hide title, show 3 clubs */
    #clubs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10vh 15px 15vh 15px;
        padding: 10dvh 15px 15dvh 15px;
        /* Dynamic viewport height for mobile browsers */
        height: 100vh;
        height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
        max-height: 100vh;
        max-height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
        overflow: hidden;
    }

    #clubs .section-title {
        display: none;
    }

    .clubs-grid {
        display: flex;
        flex-direction: column;
        gap: 2vh;
        gap: 2dvh;
        /* Dynamic viewport height for mobile browsers */
        overflow-y: auto;
        overflow-x: hidden;
        width: 100%;
        max-width: 400px;
        height: 100%;
        max-height: 80vh;
        max-height: 80dvh;
        /* Dynamic viewport height for mobile browsers */
        align-items: stretch;
        justify-content: flex-start;
        scrollbar-width: thin;
        scrollbar-color: rgba(37, 99, 235, 0.3) transparent;
        padding: 0;
    }

    .clubs-grid::-webkit-scrollbar {
        width: 4px;
    }

    .clubs-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .clubs-grid::-webkit-scrollbar-thumb {
        background: rgba(37, 99, 235, 0.3);
        border-radius: 2px;
    }

    .club-card {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        min-height: auto;
        max-height: 25vh;
        max-height: 25dvh;
        /* Dynamic viewport height for mobile browsers */
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .club-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
        flex-shrink: 0;
    }

    .club-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
        min-height: auto;
        line-height: 1.2;
        flex-shrink: 0;
    }

    .club-card p {
        font-size: 0.75rem;
        margin-bottom: 10px;
        line-height: 1.3;
        flex-grow: 1;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .club-card .cta-button {
        padding: 6px 16px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    /* Jobs section mobile - 1 job per page */
    #jobs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 15px 100px 15px;
    }

    #jobs .section-title {
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    #jobs .section-title h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    #jobs .section-title p {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }

    /* Mobile section navigation buttons */
    .mobile-section-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: fixed;
        bottom: 25px;
        right: 20px;
        z-index: 200;
    }

    .mobile-section-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.95);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
    }

    .mobile-section-btn:hover {
        background: rgba(37, 99, 235, 1);
        transform: scale(1.05);
    }

    .mobile-section-btn:active {
        transform: scale(0.95);
    }

    .mobile-section-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        background: rgba(37, 99, 235, 0.5);
    }

    .jobs-viewport {
        padding: 0;
        max-height: none;
        width: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .jobs-track {
        width: 100%;
        height: 100%;
        display: flex;
    }

    /* Mobile: Hide desktop pages, show mobile pages */
    .jobs-page.desktop-page {
        display: none;
    }

    .jobs-page.mobile-page {
        display: flex;
        width: 100vw;
        flex-shrink: 0;
        flex-direction: column;
        gap: 0;
        align-items: center;
        justify-content: center;
        overflow: visible;
        max-height: none;
    }

    .jobs-page::-webkit-scrollbar {
        display: none;
    }

    /* Mobile: Each job card takes full viewport width */
    .jobs-page.mobile-page .job-card {
        width: 100%;
        max-width: 400px;
        min-height: auto;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        padding: 0;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        background: var(--card-bg);
        border: 1px solid rgba(37, 99, 235, 0.3);
        border-radius: 15px;
        overflow: hidden;
        margin: 0;
    }

    .jobs-page.mobile-page .job-card>img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: cover;
        border-radius: 15px 15px 0 0;
    }

    .job-card h3 {
        font-size: 1.1rem;
        padding: 15px 15px 10px 15px;
        width: 100%;
        max-width: 340px;
    }

    .job-card p {
        font-size: 0.85rem;
        padding: 0 15px 15px 15px;
        line-height: 1.5;
        width: 100%;
        max-width: 340px;
    }

    /* Hide desktop job navigation */
    .jobs-nav-btn {
        display: none;
    }

    .jobs-pagination {
        margin-top: 20px;
        gap: 10px;
        flex-shrink: 0;
        padding-bottom: 0px !important;
        /* Space for mobile section nav buttons */
    }

    .jobs-dot {
        width: 8px;
        height: 8px;
    }

    /* Destination mobile */
    #destination {
        padding: 0 15px;
    }

    .destination-content h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .destination-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Extra small devices - 480px and below */
@media (max-width: 480px) {
    .main-header .logo img {
        height: 45px;
    }

    .main-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .stage-image-wrapper {
        max-height: 28vh;
        max-height: 28dvh;
        /* Dynamic viewport height for mobile browsers */
        margin-bottom: 15px;
    }

    .stage-year {
        font-size: 1rem;
    }

    .stage-goal {
        font-size: 0.8rem;
    }

    .milestones li {
        margin-bottom: 10px;
        font-size: 0.85rem;
    }

    .milestones li span {
        font-size: 1.1rem;
        margin-right: 10px;
    }

    .challenge {
        padding: 12px;
    }

    .challenge h4 {
        font-size: 0.85rem;
    }

    .challenge p {
        font-size: 0.8rem;
    }

    .jobs-page {
        padding: 0 30px;
    }

    .jobs-nav-btn {
        width: 35px;
        height: 35px;
    }

    .club-card,
    .job-card {
        max-width: 100%;
    }

    .clubs-grid {
        gap: 1.1vh;
        gap: 1.1dvh;
        /* Dynamic viewport height for mobile browsers */
        max-height: 78vh;
        max-height: 78dvh;
        /* Dynamic viewport height for mobile browsers */
    }

    .club-card {
        padding: 12px;
        max-height: 24vh;
        max-height: 24dvh;
        /* Dynamic viewport height for mobile browsers */
    }

    .club-logo {
        width: 55px;
        height: 55px;
    }

    .club-card h3 {
        font-size: 0.95rem;
    }

    .club-card p {
        font-size: 0.75rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .club-card .cta-button {
        padding: 7px 18px;
        font-size: 0.8rem;
    }

    .job-card h3 {
        font-size: 1rem;
        padding: 12px 12px 8px 12px;
    }

    .job-card p {
        font-size: 0.8rem;
        padding: 0 12px 12px 12px;
    }

    .destination-content h2 {
        font-size: 1.6rem;
    }

    .destination-content p {
        font-size: 0.85rem;
    }

    .mobile-section-btn {
        width: 45px;
        height: 45px;
    }

    .jobs-pagination {
        padding-bottom: 65px;
    }
}

/* Small mobile devices - 540px and below */
@media (max-width: 540px) {
    .main-header .logo img {
        height: 48px;
    }

    .main-title {
        font-size: 1.3rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .stage-image-wrapper {
        max-height: 30vh;
        max-height: 30dvh;
        /* Dynamic viewport height for mobile browsers */
    }

    .stage-year {
        font-size: 1.05rem;
    }

    .stage-goal {
        font-size: 0.85rem;
    }

    .milestones li {
        font-size: 0.88rem;
    }

    .clubs-grid {
        gap: 1.4vh;
        gap: 1.4dvh;
        /* Dynamic viewport height for mobile browsers */
        max-height: 80vh;
        max-height: 80dvh;
        /* Dynamic viewport height for mobile browsers */
    }

    .club-card {
        padding: 13px;
        max-height: 25vh;
        max-height: 25dvh;
        /* Dynamic viewport height for mobile browsers */
    }

    .club-logo {
        width: 58px;
        height: 58px;
    }

    .club-card h3 {
        font-size: 0.98rem;
    }

    .club-card p {
        font-size: 0.78rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .job-card h3 {
        font-size: 1.05rem;
    }

    .job-card p {
        font-size: 0.83rem;
    }

    .destination-content h2 {
        font-size: 1.7rem;
    }

    .destination-content p {
        font-size: 0.88rem;
    }
}

/* Very small devices - 420px and below */
@media (max-width: 420px) {
    .main-header {
        padding: 8px 15px;
    }

    .main-header .logo img {
        height: 42px;
    }

    #hero {
        padding: 0 12px;
    }

    .main-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .roadmap-stage {
        padding: 70px 15px 35px 15px;
    }

    .stage-image-wrapper {
        width: 95%;
        max-height: 25vh;
        max-height: 25dvh;
        /* Dynamic viewport height for mobile browsers */
    }

    .stage-year {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .stage-goal {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .milestones li {
        margin-bottom: 8px;
        font-size: 0.8rem;
    }

    .milestones li span {
        font-size: 1rem;
        margin-right: 8px;
    }

    .challenge {
        padding: 10px;
        margin-top: 12px;
    }

    .challenge h4 {
        font-size: 0.8rem;
    }

    .challenge p {
        font-size: 0.75rem;
    }

    #clubs {
        padding: 55px 12px 55px 12px;
    }

    .clubs-grid {
        gap: 1vh;
        gap: 1dvh;
        /* Dynamic viewport height for mobile browsers */
        max-height: 78vh;
        max-height: 78dvh;
        /* Dynamic viewport height for mobile browsers */
        padding: 0 !important;
    }

    .club-card {
        padding: 10px;
        max-width: 350px;
        max-height: 24vh;
        max-height: 24dvh;
        /* Dynamic viewport height for mobile browsers */
    }

    .club-logo {
        width: 50px;
        height: 50px;
    }

    .club-card h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .club-card p {
        font-size: 0.72rem;
        margin-bottom: 8px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .club-card .cta-button {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    #jobs {
        padding: 70px 12px 90px 12px;
    }

    #jobs .section-title h2 {
        font-size: 1.2rem;
    }

    #jobs .section-title p {
        font-size: 0.75rem;
        padding: 0 5px;
    }

    .jobs-page.mobile-page .job-card {
        max-width: 350px;
    }

    .job-card h3 {
        font-size: 0.95rem;
        padding: 10px 10px 8px 10px;
    }

    .job-card p {
        font-size: 0.75rem;
        padding: 0 10px 10px 10px;
    }

    .destination-content h2 {
        font-size: 1.4rem;
    }

    .destination-content p {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .mobile-section-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .mobile-section-nav {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .jobs-pagination {
        padding-bottom: 60px;
        gap: 8px;
    }

    .jobs-dot {
        width: 7px;
        height: 7px;
    }

    .nav-dot {
        width: 9px;
        height: 9px;
    }

    .roadmap-nav {
        bottom: 12px;
        gap: 10px;
    }
}

/* Ultra small devices - 375px and below (iPhone SE, small phones) */
@media (max-width: 376px) {
    .clubs-grid {
        gap: 1vh !important;
        gap: 1dvh !important;
        /* Dynamic viewport height for mobile browsers */
        max-height: 80vh;
        max-height: 80dvh;
        /* Dynamic viewport height for mobile browsers */
        padding: 0 !important;
    }

    .cta-button,
    .nav-dot {
        min-width: 44px;
        min-height: 32px;
    }

    .main-header {
        padding: 6px 12px;
    }

    .main-header .logo img {
        height: 38px;
    }

    #hero {
        padding: 0 10px;
    }

    .main-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .main-title span {
        word-break: break-word;
    }

    .subtitle {
        font-size: 0.75rem;
    }

    .scroll-down-indicator {
        bottom: 20px;
    }

    .roadmap-stage {
        padding: 65px 12px 30px 12px;
    }

    .stage-image-wrapper {
        width: 98%;
        max-height: 22vh;
        max-height: 22dvh;
        /* Dynamic viewport height for mobile browsers */
        margin-bottom: 12px;
    }

    .stage-year {
        font-size: 0.9rem;
        margin-bottom: 6px;
        word-break: break-word;
    }

    .stage-goal {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .milestones {
        margin-bottom: 15px;
    }

    .milestones li {
        margin-bottom: 7px;
        font-size: 0.75rem;
    }

    .milestones li span {
        font-size: 0.95rem;
        margin-right: 7px;
        flex-shrink: 0;
    }

    .milestones li div {
        word-break: break-word;
    }

    .challenge {
        padding: 8px;
        margin-top: 10px;
    }

    .challenge h4 {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }

    .challenge p {
        font-size: 0.7rem;
    }

    #clubs {
        padding: 50px 10px 50px 10px;
    }

    .club-card {
        padding: 8px;
        max-width: 320px;
    }

    .club-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 6px;
    }

    .club-card h3 {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .club-card p {
        font-size: 0.68rem;
        margin-bottom: 8px;
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }

    .club-card .cta-button {
        padding: 5px 12px;
        font-size: 0.68rem;
    }

    #jobs {
        padding: 65px 10px 85px 10px;
    }

    #jobs .section-title {
        margin-bottom: 15px;
    }

    #jobs .section-title h2 {
        font-size: 1.1rem;
    }

    #jobs .section-title p {
        font-size: 0.7rem;
    }

    .jobs-page.mobile-page .job-card {
        width: 95%;
    }

    .job-card h3 {
        font-size: 0.9rem;
        padding: 8px 8px 6px 8px;
        word-break: break-word;
    }

    .job-card p {
        font-size: 0.7rem;
        padding: 0 8px 8px 8px;
        line-height: 1.4;
    }

    .destination-content h2 {
        font-size: 1.3rem;
        word-break: break-word;
    }

    .destination-content p {
        font-size: 0.75rem;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .mobile-section-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .mobile-section-nav {
        bottom: 18px;
        right: 12px;
        gap: 8px;
    }

    .jobs-pagination {
        padding-bottom: 65px;
        gap: 10px;
    }

    .jobs-dot {
        width: 10px;
        height: 10px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .roadmap-nav {
        bottom: 10px;
        gap: 10px;
    }
}