:root {
    --color-bg: #000;
    --color-text: #fff;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    overflow-y: scroll;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: auto;
}

main {
    display: flex;
    flex-direction: column;
    row-gap: 0;
}

/* Header Styles */
.header {
    width: 100%;
    padding: 12px 40px;
    position: absolute;
    top: 330px;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Styles */
.logo {
    font-size: 9rem;
    font-weight: 400;
    font-family: 'Allura', cursive;
    color: var(--color-text);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--color-bg);
    min-height: 155vh;
    padding-top: 80px;
}

.hero-asset {
    position: absolute;
}

/* Hand Holding Phone */
.hand-phone {
    top: 150px;
    left: calc(50% - 569px);
    z-index: 1001;
    width: 900px;
}

.hand-phone img {
    object-fit: contain;
}

/* Phone Screen Text Overlay */
.phonetext {
    top: 332px;
    left: calc(50% - 277px);
    z-index: 1002;
    width: 170px;
    pointer-events: none;
}

/* Explorer Window */
.explorer-window {
    position: relative;
    width: min(100%, 1070px);
    margin: 600px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1003;
    top: 190px;
}

.explorer-window img {
    width: 100%;
    height: auto;
}

/* Navigation Buttons */

/* ID Lanyard */
.id-lanyard {
    left: calc(50% - 1100px);
    top: 940px;
    width: 400px;
    z-index: 1005;
}

.id-lanyard img {
    width: 100%;
    height: auto;
    display: block;
}

/* ID Design Section */
.id-design-section {
    min-height: 100vh;
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
}

.id-design-text {
    font-size: 6rem;
    letter-spacing: 0.02em;
    font-family: 'Reddit Sans', sans-serif;
    margin-top: 30px;
    margin-left: 75px;
}

/* Logos Section */
.logos-area {
    position: relative;
    background-color: #fff;
    padding: 80px 0 10vh 0;
    --before-opacity: 1;
}

.logos-area::before {
    content: 'LOGOS';
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #000;
    letter-spacing: 0.02em;
    position: absolute;
    top: 10px;
    left: clamp(86px, 8vw, 166px);
    z-index: 1009;
    opacity: var(--before-opacity);
}

.logos-text {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #000;
    letter-spacing: 0.02em;
    position: static;
    top: auto;
    margin-left: clamp(86px, 8vw, 166px);
    width: fit-content;
    z-index: 1010;
}

.logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 0 20px 20px 20px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.rocketsnip-logo {
    width: 510px;
    max-width: 90%;
}

.rocketsnip-logo img {
    width: 100%;
    height: auto;
}

/* RS Logo Section background */
.rs-logo-section {
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
}

.ad-logo-section {
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
}

.annies-donuts-logo {
    width: 860px;
    max-width: 90%;
}

