:root {
    --accent: #F25E12;
    --bg-primary: #1E1E1E;
    --bg-secondary: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-muted: #999999;
    --border-color: #3A3A3A;
    --font-body: 'Outfit', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, .label, .slide-num-top {
    font-family: var(--font-heading);
}

.accent {
    color: var(--accent);
}

.label {
    color: var(--accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.container {
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

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

.slide {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 10vw;
}

.content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--accent);
    width: 0%;
    z-index: 100;
    transition: width 0.1s ease-out;
}

.dot-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.slide-counter {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--text-muted);
    z-index: 100;
    font-weight: 500;
}

.slide-counter .current {
    color: var(--accent);
}

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

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 150ms; }
.delay-2 { transition-delay: 300ms; }
.delay-3 { transition-delay: 450ms; }
.delay-4 { transition-delay: 600ms; }

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
}

.hero-text-col .divider {
    margin: 0 0 2rem 0;
}

.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-height: 70vh;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(242, 94, 18, 0.15));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 auto 2rem auto;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.bg-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -4px;
    opacity: 0.7;
}

.chevron {
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    animation: chevronBounce 2s infinite;
}

.chevron:nth-child(2) {
    animation-delay: 0.2s;
    margin-top: -8px;
}

@keyframes chevronBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.3; }
    40% { transform: translateY(-10px) rotate(45deg); opacity: 1; }
    60% { transform: translateY(-5px) rotate(45deg); opacity: 0.8; }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 3rem;
    font-weight: 700;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background-color: var(--bg-secondary);
    border-left: 3px solid var(--accent);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

.card-image-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.card-img-placeholder {
    position: relative;
    height: 220px;
    background-color: var(--border-color);
    border-radius: 6px;
    margin-top: auto;
    overflow: hidden;
    border: 1px dashed rgba(242, 94, 18, 0.3);
}

.card-img-placeholder span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.card-img-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.gallery {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.gallery-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 202;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.gallery-close:hover {
    background: var(--accent);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 202;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
}

.gallery-arrow:hover {
    background: var(--accent);
    opacity: 1;
}

.gallery-prev { left: 1.5rem; }
.gallery-next { right: 1.5rem; }

.gallery-image-wrap {
    position: relative;
    z-index: 201;
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.25s ease;
}

/* Gallery Info Bar */
.gallery-info {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 202;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80vw;
}

.gallery-info-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: background 0.2s ease;
    position: relative;
}

.gallery-info-trigger:hover {
    background: #333333;
}

