/* NewKirillSocial6 — marble / emerald / navy / gold */

:root {
    --navy-deep: #060d18;
    --navy-mid: #0c1f3a;
    --emerald-deep: #0d3d28;
    --emerald-bright: #1e6b4a;
    --emerald-glow: #3a9d72;
    --accent: #e8c547;
    --accent-soft: #fbc02d;
    --text: #f4f7f5;
    --text-muted: rgba(244, 247, 245, 0.74);
    --light-section: #f2f6f4;
    --light-text: #13221a;
    --radius: 22px;
    --radius-card: 24px;
    --shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
    --shadow-soft: 0 8px 32px rgba(12, 31, 58, 0.2);
    --glow-gold: 0 0 40px rgba(232, 197, 71, 0.35);
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --max: 1180px;
    --header-h: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--navy-deep);
    line-height: 1.58;
    overflow-x: hidden;
}

a {
    color: var(--accent-soft);
    text-decoration: none;
    transition:
        color 0.2s,
        transform 0.2s;
}

a:hover {
    color: #fff2b3;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Fejléc + figyelmeztetés --- */
.header-stack {
    position: relative;
    z-index: 200;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

/* --- Nagyon feltűnő figyelmeztetés --- */
.warning-strip {
    background: linear-gradient(90deg, #1a237e 0%, #0d47a1 35%, #1565c0 65%, #1a237e 100%);
    color: #fff;
    text-align: center;
    padding: 16px 18px;
    font-weight: 800;
    font-size: clamp(1rem, 2.8vw, 1.22rem);
    letter-spacing: 0.03em;
    border-bottom: 4px solid var(--accent);
    box-shadow:
        0 0 0 2px rgba(232, 197, 71, 0.5),
        0 6px 28px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: warning-pulse 3.2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.12);
    }
}

.warning-strip svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.warning-strip span strong {
    color: #ffee58;
    text-shadow: 0 0 12px rgba(255, 238, 88, 0.6);
}

/* --- CSS fénykörök --- */
.bg-orbits {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}

.bg-orbits .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.48;
    animation: float-orb 22s ease-in-out infinite;
}

.bg-orbits .orb:nth-child(1) {
    width: min(480px, 90vw);
    height: min(480px, 90vw);
    background: radial-gradient(
        circle,
        rgba(232, 197, 71, 0.5) 0%,
        transparent 68%
    );
    top: 5%;
    left: -8%;
    animation-delay: 0s;
}

.bg-orbits .orb:nth-child(2) {
    width: min(400px, 80vw);
    height: min(400px, 80vw);
    background: radial-gradient(
        circle,
        rgba(56, 142, 108, 0.55) 0%,
        transparent 70%
    );
    bottom: 10%;
    right: -10%;
    animation-delay: -7s;
}

.bg-orbits .orb:nth-child(3) {
    width: min(320px, 65vw);
    height: min(320px, 65vw);
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.14) 0%,
        transparent 72%
    );
    top: 42%;
    left: 35%;
    animation-delay: -14s;
}

.bg-orbits .orb:nth-child(4) {
    width: min(260px, 50vw);
    height: min(260px, 50vw);
    background: radial-gradient(
        circle,
        rgba(12, 31, 58, 0.65) 0%,
        transparent 65%
    );
    top: 60%;
    left: -5%;
    animation-delay: -4s;
    opacity: 0.35;
}

.bg-orbits .orb:nth-child(5) {
    width: min(200px, 40vw);
    height: min(200px, 40vw);
    background: radial-gradient(
        circle,
        rgba(232, 197, 71, 0.35) 0%,
        transparent 70%
    );
    top: 15%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float-orb {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(4%, -5%) scale(1.05);
    }
    66% {
        transform: translate(-3%, 4%) scale(0.97);
    }
}

/* --- Fejléc --- */
.site-header {
    background: linear-gradient(
        180deg,
        rgba(6, 13, 24, 0.97) 0%,
        rgba(12, 31, 58, 0.9) 100%
    );
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 197, 71, 0.2);
}

.site-header__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo-link img {
    border-radius: 50%;
    box-shadow: var(--glow-gold);
    animation: logo-glow 4s ease-in-out infinite;
}

@keyframes logo-glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(232, 197, 71, 0.35);
    }
    50% {
        box-shadow: 0 0 36px rgba(232, 197, 71, 0.55);
    }
}

.nav-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 14px;
}

.nav-main a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 10px;
    border-radius: 999px;
    transition:
        color 0.2s,
        background 0.2s;
}

.nav-main a:hover {
    color: var(--text);
    background: rgba(232, 197, 71, 0.12);
}

.nav-main a.is-active {
    color: var(--accent);
    background: rgba(232, 197, 71, 0.18);
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent) 0%, #c9a227 100%);
    color: var(--navy-deep) !important;
    padding: 10px 18px !important;
    font-weight: 700 !important;
    box-shadow: var(--glow-gold);
}