.annies-donuts-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Logos Section (Reversed) */
.logos-area-reversed {
    position: relative;
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.logos-text-reversed {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #000;
    letter-spacing: 0.02em;
    position: static;
    top: auto;
    margin-left: clamp(86px, 8vw, 166px);
    width: fit-content;
    z-index: 1010;
}

/* Posters Section */
.posters-section {
    background: linear-gradient(90deg, #f28cb1 0%, #f28cb1 50%, #e24a1f 50%, #e24a1f 100%);
    position: relative;
    padding: 80px 0 10vh 0;
    --posters-before-opacity: 1;
}

.posters-section::before {
    content: 'POSTERS & COVER ART';
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 0.02em;
    position: absolute;
    top: 10px;
    left: clamp(86px, 8vw, 166px);
    z-index: 1009;
    opacity: var(--posters-before-opacity);
}

.posters-text {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: #fff;
    position: static;
    top: auto;
    margin-left: clamp(86px, 8vw, 166px);
    width: fit-content;
    z-index: 1010;
}

.posters-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px 20px 20px;
    min-height: 460px;
}

.posters-left,
.posters-right,
.posters-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.posters-right {
    position: relative;
    flex-direction: column;
}

.posters-left img {
    max-width: 256px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.posters-right img {
    max-width: 256px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.posters-center img {
    max-width: 256px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Cover Art Section */
.cover-art-section {
    background-color: #fff;
    position: relative;
    padding: 80px 0 10vh 0;
    --cover-art-before-opacity: 1;
}

.cover-art-section::before {
    content: 'UI/UX DESIGN';
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #000;
    letter-spacing: 0.02em;
    position: absolute;
    top: 10px;
    left: clamp(86px, 8vw, 166px);
    z-index: 1009;
    opacity: var(--cover-art-before-opacity);
}

.cover-art-text {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: #000;
    position: static;
    top: auto;
    margin-left: clamp(86px, 8vw, 166px);
    width: fit-content;
    z-index: 1010;
}

.cover-art-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
}

/* Print Work / Brochures Section */
.print-work-section {
    background-color: #000;
    position: relative;
    padding: 80px 0 10vh 0;
    --print-work-before-opacity: 1;
}

.print-work-section::before {
    content: 'PRINT WORK / BROCHURES';
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 0.02em;
    position: absolute;
    top: 10px;
    left: clamp(86px, 8vw, 166px);
    z-index: 1009;
    opacity: var(--print-work-before-opacity);
}

.print-work-text {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: #fff;
    position: static;
    top: auto;
    margin-left: clamp(86px, 8vw, 166px);
    width: fit-content;
    z-index: 1010;
}

.print-work-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 120px auto 0;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
}

.print-work-content img {
    max-width: 112px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Extras Section */
.extras-section {
    background-color: #fff;
    position: relative;
    padding: 80px 0 10vh 0;
    --extras-before-opacity: 1;
}

.extras-section::before {
    content: 'EXTRAS';
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #000;
    letter-spacing: 0.02em;
    position: absolute;
    top: 10px;
    left: clamp(86px, 8vw, 166px);
    z-index: 1009;
    opacity: var(--extras-before-opacity);
}

.extras-text {
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: #000;
    position: static;
    top: auto;
    margin-left: clamp(86px, 8vw, 166px);
    width: fit-content;
    z-index: 1010;
}

.extras-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
}

/* Feature Sections */

/* Gradient Line */
.gradient-line {
    width: 1px;
    height: 405px;
    position: absolute;
    z-index: 1006;
    pointer-events: none;
}

.gradient-line-1 {
    left: 245px;
    top: calc(100vh * 2 + 320px);
    display: none;
}

.gradient-line img {
    width: 2px;
    height: 100%;
    object-fit: cover;
}

/* Content Section */
.content-section {
    min-height: 100vh;
    background-color: var(--color-bg);
    padding: 50px 20px;
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    right: 28px;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.nav-dot-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    cursor: pointer;
}

.nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #000;
    border: 1.25px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.nav-dot-label {
    font-family: 'Reddit Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #000;
    text-transform: uppercase;
    text-align: right;
    cursor: pointer;
}

.nav-dot-label.dark {
    color: #000;
}

.nav-dot-item:hover .nav-dot-label {
    color: #ff8c00;
}

.nav-dot-item:hover .nav-dot {
    transform: scale(1.2);
    background-color: #ff8c00;
    border-color: #ff8c00;
}

.nav-dot.dark {
    background-color: #000;
    border-color: #000;
}

.nav-dot.active {
    background-color: #ff8c00;
    border-color: #ff8c00;
}

.nav-dot.dark.active {
    background-color: #ff8c00;
    border-color: #ff8c00;
}

/* Media Queries for different desktop resolutions */
/* 2560x1440 and similar resolution styles */
@media (max-width: 2560px) {
    /* Header adjustments */
    .header {
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .logo {
        font-size: 10rem;
        color: #000;
        text-align: center;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 100vh;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }


    /* Hero Section adjustments */
    .hand-phone {
        display: none;
    }

    .phonetext {
        display: none;
    }

    /* Logos Section */
    .logos-area {
        background-color: #fff;
        position: relative;
        padding: 40px 0 100px 0;
        min-height: 150vh;
        --before-opacity: 1;
    }

    .logos-area::before {
        display: none;
    }

    .logos-text {
        display: none;
    }

    .logos-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 60px 80px 60px 80px;
        max-width: 1800px;
        margin: 0 auto;
        align-items: center;
        justify-items: center;
    }

    .rocketsnip-logo {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .annies-donuts-logo,
    .work-image {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .logos-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    .logos-container > div:nth-child(7) {
        max-width: 500px;
    }

    .logos-container .fade-in-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Logos Section (Reversed) - Responsive */
    .logos-area-reversed {
        background-color: #fff;
        position: relative;
        min-height: 70vh;
        --before-opacity: 1;
    }

    .logos-area-reversed::before {
        content: 'LOGOS';
        font-family: 'Reddit Sans', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #000;
        letter-spacing: 0.02em;
        position: absolute;
        top: 10px;
        left: clamp(70px, 7vw, 140px);
        z-index: 1009;
        opacity: var(--before-opacity);
    }

    .logos-text-reversed {
        font-size: 2.5rem;
        position: static;
        top: auto;
        margin-left: clamp(70px, 7vw, 140px);
        color: #000;
    }

    /* Posters Section */
    .posters-section {
        background: #fff;
        position: relative;
        padding: 80px 0 10vh 0;
        --posters-before-opacity: 1;
    }

.posters-section::before {
        display: none;
    }

    .posters-text {
        display: none;
    }

    .posters-content {
        display: none;
    }

    /* Cover Art Section */
    .cover-art-section {
        background-color: #fff;
        position: relative;
        padding: 80px 0 10vh 0;
        --cover-art-before-opacity: 1;
    }

    .cover-art-section::before {
        display: none;
    }

    .cover-art-text {
        display: none;
    }

    .cover-art-content {
        display: none;
    }

    /* Print Work / Brochures Section */
    .print-work-section {
        background-color: #fff;
        position: relative;
        padding: 80px 0 10vh 0;
        --print-work-before-opacity: 1;
    }

    .print-work-section::before {
        content: 'PRINT WORK / BROCHURES';
        font-family: 'Reddit Sans', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #000;
        letter-spacing: 0.02em;
        position: absolute;
        top: 10px;
        left: clamp(70px, 7vw, 140px);
        z-index: 1009;
        opacity: var(--print-work-before-opacity);
    }

    .print-work-text {
        font-family: 'Reddit Sans', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #000;
        letter-spacing: 0.02em;
        position: static;
        top: auto;
        margin-left: clamp(70px, 7vw, 140px);
        width: fit-content;
        z-index: 1010;
    }

    .print-work-content {
        display: none;
    }

    /* Extras Section */
    .extras-section {
        background-color: #fff;
        position: relative;
        padding: 80px 0 10vh 0;
        --extras-before-opacity: 1;
    }

    .extras-section::before {
        display: none;
    }

    .extras-text {
        display: none;
    }

    .extras-content {
        display: flex;
        width: 100%;
        max-width: 1200px;
        margin: 60px auto 0;
        min-height: 350px;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 0 20px;
    }

    /* Gradient Line */
    .gradient-line-1 {
        left: 200px;
        top: calc(100vh * 2 + 280px);
    }

    /* Section Indicator Dots */
    .section-indicator {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1500;
    }

    .indicator-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #d3d3d3;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        outline: none;
        margin: 0;
        padding: 0;
    }

    .indicator-dot:focus {
        outline: none;
    }

    .indicator-dot.active {
        background-color: #1316da;
        width: 7px;
        height: 7px;
        border: none;
        outline: none;
        margin: 0;
        padding: 0;
    }

    /* Navigation Dots */
    .nav-dots {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        z-index: 2000;
        display: flex;
        flex-direction: row;
        gap: 25px;
        background-color: #fff;
        padding: 15px 20px;
        justify-content: center;
        box-shadow: none;
        align-items: center;
    }

    .nav-dot-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
    }

    .nav-dot {
        display: none;
    }

    .nav-dot-label {
        font-family: 'Reddit Sans', sans-serif;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        color: #000;
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        transition: color 0.3s ease;
        order: 2;
    }

    .nav-dot-label.dark {
        color: #000;
    }

    .nav-dot-item:hover .nav-dot-label {
        color: #ff8c00;
    }

    .nav-dot-item:has(.nav-dot.active) .nav-dot-label {
        color: #ff8c00;
    }

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

    .nav-dot.dark {
        background-color: #000;
        border-color: #000;
    }

    .nav-dot.active {
        background-color: #ff8c00;
        border-color: #ff8c00;
    }

    .nav-dot.dark.active {
        background-color: #ff8c00;
        border-color: #ff8c00;
    }
}

/* 1920x1080 and similar resolution styles */
@media (max-width: 1920px) {
    /* Add specific adjustments for 1920x1080 screens here if needed */
    /* Currently inheriting most styles from default (2560x1440) */
}

@media (max-width: 1280px) {
    /* Header adjustments */
    .header {
        top: 220px;
    }

    .logo {
        font-size: 6rem;
        color: #000;
    }

    /* Hero Section */
    .hero {
        min-height: 90vh;
        background-color: #fff;
    }


    /* Hero Section adjustments */
    .hand-phone {
        display: none;
    }

    .phonetext {
        display: none;
    }

    /* Logos Section */
    .logos-area {
        background-color: #fff;
        position: relative;
        padding: 40px 0 100px 0;
        min-height: 150vh;
        --before-opacity: 1;
    }

    .logos-area::before {
        display: none;
    }

    .logos-text {
        display: none;
    }

    .logos-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        padding: 30px 40px 30px 40px;
        max-width: 1100px;
        margin: 0 auto;
        align-items: center;
        justify-items: center;
    }

    .rocketsnip-logo {
        width: 100%;
        max-width: 120px;
        height: auto;
    }

    .annies-donuts-logo,
    .work-image {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .logos-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    .logos-container > div:nth-child(7) {
        max-width: 320px;
    }

    .logos-container .fade-in-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Logos Section (Reversed) - Responsive */
    .logos-area-reversed {
        background-color: #fff;
        position: relative;
        min-height: 70vh;
        --before-opacity: 1;
    }

    .logos-area-reversed::before {
        content: 'LOGOS';
        font-family: 'Reddit Sans', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #000;
        letter-spacing: 0.02em;
        position: absolute;
        top: 10px;
        left: clamp(70px, 7vw, 140px);
        z-index: 1009;
        opacity: var(--before-opacity);
    }

    .logos-text-reversed {
        font-size: 2.5rem;
        position: static;
        top: auto;
        margin-left: clamp(70px, 7vw, 140px);
        color: #000;
    }

    /* Posters Section */
    .posters-section {
        background: #fff;
        position: relative;
        padding: 80px 0 10vh 0;
        --posters-before-opacity: 1;
    }

.posters-section::before {
        display: none;
    }

    .posters-text {
        display: none;
    }

    .posters-content {
        display: none;
    }

    /* Cover Art Section */
    .cover-art-section {
        background-color: #fff;
        position: relative;
        padding: 80px 0 10vh 0;
        --cover-art-before-opacity: 1;
    }

    .cover-art-section::before {
        display: none;
    }

    .cover-art-text {
        display: none;
    }

    .cover-art-content {
        display: none;
    }

    /* Print Work / Brochures Section */
    .print-work-section {
        background-color: #fff;
        position: relative;
        padding: 80px 0 10vh 0;
        --print-work-before-opacity: 1;
    }

    .print-work-section::before {
        content: 'PRINT WORK / BROCHURES';
        font-family: 'Reddit Sans', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #000;
        letter-spacing: 0.02em;
        position: absolute;
        top: 10px;
        left: clamp(70px, 7vw, 140px);
        z-index: 1009;
        opacity: var(--print-work-before-opacity);
    }

    .print-work-text {
        font-family: 'Reddit Sans', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #000;
        letter-spacing: 0.02em;
        position: static;
        top: auto;
        margin-left: clamp(70px, 7vw, 140px);
        width: fit-content;
        z-index: 1010;
    }

    .print-work-content {
        display: none;
    }

    /* Extras Section */
    .extras-section {
        background-color: #fff;
        position: relative;
        padding: 80px 0 10vh 0;
        --extras-before-opacity: 1;
    }

    .extras-section::before {
        display: none;
    }

    .extras-text {
        display: none;
    }

    .extras-content {
        display: flex;
        width: 100%;
        max-width: 1200px;
        margin: 60px auto 0;
        min-height: 350px;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 0 20px;
    }

    /* Gradient Line */
    .gradient-line-1 {
        left: 200px;
        top: calc(100vh * 2 + 280px);
    }

    /* Section Indicator Dots */
    .section-indicator {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1500;
    }

    .indicator-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #d3d3d3;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        outline: none;
        margin: 0;
        padding: 0;
    }

    .indicator-dot:focus {
        outline: none;
    }

    .indicator-dot.active {
        background-color: #1316da;
        width: 7px;
        height: 7px;
        border: none;
        outline: none;
        margin: 0;
        padding: 0;
    }

    /* Navigation Dots */
    .nav-dots {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        z-index: 2000;
        display: flex;
        flex-direction: row;
        gap: 15px;
        background-color: #fff;
        padding: 8px 10px;
        justify-content: center;
        box-shadow: none;
        align-items: center;
    }

    .nav-dot-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .nav-dot {
        display: none;
    }

    .nav-dot-label {
        font-family: 'Reddit Sans', sans-serif;
        font-size: 0.6rem;
        letter-spacing: 0.05em;
        color: #000;
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        transition: color 0.3s ease;
        order: 2;
    }

    .nav-dot-label.dark {
        color: #000;
    }

    .nav-dot-item:hover .nav-dot-label {
        color: #ff8c00;
    }

    .nav-dot-item:has(.nav-dot.active) .nav-dot-label {
        color: #ff8c00;
    }

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

    .nav-dot.dark {
        background-color: #000;
        border-color: #000;
    }

    .nav-dot.active {
        background-color: #ff8c00;
        border-color: #ff8c00;
    }

    .nav-dot.dark.active {
        background-color: #ff8c00;
        border-color: #ff8c00;
    }
}
