:root {
    --bg: #08080a;
    --bg-alt: #0d0d10;
    --card: #111114;
    --card-2: #16161b;
    --line: rgba(255, 255, 255, 0.08);
    --line-neon: rgba(252, 155, 0, 0.5);
    --text: #f2f2f4;
    --muted: #92929b;
    --accent: #fc9b00;
    --accent-2: #ff6b00;
    --accent-grad: linear-gradient(180deg, #ffb347, #ff6b00);
    --glow: 0 0 18px rgba(252, 155, 0, 0.45), 0 0 55px rgba(255, 107, 0, 0.2);
    --radius: 5px;
    --radius-s: 10px;
    --radius-l: 18px;
    --font-head: 'acrobatBold', 'Oswald', 'Arial Narrow', Arial, sans-serif;
    --font-body: 'acrobat', 'Oswald', 'Arial Narrow', Arial, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    background-image:
    radial-gradient(ellipse 70% 40% at 50% -5%, rgba(255, 107, 0, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 35% at 100% 100%, rgba(255, 107, 0, 0.05), transparent 65%);
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; }
a { color: var(--accent); }
::selection { background: rgba(252, 155, 0, 0.4); }

.container { width: min(1200px, 100% - 40px); margin: 0 auto; }

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(6, 6, 8, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.45;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 74px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(252, 155, 0, 0.55);
    flex-shrink: 0;
}

.navbar-brand .brand-white { color: #fff; text-shadow: none; }
.navbar-brand svg { display: block; filter: drop-shadow(0 0 8px rgba(252, 155, 0, 0.6)); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links a {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    color: #cfcfd6;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.25s ease, text-shadow 0.25s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(252, 155, 0, 0.7);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 55%; }

.nav-socials { display: flex; align-items: center; gap: 20px; list-style: none; }

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.2rem;
    transition: filter 0.55s ease;
}
.nav-socials a img {
    transition: all 0.4s ease;
}
.nav-socials a img:hover {
    filter:drop-shadow(0 0 10px rgba(252, 155, 0, 0.831));
}
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
    padding: 8px;
    background: none; border: none;
    cursor: pointer; z-index: 1101;
}

.nav-burger span {
    display: block;
    height: 2px; width: 100%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.btn {
    display: inline-block;
    padding: 16px 46px;
    background: var(--accent-grad);
    color: #0a0a0a !important;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    box-shadow: 0 0 26px rgba(252, 155, 0, 0.35);
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn:hover { box-shadow: 0 0 25px rgba(252, 155, 0, 0.55); }

.btn-ghost {
    background: rgba(252, 155, 0, 0.05);
    color: var(--accent) !important;
    box-shadow: inset 0 0 0 1px var(--line-neon);
    text-shadow: 0 0 10px rgba(252, 155, 0, 0.5);
}

.btn-ghost:hover {
    background: rgba(252, 155, 0, 0.12);
    box-shadow: inset 0 0 0 1px var(--accent), 0 0 28px rgba(252, 155, 0, 0.3);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-media { position: absolute; inset: 0; z-index: 1; }

.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.36;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 65%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 65%, transparent);
}

.hero::before { 
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0 2px, transparent 2px 6px);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 3; max-width: 1150px; }

.hero h1 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.4vw, 5.2rem);
    text-transform: uppercase;
    line-height: 1.12;
    letter-spacing: 2px;
    color: #fff;
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.3),
        0 0 34px rgba(252, 155, 0, 0.5),
        0 0 90px rgba(255, 107, 0, 0.35);
    margin-bottom: 22px;
}

.hero h1 .neon {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
    text-shadow: 0 0 22px rgba(252, 155, 0, 0.8), 0 0 70px rgba(255, 107, 0, 0.5);
    animation: neon-flicker 4.5s infinite;
}

.hero h3 {
    font-size: clamp(1rem, 2vw, 2.1rem);
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 14px;
    text-transform: uppercase;
    margin-bottom: 42px;
    text-shadow: 0 0 16px rgba(252, 155, 0, 0.7);
}
.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: clamp(30vh,46vh,50vh);
    padding: 20px 20px 60px;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(6rem, 18vw, 15rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    max-width: 90vw;
}

.page-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: relative;
    top: clamp(3rem,4rem,5rem);
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.3rem, 4.8vw, 4.2rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 28px rgba(252, 155, 0, 0.3);
    text-align: center;
    width: 100%;
    margin: 0;
}