.btn-nav:hover {
    color: var(--navy-deep) !important;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .nav-main {
        justify-content: center;
    }

    .site-header__inner {
        flex-direction: column;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

/* --- Oldal --- */
.page-wrap {
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: min(88vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 22px 64px;
    overflow: hidden;
}

.hero__fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__fx canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

#particles-canvas {
    z-index: 1;
}

#hero-blob-canvas {
    z-index: 0;
}

.hero__grad {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        165deg,
        rgba(6, 13, 24, 0.15) 0%,
        rgba(12, 31, 58, 0.55) 45%,
        rgba(6, 13, 24, 0.85) 100%
    );
}

.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 75% 30%, rgba(232, 197, 71, 0.8), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 88% 80%, rgba(180, 236, 210, 0.6), transparent),
        radial-gradient(1px 1px at 55% 15%, rgba(255, 255, 255, 0.45), transparent);
    background-size:
        280px 280px,
        320px 320px,
        240px 240px,
        300px 300px,
        260px 260px;
    animation: sparkle-drift 28s linear infinite;
    opacity: 0.55;
}

@keyframes sparkle-drift {
    0% {
        background-position:
            0 0,
            0 0,
            0 0,
            0 0,
            0 0;
    }
    100% {
        background-position:
            280px 140px,
            -200px 200px,
            120px -80px,
            100px 180px,
            -150px 90px;
    }
}

.hero__content {
    position: relative;
    z-index: 4;
    max-width: var(--max);
    width: 100%;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(232, 197, 71, 0.2);
    border: 1px solid rgba(232, 197, 71, 0.55);
    color: #fffde7;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 0 24px rgba(232, 197, 71, 0.25);
    animation: badge-pop 2.4s ease-in-out infinite;
}

@keyframes badge-pop {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.1rem, 5.5vw, 3.55rem);
    line-height: 1.12;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.hero h1 .hl {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(232, 197, 71, 0.45);
}

.hero__lead {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 56ch;
    margin: 0 auto 28px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #c9a227 100%);
    color: var(--navy-deep);
    box-shadow: var(--glow-gold);
    border: none;
    cursor: pointer;
    transition:
        transform 0.2s,
        filter 0.2s;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    color: var(--navy-deep);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid rgba(232, 197, 71, 0.55);
    color: var(--text);
    background: rgba(12, 31, 58, 0.35);
    transition:
        background 0.2s,
        transform 0.2s;
}

.btn-ghost:hover {
    background: rgba(232, 197, 71, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Szekciók --- */
.section-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 56px 22px;
}

.section--light {
    background: var(--light-section);
    color: var(--light-text);
    position: relative;
}

.section--light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 50% at 50% 0%,
        rgba(30, 107, 74, 0.08),
        transparent
    );
    pointer-events: none;
}

.section--light .section-title,
.section--light .section-sub,
.section--light h3 {
    color: var(--light-text);
}

.section--light a {
    color: var(--emerald-bright);
}

.section--light a:hover {
    color: var(--emerald-deep);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    margin: 0 0 12px;
    text-align: center;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 62ch;
    margin: 0 auto 36px;
}

.section--light .section-sub {
    color: rgba(19, 34, 26, 0.75);
}

/* --- Stat --- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
}

.stat-item {
    background: linear-gradient(
        145deg,
        rgba(12, 31, 58, 0.55) 0%,
        rgba(13, 61, 40, 0.45) 100%
    );
    border: 1px solid rgba(232, 197, 71, 0.2);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    transition:
        transform 0.35s,
        box-shadow 0.35s;
    animation: stat-hover-glow 5s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation-delay: -1.6s;
}

.stat-item:nth-child(3) {
    animation-delay: -3.2s;
}

@keyframes stat-hover-glow {
    0%,
    100% {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    }
    50% {
        box-shadow: 0 12px 40px rgba(232, 197, 71, 0.12);
    }
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.stat-item__icon {
    font-size: 1.75rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 8px rgba(232, 197, 71, 0.4));
}

.stat-item b {
    display: block;
    font-size: 1.65rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.section--light .stat-item {
    background: #fff;
    border: 1px solid rgba(30, 107, 74, 0.15);
    box-shadow: var(--shadow-soft);
}

.section--light .stat-item span {
    color: rgba(19, 34, 26, 0.65);
}

/* --- Lépések --- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.step {
    padding: 28px 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 197, 71, 0.12);
    transition:
        transform 0.3s,
        border-color 0.3s;
}

.step:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 197, 71, 0.35);
}

.step h3 {
    font-family: var(--font-display);
    margin-top: 0;
    color: var(--accent-soft);
}

.section--light .step {
    background: #fff;
    border-color: rgba(30, 107, 74, 0.12);
}

.section--light .step h3 {
    color: var(--emerald-bright);
}

/* --- Játék kártya --- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    gap: 28px;
    justify-content: center;
}

.game-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid rgba(19, 34, 26, 0.1);
    overflow: hidden;
    color: var(--light-text);
    box-shadow:
        0 4px 20px rgba(12, 31, 58, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.38s;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 24px 56px rgba(12, 31, 58, 0.18),
        0 0 0 1px rgba(232, 197, 71, 0.35);
}

.game-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-card__img {
    transform: scale(1.04);
}

.game-card__body {
    padding: 22px 22px 24px;
}

.game-card__body h3 {
    font-family: var(--font-display);
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.game-card__body p {
    margin: 0 0 16px;
    font-size: 0.95rem;
    color: rgba(19, 34, 26, 0.72);
    line-height: 1.5;
}

.game-card__go {
    font-weight: 700;
    color: var(--emerald-bright);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.game-card:hover .game-card__go {
    gap: 12px;
}

/* --- FAQ --- */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-radius: var(--radius);
    border: 1px solid rgba(232, 197, 71, 0.18);
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item:hover {
    border-color: rgba(232, 197, 71, 0.35);
}