.gallery-info-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.gallery-info-icon {
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.gallery-info-trigger:hover .gallery-info-icon {
    color: var(--text-primary);
}

.gallery-info-tooltip {
    max-width: 480px;
    width: max-content;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    text-align: center;
}

.gallery-info-trigger:hover + .gallery-info-tooltip,
.gallery-info-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.gallery-footer {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 202;
}

.gallery-counter {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.modal-controls {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.4rem;
    flex-shrink: 0;
}

.modal-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.modal-content {
    position: relative;
    max-width: 80vw;
    max-height: 80vh;
    z-index: 201;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.15s ease-out;
    transform-origin: center center;
    cursor: zoom-in;
}

.modal-content:active {
    cursor: grabbing;
}

.modal-img-placeholder {
    width: 60vw;
    height: 60vh;
    background-color: var(--bg-secondary);
    border: 2px dashed var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img-placeholder span {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-img-placeholder img,
.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 800px;
    margin-bottom: 3rem;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.challenge-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: rgba(42, 42, 42, 0.3);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    transition: background-color 0.3s ease;
}

.challenge-block:hover {
    background-color: var(--bg-secondary);
}

.challenge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.challenge-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.challenge-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Slide 4 — Role Split Layout */
.role-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.role-text-col {
    display: flex;
    flex-direction: column;
}

.role-text-col .timeline-label {
    margin-bottom: 0.75rem;
}

.role-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.role-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

.role-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.role-image {
    max-height: 60vh;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.4));
}

.timeline-label {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.slide-num-top {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.resource-group-title {
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-secondary);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    text-decoration: none;
    color: var(--text-primary);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.resource-link:hover {
    background-color: #333333;
    transform: translateX(4px);
}

.resource-link-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.resource-link-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
}

.resource-link-org {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.resource-link-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 1rem;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent);
}

/* ═══ TABLET (768px – 1024px) ═══ */
@media (max-width: 1024px) {
    .slide {
        padding: 3.5rem 6vw;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 1.5rem;
        padding: 2rem;
    }

    .card-number {
        grid-row: 1 / -1;
        font-size: 2.5rem;
        display: flex;
        align-items: center;
    }

    .card h3 {
        margin-bottom: 0.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .team-card {
        padding: 1.5rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }

    .role-split {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .role-heading {
        font-size: 1.35rem;
    }

    .role-description {
        font-size: 1rem;
    }

    .resources-grid {
        gap: 2rem;
    }

    .dot-nav {
        right: 1rem;
        gap: 0.75rem;
    }

    .gallery-info {
        max-width: 70vw;
    }

    .gallery-info-tooltip {
        max-width: 400px;
    }
}

/* ═══ SMALL TABLET / LARGE PHONE (481px – 768px) ═══ */
@media (max-width: 768px) {
    .container {
        scroll-snap-type: y proximity;
    }

    .slide {
        padding: 3rem 7vw;
        justify-content: flex-start;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    #slide-1 {
        justify-content: center;
        padding-top: 3rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text-col .divider {
        margin: 0 auto 1.5rem auto;
    }

    .hero-image {
        max-height: 40vh;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5.5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .bg-number {
        font-size: 50vw;
    }

    /* Cards — full width stacked */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.9375rem;
    }

    .challenge-block {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .challenge-number {
        font-size: 1.5rem;
    }

    .challenge-content h3 {
        font-size: 1.1rem;
    }

    .challenge-content p {
        font-size: 0.9375rem;
    }

    .role-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

.role-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.role-list li {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.role-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.role-list li strong {
    color: var(--text-primary);
}

.role-image-col {
        order: -1;
    }

    .role-image {
        max-height: 35vh;
        width: auto;
    }

    .role-heading {
        font-size: 1.2rem;
    }

    .role-list li {
        font-size: 0.9375rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resource-link {
        padding: 1rem 1.25rem;
    }

    .resource-link-name {
        font-size: 1rem;
    }

    /* Nav */
    .dot-nav {
        display: none;
    }

    .slide-counter {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9375rem;
    }

    .scroll-indicator {
        bottom: 1.25rem;
    }

    .footer {
        padding: 1rem;
        font-size: 0.8125rem;
    }

    .gallery-info {
        max-width: 85vw;
        bottom: 4rem;
    }

    .gallery-info-title {
        font-size: 0.8125rem;
    }

    .gallery-info-tooltip {
        max-width: 85vw;
        font-size: 0.8125rem;
    }
}

/* ═══ MOBILE (max 480px) ═══ */
@media (max-width: 480px) {
    .container {
        scroll-snap-type: none;
    }

    .slide {
        padding: 2.5rem 5vw;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        scroll-snap-align: none;
    }

    #slide-1 {
        padding-top: 2.5rem;
    }

    .hero-split {
        gap: 1.25rem;
    }

    .hero-image {
        max-height: 30vh;
    }

    .hero-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .divider {
        width: 50px;
        margin-bottom: 1.25rem;
    }

    .section-title {
        font-size: clamp(1.2rem, 5.5vw, 1.6rem);
        margin-bottom: 1.25rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .label {
        font-size: 0.6875rem;
        letter-spacing: 0.12em;
    }

    .bg-number {
        font-size: 60vw;
    }

    /* Cards — compact stacked */
    .card {
        display: flex;
        flex-direction: column;
        padding: 1.25rem;
    }

    .card-number {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .card p {
        font-size: 0.875rem;
    }

    .challenge-block {
        padding: 1rem;
        gap: 1rem;
    }

    .challenge-number {
        font-size: 1.25rem;
    }

    .challenge-content h3 {
        font-size: 1rem;
    }

    .challenge-content p {
        font-size: 0.875rem;
    }

    .role-split {
        gap: 1.5rem;
    }

    .role-image {
        max-height: 30vh;
    }

    .role-heading {
        font-size: 1.05rem;
    }

    .role-list li {
        font-size: 0.875rem;
    }

    .timeline-label {
        font-size: 0.75rem;
    }

    /* QR / Close */
    .slide-num-top {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .resource-link {
        padding: 0.875rem 1rem;
    }

    .resource-link-name {
        font-size: 0.9375rem;
    }

    .resource-group-title {
        font-size: 0.875rem;
    }

    .footer {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .slide-counter {
        font-size: 0.8125rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .chevron {
        width: 12px;
        height: 12px;
    }

    .gallery-info {
        max-width: 90vw;
        bottom: 3.5rem;
    }

    .gallery-info-trigger {
        padding: 0.4rem 1rem;
    }

    .gallery-info-title {
        font-size: 0.75rem;
    }

    .gallery-info-icon {
        font-size: 0.875rem;
    }

    .gallery-info-tooltip {
        max-width: 90vw;
        font-size: 0.8125rem;
        padding: 0.75rem 1rem;
    }
}