.page-hero h1 .accent {
    color: transparent;
    -webkit-text-stroke: 1.4px var(--accent);
    text-shadow: 0 0 30px rgba(252, 155, 0, 0.7);
}

.page-hero p {
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 700px;
    text-align: center;
}

.marquee-strip {
    border-top: 1px solid rgba(252, 155, 0, 0.3);
    border-bottom: 1px solid rgba(252, 155, 0, 0.3);
    background: rgba(252, 155, 0, 0.03);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
}

.marquee-inner {
    display: flex;
    gap: 44px;
    width: max-content;
    animation: marquee 100s linear infinite;
    font-family: var(--font-head);
    font-size: 1.05rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-inner span { color: #d8d8dd; }
.marquee-inner b { color: var(--accent); text-shadow: 0 0 12px rgba(252, 155, 0, 0.6); font-weight: 600; }

.section { padding: 110px 0; position: relative; }
.section-alt { background: linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)); }

.section-head { text-align: center; max-width: 900px; margin: 0 auto 60px; position: relative; z-index: 2; }

.section-kicker {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(252, 155, 0, 0.06);
    box-shadow: inset 0 0 0 1px rgba(252, 155, 0, 0.35);
    text-shadow: 0 0 10px rgba(252, 155, 0, 0.5);
    margin-bottom: 22px;
}

.section-head h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.8vw, 3.4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.18;
}

.section-head h2 .accent {
    color: transparent;
    -webkit-text-stroke: 1.3px var(--accent);
    text-shadow: 0 0 26px rgba(252, 155, 0, 0.6);
}

.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

.rp-text {
    max-width: 780px;
    margin: 0 auto 64px;
    text-align: center;
    color: #c9c9d0;
    font-size: 1.12rem;
    position: relative; z-index: 2;
}

.rp-text strong { color: var(--accent); font-weight: 600; text-shadow: 0 0 12px rgba(252, 155, 0, 0.4); }

.rp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 122;
    overflow: visible; 
    margin-top: 60px;
}

.rp-feature {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 32px 38px;
    text-align: center;
    position: relative;
    transition: all 0.45s ease;
    overflow: visible; 
    max-width: 25rem;
    will-change: transform;
}
.rp-features.carousel {
    padding: 30px 20px;
    margin: 0 -20px;
    overflow: hidden;
    max-width: 100vw;
    -webkit-mask-image: linear-gradient(90deg, transparent 1%, black 4%, black 96%, transparent 99%);
    mask-image: linear-gradient(90deg, transparent 1%, black 4%, black 96%, transparent 99%);
}
@media (hover: hover) and (pointer: fine) {
    .rp-features:not(.news):hover .rp-feature {
        opacity: 0.4;
        transform: scale(0.95);
        filter: blur(2px);
    }
    .rp-feature:not(.news):hover {
        transform: scale(1.12) !important;
        opacity: 1 !important;
        filter: blur(0) !important;
        border-color: rgba(252, 155, 0, 0.35);
        box-shadow: 0 0 30px rgb(0, 0, 0), 
        0 0 40px rgb(0, 0, 0),
        0 0 50px rgba(252, 155, 0, 0.08);
        z-index: 999 !important;
    }
    .rp-features.carousel:hover .carousel-track.ct {
        animation-play-state: paused;
    }
}
.rp-features.carousel {
    -webkit-mask-image: linear-gradient(90deg, transparent 1%, black 4%, black 96%, transparent 99%);
    mask-image: linear-gradient(90deg, transparent 1%, black 4%, black 96%, transparent 99%);
}
@keyframes marquee-rp {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.carousel-track.ct {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-rp 20s linear infinite; 
    will-change: transform;
}
.rp-feature .rp-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.4px var(--accent);
    text-shadow: 0 0 24px rgba(252, 155, 0, 0.4);
    margin-bottom: 18px;
    display: block;
}

.rp-feature h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rp-feature p { color: var(--muted); font-size: 0.99rem; }

.carousel-section { 
    padding: 20px 0 80px 0; 
    overflow: hidden; 
    position: relative; 
}

.carousel-section .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 16px 0 26px;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
    cursor: grab;
    touch-action: none;
}

.carousel-section .carousel:active {
    cursor: grabbing;
}

.carousel-section .carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.carousel-section .carousel-item {
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s ease;
}