.faq-item summary {
    padding: 18px 22px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.25s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 22px 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.section--light .faq-item {
    background: #fff;
    border-color: rgba(30, 107, 74, 0.15);
}

.section--light .faq-a {
    color: rgba(19, 34, 26, 0.75);
}

/* --- CTA --- */
.cta-block {
    text-align: center;
    padding: 48px 32px;
    border-radius: calc(var(--radius) + 8px);
    background: linear-gradient(
        135deg,
        rgba(30, 107, 74, 0.35) 0%,
        rgba(12, 31, 58, 0.75) 100%
    );
    border: 1px solid rgba(232, 197, 71, 0.25);
    box-shadow: var(--shadow);
}

.cta-block h2 {
    font-family: var(--font-display);
    margin: 0 0 12px;
}

.cta-block p {
    color: var(--text-muted);
    margin: 0 0 24px;
}

/* --- Belső oldal: részecske sáv --- */
.page-fx-strip {
    position: relative;
    width: 100%;
    height: 96px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 24, 0.95) 0%,
        rgba(12, 31, 58, 0.35) 100%
    );
    border-bottom: 1px solid rgba(232, 197, 71, 0.14);
}

.page-fx-strip canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Belső oldalak --- */
.page-hero {
    position: relative;
    padding: 56px 22px 40px;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 60% at 50% -20%,
        rgba(232, 197, 71, 0.15),
        transparent
    );
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    position: relative;
    margin: 0 0 14px;
}

.page-hero p.lead {
    position: relative;
    color: var(--text-muted);
    max-width: 56ch;
    margin: 0 auto;
}

.prose {
    max-width: 720px;
    margin: 0 auto;
    padding: 8px 22px 48px;
    color: var(--text-muted);
}

.prose h2 {
    font-family: var(--font-display);
    color: var(--text);
    margin-top: 2rem;
}

.prose--on-light {
    color: rgba(19, 34, 26, 0.82);
}

.prose--on-light h2 {
    color: var(--light-text);
}

.notice-inline {
    margin: 24px 0;
    padding: 18px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    background: rgba(232, 197, 71, 0.12);
    color: #fffde7;
    font-weight: 600;
}

.section--light .notice-inline {
    background: rgba(30, 107, 74, 0.1);
    color: var(--light-text);
    border-left-color: var(--emerald-bright);
}

/* --- Footer --- */
.site-footer {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #050a12 0%, var(--navy-mid) 100%);
    border-top: 1px solid rgba(232, 197, 71, 0.2);
    padding: 48px 22px 28px;
}

.responsible {
    max-width: var(--max);
    margin: 0 auto 36px;
    padding: 22px 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 197, 71, 0.15);
}

.responsible > p {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.responsible-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.responsible-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(12, 31, 58, 0.6);
    border: 1px solid rgba(232, 197, 71, 0.2);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}

.responsible-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 197, 71, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: var(--accent-soft);
}

.responsible-links svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    margin: 12px 0 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 36ch;
    line-height: 1.5;
}

.footer-col h3 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin: 0 0 14px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-muted);
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    max-width: var(--max);
    margin: 22px auto 0;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(244, 247, 245, 0.5);
}

/* --- Reveal --- */
.reveal,
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible,
.reveal-stagger > *.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger > *:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger > *:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-stagger > *:nth-child(3) {
    transition-delay: 0.19s;
}

.reveal-stagger > *:nth-child(4) {
    transition-delay: 0.26s;
}

.reveal-stagger > *:nth-child(5) {
    transition-delay: 0.33s;
}

.reveal-stagger > *:nth-child(6) {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}