.carousel-section .carousel-item img {
    pointer-events: none;
    display: block;
    height: 250px;
    width: auto;
    object-fit: cover;
    opacity: 0.5;
    transition: all 0.5s ease;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
    user-select: none;
    -webkit-user-drag: none;
}

@media (hover: hover) and (pointer: fine) {
    .carousel-section .carousel-item:hover img {
        opacity: 1;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(252, 155, 0, 0.18);
    }

    .carousel-section .carousel-item:hover {
        transform: scale(1.02);
        z-index: 2;
    }
}
.carousel-section .carousel-nav {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(252, 155, 0, 0.45);
    background: rgba(8, 8, 10, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--accent);
    font-size: 1.15rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0.85;
    padding: 0;
}
.carousel-section .carousel-nav.prev { left: 20px; }
.carousel-section .carousel-nav.next { right: 20px; }
@media (hover: hover) and (pointer: fine) {
    .carousel-section .carousel-nav:hover {
        opacity: 1;
        border-color: var(--accent);
        box-shadow: 0 0 16px rgba(252, 155, 0, 0.45);
    }
}
.scroll-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 auto;
    padding: 4px 0 0;
}
.carousel-section .scroll-dots { padding: 0 0 2px; margin-top: 12px; }
.scroll-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(252, 155, 0, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    box-sizing: content-box;
}
.scroll-dots button.active {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(252, 155, 0, 0.75);
    transform: scale(1.35);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section-game {
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, rgba(252, 155, 0, 0), rgba(255, 149, 0, 0.66), rgba(252, 155, 0, 0)) 1;
}
.steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
    position: relative; z-index: 2;
}

.step {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #111114bf;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 30px;
    transition: all 0.3s ease;
    
}

.step:hover {
    background: #161619d6;
    border-color: rgba(252, 155, 0, 0.38);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(252, 155, 0, 0.1);
}

.step-num {
    flex-shrink: 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2.3rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.4px var(--accent);
    text-shadow: 0 0 22px rgba(252, 155, 0, 0.45);
    min-width: 54px;
    text-align: center;
}

.step p { font-size: 1.18rem; color: #d9d9de; }

.step p a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(252, 155, 0, 0.4);
    transition: all 0.25s ease;
}

.step p a:hover { text-shadow: 0 0 22px rgba(252, 155, 0, 0.8); }

.steps-cta { text-align: center; margin-top: 44px; position: relative; z-index: 2; }

.news img{
    height: 250px;
    width: auto;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.274);
    border: 2px solid rgba(255, 106, 0, 0.505);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none !important;
    margin-bottom: -20px;
    margin-top: 20px;
}
.rp-features.news {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
    grid-template-columns: none;
    padding: 30px 20px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    
}
.rp-features.news::-webkit-scrollbar { display: none; }
.rp-features.news.dragging { cursor: grabbing; scroll-snap-type: none; }
.rp-features.news .rp-feature { flex-shrink: 0; }
.rp-features.news:not(.dragging) { scroll-snap-type: x proximity; }
.rp-features.news .rp-feature { scroll-snap-align: start; }
.rp-features.news + .scroll-dots { margin-top: 26px; }

.rp-features.carousel + .scroll-dots {
    display: none;
    margin-top: -14px;
    position: relative;
    z-index: 130;
}
@media (max-width: 1024px) {
    .rp-features.carousel + .scroll-dots { display: flex; }
}
.rp-features.reveal + .scroll-dots { opacity: 0; }
.rp-features.reveal.visible + .scroll-dots { opacity: 1; transition: opacity 0.7s ease 0.2s; }

.final-section {
    padding: 110px 0 80px;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse 55% 50% at 50% 100%, rgba(255, 107, 0, 0.12), transparent 70%);
    overflow: hidden;
}

.final-section h2 {
    font-family: var(--font-head);
    font-size: clamp(2.1rem, 3.8vw, 3.8rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 30px rgba(252, 155, 0, 0.35);
    margin-bottom: 44px;
    position: relative; z-index: 2;
}

.final-section h2 .accent {
    color: transparent;
    -webkit-text-stroke: 1.4px var(--accent);
    text-shadow: 0 0 28px rgba(252, 155, 0, 0.7);
}

.final-section img {
    max-width: 640px;
    width: 100%;
    position: relative; 
    z-index: 2;
    pointer-events: none;
}

.donate h1, .donat-layout{
    margin-top: -5rem;
}
.donat-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
    padding: 36px 0 110px;
    position: relative;
    z-index: 2;
}

.donat-form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 38px 34px 42px;
}

.donat-form-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.donat-form-title b {
    color: var(--accent);
    font-weight: 600;
    text-shadow: 0 0 12px rgba(252, 155, 0, 0.55);
}

.field { margin-bottom: 26px; }

.field label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.92rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.field label b { color: var(--accent); font-weight: 600; }

.field input[type="text"],
.field input[type="number"],
.field input[type="email"] {
    width: 100%;
    padding: 10px 15px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #0a0a0d;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.25s ease;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: var(--text) !important;
    transition: background-color 5000s ease-in-out 0s;
}
.field input::placeholder { color: #5c5c64; }

.field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 26px rgba(252, 155, 0, 0.14);
}

.field input.input-error {
    border-color: #f35f3e;
    box-shadow: 0 0 22px rgba(255, 77, 77, 0.14);
}

.field .field-hint { margin-top: 8px; font-size: 0.7rem; color: #62626a; }

.field .field-error {
    display: none;
    margin-top: 8px;
    font-size: 0.88rem;
    color:#ff4d4d;
}

.field.has-error .field-error { display: block; }

.amount-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.amount-chip {
    border-radius: var(--radius-s);
    border: 1px solid var(--line);
    cursor: pointer;
    padding: 8px 16px;
    background: #0a0a0d;
    color: #cfcfd6;
    font-family: var(--font-head);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.22s ease;
}

.amount-chip:hover,.amount-chip.active  {
    color: var(--accent);
    border-color: var(--line-neon);
    box-shadow: 0 0 18px rgba(252, 155, 0, 0.14);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    cursor: pointer;
    margin: 28px 0 30px;
    user-select: none;
}

.consent input { position: absolute; opacity: 0; width: 0; height: 0; }

.consent-box {
    flex-shrink: 0;
    width: 24px; height: 24px;
    margin-top: 1px;
    border-radius: 8px;
    background: #0a0a0d;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
}

.consent-box svg {
    width: 14px; height: 14px;
    stroke: #0a0a0a;
    stroke-width: 3;
    fill: none;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.consent input:checked + .consent-box {
    background: var(--accent);
    border-color: transparent;
    box-shadow: 0 0 16px rgba(252, 155, 0, 0.5);
}

.consent input:checked + .consent-box svg { opacity: 1; }

.consent-text { font-size: 0.97rem; color: var(--muted); }
.consent-text a { text-decoration: none; border-bottom: 1px dashed rgba(252, 155, 0, 0.5); }

.consent.input-error .consent-box { border-color: #f35f3e; }

.donat-submit { width: 100%; text-align: center; background: var(--accent); box-shadow: none;}
.donat-submit:hover{
    transform: scale(1);
    box-shadow: 0 0 25px #fc9b0082;
}
.donat-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.donat-success { display: none; text-align: center; padding: 44px 20px; }

.donat-success.show { display: block; animation: pop-in 0.45s ease; }

.donat-success .ok-icon {
    width: 74px; height: 74px;
    margin: 0 auto 22px;
    border-radius: var(--radius);
    background: var(--accent-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow);
}

.donat-success .ok-icon svg { width: 36px; height: 36px; stroke: #0a0a0a; stroke-width: 2.6; fill: none; }

.donat-success h3 {
    font-family: var(--font-head);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.donat-success p { color: var(--muted); font-size: 1.02rem; }
.donat-success p b { color: var(--accent); }

@keyframes pop-in {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.donat-aside { 
    display: grid;
    grid-template-rows: 1.6fr 0.4fr 1fr;
    min-height: 0; 
    position: relative;
}
.donat-image {
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    margin-top: -50px;
}

.donat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.donat-info {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 20px 20px 16px;
    transition: all 0.3s ease;
    grid-row: 2 / 4;
    grid-column: 1 / -1;
    align-self: end;
    margin-bottom: -12vh;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 40px #000000c5;
}

.donat-info:hover {
    border-color: rgba(252, 155, 0, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(252, 155, 0, 0.07);
}

.donat-info h3 {
    font-family: var(--font-head);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.donat-info ul { list-style: none; }

.donat-info li {
    color: var(--muted);
    font-size: 0.9rem;
    padding: 7px 0 7px 20px;
    position: relative;
}

.donat-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 0.95rem;
}

.step-display{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.step-display p, .step-display a{
    white-space: pre-line;
    text-align: center;
}

.step-display h2{
    text-shadow: var(--glow);
}
.rule-link{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rule-link a {
    font-size: 1.1rem;
    padding: 2px 0;
}
.firststep{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    position: relative;
    align-items: center;
}
.firststep img{
    max-height: 500px;
}
.firststep .step-num {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    align-self: center;
    margin-bottom: 0;
}
.step-display img {
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    border-radius: var(--radius);
    pointer-events: none;
}
.firststep > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding-top: 60px;
    width: 100%;
}

footer {
    position: relative;
    background: #060608;
    padding: 58px 0 32px;
    margin-top: 40px;
    margin-left: 15vw;
    max-width: calc(100vw - 15vw);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 16px rgba(252, 155, 0, 0.45);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 1.3fr;
    gap: 104px;
    width: min(1200px, 100% - 40px);
    margin: 0 auto;
    max-width: 100%;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 1.35rem;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(252, 155, 0, 0.55);
    margin-bottom: 16px;
}

.footer-brand .brand-white { color: #fff; text-shadow: none; }

footer .muted { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

footer h4 {
    font-family: var(--font-head);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(252, 155, 0, 0.4);
    margin-bottom: 18px;
}

footer ul { list-style: none; }

footer li { margin-bottom: 10px; }

footer a.footer-link {
    color: #b9b9c0;
    text-decoration: none;
    font-size: 0.98rem;
    transition: all 0.25s ease;
    word-break: break-word;
}

footer a.footer-link:hover {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(252, 155, 0, 0.55);
}

.footer-socials { display: flex; gap: 20px; margin-top: 20px; list-style: none; }

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    transition: all 0.25s ease;
}

.footer-socials a img {
    transition: all 0.4s ease;
}

.footer-socials a img:hover {
    filter: drop-shadow(0 0 10px rgba(252, 155, 0, 0.831));
}

.footer-bottom {
    width: min(1200px, 100% - 40px);
    margin: 38px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #62626a;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 1px;
    max-width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.no-js .reveal { opacity: 1 !important; transform: none !important; }

@media (max-width: 1024px) {
    .rp-features { grid-template-columns: 1fr; }
    .carousel-item img { opacity: 1; }
    body {
        overflow-x: hidden !important;
    }
    footer {
        margin-left: 5vw;
        max-width: calc(100vw - 5vw);
    }
    .carousel-section .carousel-item img {
        opacity: 0.8;
    }
    .firststep .step-num {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .firststep > div {
        padding-top: 60px;
    }
}

@media (max-width: 900px) {
    .navbar {
        max-width: 100vw;
    }
    .nav-burger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        background: rgba(4, 4, 6, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateY(-100%);
        transition: transform 0.35s ease;
        z-index: 1050;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
        max-width: 100vw;
    }
    .nav-links a::after { display: none; }
    .nav-links.open { transform: translateY(0); line-height: 6rem; }
    .nav-links a { font-size: 1.55rem; }
    .nav-socials { display: none; }
    .donate{margin-top: -10%;}
    .donat-layout { grid-template-columns: 1fr; }    
    .donat-aside img{
        min-height: 550px;
        height: auto;
    }
    .donat-form { padding: 30px 22px 34px; z-index: 20; margin-top: 5rem;}
}

@media (max-width: 640px) {
    .section { padding: 76px 0; }
    .hero h3 { letter-spacing: 7px; }
    .carousel-track img { height: 175px; }
    .carousel-track { animation-duration: 36s; gap: 14px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .step { padding: 18px 20px; gap: 16px; }
    .step p { font-size: 1.02rem; }
    .step-num { font-size: 2.2rem; min-width: 40px; }
    .bg-word { letter-spacing: 3px; }
    .rp-features.news { gap: 20px; padding: 24px 16px; margin: 0 -16px; }
    .carousel-section .carousel-nav { display: none; }
    .scroll-dots { gap: 7px; }
    .scroll-dots button { width: 8px; height: 8px; }
    footer { margin-left: 0; max-width: 100vw;}
    .page-hero{margin-bottom: -140px;}
    .firststep {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }
    .firststep .step-num {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 10px;
    }
    .firststep img {
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }
    .firststep > div {
        padding-top: 0;
        width: 100%;
    }
    .step-display a {
        font-size: 1rem;
    }
    .step-display a::after {
        bottom: -1px;
        height: 1.5px;
    }
}