@font-face {
    font-family: Neue Haas Grotesk;
    src: url(/fonts/NeueHaasGrotesk.woff2) format("woff2");
    font-weight: 400 800;
    font-style: normal;
    font-display: swap
}

:root {
    --gold-left: #f5dc6b;
    --gold-right: #d4a84a;
    --gold-gradient: linear-gradient(90deg, var(--gold-left) 0%, var(--gold-right) 100%);
    --bg-dark: #060608;
    --bg-card: #0e0e11;
    --bg-card-hover: #131316;
    --text: #e8e8ec;
    --text-muted: #9a9aa3;
    --timer-red: #e53935;
    --timer-red-bg: rgba(229, 57, 53, .15);
    --warning-banner-red: #BE0001;
    --warning-banner-gradient: linear-gradient(90deg, #BE0001 0%, #F82A2A 100%);
    --radius: 12px;
    --radius-sm: 8px;
    --font: "Neue Haas Grotesk", "Neue Haas", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --max-mobile: 430px;
    --header-h: 56px;
    --grid-size: 28px;
    --grid-line: rgba(255, 255, 255, .035);
    --glow-gold: rgba(244, 211, 114, .08);
    --glow-gold-strong: rgba(244, 211, 114, .12)
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden
}

.page-wrapper {
    width: 100%;
    max-width: var(--max-mobile);
    min-height: 100vh;
    margin: 0 auto;
    box-shadow: 0 0 0 1px #ffffff0a;
    background-color: var(--bg-dark);
    overflow-x: hidden
}

.warning-banner {
    background: var(--warning-banner-gradient);
    color: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    text-align: center;
    font-weight: 700;
    font-size: .85rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .02em
}

.warning-banner-text {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.warning-banner-icon {
    flex-shrink: 0
}

.warning-banner-timer {
    display: inline-block;
    letter-spacing: .02em
}

.hero {
    position: relative;
    min-height: 765px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 48px;
    overflow: hidden;
    background: var(--bg-dark)
}

@keyframes hero-entry {
    0% {
        opacity: 0;
        transform: translateY(14px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes hero-entry-logo {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.hero-logo-header {
    animation: hero-entry-logo .5s ease-out 0s both
}

.hero-title {
    animation: hero-entry .55s ease-out .1s both
}

.hero-subtitle {
    animation: hero-entry .55s ease-out .22s both
}

.hero .btn-cta-hero {
    animation: hero-entry .55s ease-out .38s both
}

.hero-badges {
    animation: hero-entry .55s ease-out .52s both
}

.hero-members {
    animation: hero-entry .55s ease-out .66s both
}

.hero-scroll-hint {
    animation: hero-entry .55s ease-out .82s both
}

@media(prefers-reduced-motion:reduce) {
    .hero-logo-header,
    .hero-title,
    .hero-subtitle,
    .hero .btn-cta-hero,
    .hero-badges,
    .hero-members,
    .hero-scroll-hint {
        animation: none;
        opacity: 1;
        transform: none
    }
}

.hero-logo-header {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%);
    width: 110px;
    height: 110px;
    object-fit: contain;
    z-index: 3;
    pointer-events: none
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(/hero-bg.png) center 0% / cover no-repeat
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 6, 8, .6) 50%, var(--bg-dark) 100%);
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 32px
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin: 0 0 20px;
    background: #f4d3721f;
    border: 1px solid rgba(244, 211, 114, .25);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 0 20px #f4d37226
}

.hero-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-left);
    box-shadow: 0 0 8px #f4d372cc;
    animation: hero-pill-pulse 2s ease-in-out infinite
}

@keyframes hero-pill-pulse {
    0%,
    to {
        opacity: 1
    }
    50% {
        opacity: .6
    }
}

.hero-pill-num {
    color: var(--gold-left);
    font-weight: 700
}

.hero-title {
    font-size: 1.95rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 28px 0 8px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 0 16px rgba(255, 255, 255, .2), 0 0 36px rgba(255, 255, 255, .08)
}

.hero-title-gold {
    background: radial-gradient(circle at 50% 38%, #fffce8, #fae878 28%, #f5dc6b, #e4c45a 72%, #d4b048);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(245, 220, 107, .5)
}

.hero-title-checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.hero-title-check-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff
}

.hero-title-check-line svg {
    flex: none;
    color: var(--gold-left)
}

.hero-subtitle {
    font-size: .95rem;
    font-weight: 300;
    color: #ffffffd1;
    margin: 0;
    max-width: 48ch
}

.hero-stats-section {
    padding: 28px 20px 32px;
    display: flex;
    justify-content: center
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    width: 100%;
    max-width: 280px;
    margin: 0
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px
}

.hero-stat-icon {
    color: var(--gold-left);
    flex-shrink: 0;
    margin-bottom: 2px
}

.hero-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2
}

.hero-stat-label {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 500
}

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    margin-left: -16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-left);
    animation: hero-scroll-float 2s ease-in-out infinite
}

.hero-scroll-hint svg {
    margin-top: -12px
}

.hero-scroll-hint svg:first-of-type {
    opacity: .95
}

.hero-scroll-hint svg:last-of-type {
    opacity: .5
}

@keyframes hero-scroll-float {
    0%,
    to {
        transform: translateY(0)
    }
    50% {
        transform: translateY(8px)
    }
}

.btn-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gold-gradient);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 4px 20px #b4954659
}

.hero .btn-cta-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 2px #f5dc6b66, 0 6px 24px #d4a84a80;
    animation: hero-cta-glow 2.5s ease-in-out infinite, hero-cta-pulse 2.2s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .12)
}

.hero .btn-cta-hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, .65) 45%, rgba(255, 255, 255, .5) 55%, rgba(255, 255, 255, 0) 80%, transparent 100%);
    transform: skew(-16deg);
    pointer-events: none;
    z-index: 1;
    animation: hero-cta-shine 2.8s ease-in-out infinite
}

.hero .btn-cta-hero:hover {
    filter: brightness(1.2)
}

@keyframes hero-cta-pulse {
    0%,
    to {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-3px)
    }
}

@keyframes hero-cta-shine {
    0% {
        transform: skew(-18deg) translate(-120%)
    }
    to {
        transform: skew(-18deg) translate(340%)
    }
}

@keyframes hero-cta-glow {
    0%,
    to {
        box-shadow: 0 0 0 2px #f5dc6b66, 0 6px 24px #d4a84a80
    }
    50% {
        box-shadow: 0 0 0 3px #f5dc6b8c, 0 8px 28px #d4a84a99
    }
}

.hero-members {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px
}

.hero-members-avatars {
    display: flex;
    align-items: center
}

.hero-members-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-dark);
    margin-left: -10px
}

.hero-members-avatar:first-child {
    margin-left: 0
}

.hero-members-text {
    font-size: .9rem;
    color: #ffffffb3;
    text-align: left;
    margin: 0;
    font-weight: 400
}

.hero-members-num {
    font-weight: 700;
    color: #ffffffe6
}

.hero-badges {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    padding: 0 12px;
    text-align: center;
    line-height: 1.6
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 4px 6px;
    font-size: .75rem;
    color: #ffffffc7;
    vertical-align: middle
}

.hero-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(245, 220, 107, .6);
    background: #00000080;
    color: var(--gold-left)
}

.hero-badge-label {
    white-space: nowrap
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px #b4954673
}

.btn-cta:active {
    transform: translateY(0)
}

.section {
    padding: 32px 20px;
    position: relative
}

.section-header {
    text-align: center;
    margin-bottom: 24px
}

.section-header .section-chip {
    margin-bottom: 14px
}

.section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #f4d372f2;
    margin: 0 0 6px
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 8px;
    margin: 0 auto;
    background: linear-gradient(180deg, #151518, #0e0e11);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 999px;
    box-shadow: 0 1px #ffffff0a inset, 0 2px 12px #00000059
}

.section-chip-marker {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--gold-left) 0%, #e8c84a 45%, var(--gold-right) 100%);
    box-shadow: 0 0 0 1px #0003, 0 0 14px #f5dc6b40
}

.section-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px #ffffffe6
}

.section-chip-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ffffffd1;
    padding-right: 2px
}

.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .02em;
    text-align: center;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-subtitle {
    font-size: .95rem;
    color: var(--text-muted);
    margin: 0;
    text-align: center
}

.hero-stats-section:before,
.ligas-section:before,
.tipsters-section:before,
.why-section:before,
.faq-section:before,
.cta-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 78%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 211, 114, .25) 20%, rgba(244, 211, 114, .5) 50%, rgba(244, 211, 114, .25) 80%, transparent 100%);
    box-shadow: 0 0 12px #f4d37233, 0 0 24px #f4d37214
}

.hero-stats-section:before {
    width: 70%
}

.section-warning .section-warning-divider {
    box-shadow: 0 0 16px #f4d37226
}

.why-section:after {
    content: "";
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translate(-50%);
    width: 140%;
    height: 80%;
    background: radial-gradient(ellipse 80% 50% at 50% 30%, var(--glow-gold) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0
}

.why-section>* {
    position: relative;
    z-index: 1
}

.process-section:after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    height: 55%;
    background: radial-gradient(ellipse 65% 50% at 50% 85%, rgba(244, 211, 114, .035) 0%, transparent 58%);
    pointer-events: none;
    z-index: 0
}

.process-section>* {
    position: relative;
    z-index: 1
}

.process-section .section-header,
.process-section .process-steps {
    position: relative;
    z-index: 1
}

.guarantee-card {
    box-shadow: 0 0 0 1px #f4d3721f, 0 0 60px #f4d3720f, 0 0 120px #b4954608
}

.cta-section:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 120%;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--glow-gold-strong) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0
}

.cta-section .guarantee-card {
    position: relative;
    z-index: 1
}

.groups-section:after {
    content: "";
    position: absolute;
    top: 20%;
    right: -30%;
    width: 80%;
    height: 60%;
    background: radial-gradient(circle at 70% 50%, var(--glow-gold) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0
}

.groups-section .section-title,
.groups-section .section-header,
.groups-section .groups-marquee-wrap {
    position: relative;
    z-index: 1
}

.feedbacks-section:after {
    content: "";
    position: absolute;
    top: 30%;
    left: -20%;
    width: 70%;
    height: 50%;
    background: radial-gradient(circle at 30% 50%, var(--glow-gold) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0
}

.feedbacks-section .section-title,
.feedbacks-section .feedbacks-carousel-wrap,
.feedbacks-section .feedbacks-dots {
    position: relative;
    z-index: 1
}

.groups-section {
    padding-top: 40px
}

.groups-section .section-header {
    margin-bottom: 20px
}

.groups-marquee-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 24px
}

.groups-marquee-wrap:before,
.groups-marquee-wrap:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 42px;
    pointer-events: none;
    z-index: 2
}

.groups-marquee-wrap:before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(6, 6, 8, 0) 100%)
}

.groups-marquee-wrap:after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-dark) 0%, rgba(6, 6, 8, 0) 100%)
}

.groups-marquee {
    overflow: hidden;
    padding: 10px 4px 20px
}

.groups-marquee-track {
    display: flex;
    gap: 12px;
    transition: transform .5s ease-out;
    will-change: transform
}

.groups-marquee-track--no-transition {
    transition: none
}

.group-card-shell {
    flex: 0 0 var(--group-card-width, 82%);
    width: var(--group-card-width, 82%);
    max-width: 360px;
    min-width: 0;
    transition: opacity .25s ease
}

.group-card-shell-active {
    opacity: 1
}

.group-card-shell-side {
    opacity: .6
}

.group-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
    transition: border-color .2s, background .2s;
    margin: 6px auto 10px
}

.group-card-active {
    border-color: #f4d37259;
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(244, 211, 114, .06) 100%)
}

.group-card-disabled {
    opacity: .75;
    filter: grayscale(.85);
    pointer-events: none
}

.group-card-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #0000004d;
    overflow: hidden
}

.group-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.group-card-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 16px;
    background: linear-gradient(160deg, #1a1a1e, #0a0a0c)
}

.group-card-placeholder-name {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--text)
}

.group-card-placeholder-soon {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gold-left)
}

.group-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 4px 8px;
    border-radius: 6px
}

.group-card-badge-top {
    color: #0a0a0c;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px #f4d37259
}

.group-card-lock {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000080;
    color: #ffffffe6
}

.group-card-body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.group-card-disabled .group-card-body {
    justify-content: center
}

.group-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
    text-transform: uppercase;
    text-align: center
}

.group-card-stat {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0 0 6px
}

.group-card-stat strong {
    color: var(--gold-left)
}

.group-card-progress {
    height: 6px;
    border-radius: 3px;
    background: #ffffff1a;
    overflow: hidden;
    margin-bottom: 10px
}

.group-card-progress-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gold-gradient);
    transition: width .3s ease
}

.group-card-disabled-text {
    font-size: .85rem;
    color: var(--text-muted);
    margin: 4px 0 0;
    text-align: center;
    line-height: 1.4
}

.group-card-gold {
    background: radial-gradient(circle at 50% 38%, #fffce8, #fae878 28%, #f5dc6b, #e4c45a 72%, #d4b048);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700
}

.groups-ligas {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.groups-ligas-chip {
    padding: 4px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #0000008c;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffffffe6
}

.groups-ligas-subtitle {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0
}

.groups-ligas-shell {
    margin-top: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(244, 211, 114, .35);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(244, 211, 114, .06) 100%);
    overflow: hidden;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none
}

.ligas-section {
    padding-top: 24px
}

.ligas-marquee-wrap {
    overflow: hidden;
    margin: 0 -20px
}

.ligas-marquee {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite
}

@keyframes marquee {
    0% {
        transform: translate(0)
    }
    to {
        transform: translate(-50%)
    }
}

.ligas-track {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 20px
}

.liga-flag-wrap {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 1px 4px #0003;
    background: var(--bg-card)
}

.liga-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.tipsters-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px
}

.tipsters-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-width: 0;
    padding: 4px 0
}

.tipsters-carousel::-webkit-scrollbar {
    display: none
}

.tipster-card {
    flex: 0 0 80%;
    max-width: 280px;
    scroll-snap-align: center;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
    transition: border-color .2s
}

.tipster-card:hover {
    border-color: #f4d3724d
}

.tipster-avatar {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.tipster-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px
}

.tipster-stat {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0 0 4px
}

.tipster-stat strong {
    color: var(--gold-left)
}

.tipsters-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.tipsters-dots .dot,
.feedbacks-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff3;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s
}

.tipsters-dots .dot.active,
.feedbacks-dots .dot.active {
    background: var(--gold-left);
    transform: scale(1.2)
}

.feedbacks-marquee-wrap {
    overflow: hidden;
    margin: 0 -20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.feedbacks-marquee-row,
.feedbacks-marquee {
    overflow: hidden
}

.feedbacks-track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 4px 20px 8px;
    width: max-content;
    animation: feedbacks-marquee 42s linear infinite
}

.feedbacks-track-reverse {
    animation-name: feedbacks-marquee-reverse
}

.feedback-card {
    flex: 0 0 88%;
    max-width: 340px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .06)
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.feedback-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover
}

.feedback-profit {
    font-weight: 700;
    color: var(--gold-left);
    margin: 0;
    font-size: 1rem
}

.feedback-date {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 4px 0 0
}

.feedback-stars {
    color: var(--gold-left);
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 0 0 8px
}

.feedback-text {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    white-space: pre-line
}

.feedbacks-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

@keyframes feedbacks-marquee {
    0% {
        transform: translate(0)
    }
    to {
        transform: translate(-50%)
    }
}

@keyframes feedbacks-marquee-reverse {
    0% {
        transform: translate(-50%)
    }
    to {
        transform: translate(0)
    }
}

.why-grid {
    display: grid;
    gap: 20px
}

.why-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px 24px 0;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: border-color .2s
}

.why-card:hover {
    border-color: #f5dc6b33
}

.why-card-top-circle {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translate(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px #0003
}

.why-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-left)
}

.why-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.3
}

.why-card-title-gold {
    color: var(--gold-left)
}

.why-card-title-white {
    color: #fff
}

.why-card-text {
    font-size: .9rem;
    color: #fff;
    margin: 0 0 28px;
    line-height: 1.55
}

.why-card-text strong {
    font-weight: 700;
    color: #fff
}

.why-card-bar {
    margin: 0 12px;
    width: calc(100% - 24px);
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--gold-right) 0%, var(--gold-left) 50%, var(--gold-right) 100%);
    box-shadow: 0 0 12px #f5dc6b59
}

.section-warning {
    position: relative;
    background: linear-gradient(180deg, #150606, #1c0a0a 35%, #220d0d 65%, #180606);
    padding: 48px 24px 52px;
    text-align: center
}

.section-warning:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 85%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 211, 114, .35) 50%, transparent 100%)
}

.section-warning-divider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 211, 114, .4) 20%, rgba(244, 211, 114, .5) 50%, rgba(244, 211, 114, .4) 80%, transparent 100%)
}

.section-warning-inner {
    position: relative;
    z-index: 1
}

.section-warning-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: #e53935;
    filter: drop-shadow(0 0 4px rgba(229, 57, 53, .7)) drop-shadow(0 0 10px rgba(229, 57, 53, .4));
    animation: section-warning-icon-glow 2.2s ease-in-out infinite
}

@keyframes section-warning-icon-glow {
    0%,
    to {
        filter: drop-shadow(0 0 3px rgba(229, 57, 53, .6)) drop-shadow(0 0 8px rgba(229, 57, 53, .35))
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(229, 57, 53, .85)) drop-shadow(0 0 14px rgba(229, 57, 53, .5))
    }
}

@media(prefers-reduced-motion:reduce) {
    .section-warning-icon {
        animation: none
    }
}

.section-warning-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: .02em
}

.section-warning-text {
    font-size: .95rem;
    color: #d3d3d3;
    line-height: 1.5;
    max-width: 32ch;
    margin: 0 auto 24px
}

.section-warning-timer {
    margin-bottom: 24px
}

.section-warning-timer-label {
    display: block;
    font-size: .85rem;
    color: #ffffffd9;
    margin-bottom: 6px;
    font-weight: 600
}

.section-warning-timer-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .08em;
    line-height: 1.2
}

.section-warning-cta-text {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    max-width: 34ch;
    margin: 0 auto 28px
}

.section-warning-btn {
    display: inline-block;
    padding: 16px 40px;
    min-width: 290px;
    background: var(--warning-banner-gradient);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-origin: center center;
    box-shadow: 0 0 0 1px #be000180, 0 0 10px #f82a2a66, 0 0 20px #f82a2a40;
    animation: section-warning-btn-pulse 1.8s ease-in-out infinite
}

.section-warning-btn:hover {
    filter: brightness(1.05)
}

@keyframes section-warning-btn-pulse {
    0%,
    to {
        transform: scale(1);
        box-shadow: 0 0 0 1px #be000180, 0 0 10px #f82a2a66, 0 0 20px #f82a2a40
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 1px #be0001b3, 0 0 14px #f82a2a8c, 0 0 26px #f82a2a59
    }
}

.process-section {
    padding-top: 24px;
    padding-bottom: 56px
}

.process-section .section-header {
    margin-bottom: 28px
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.process-step-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 18px 16px;
    background: #0e0e11eb;
    border: 1px solid rgba(244, 211, 114, .22);
    border-radius: var(--radius);
    box-shadow: 0 0 0 1px #f4d3720a, 0 0 16px #f4d3720f, 0 0 32px #b4954609;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: border-color .2s, box-shadow .2s;
    animation: process-card-in .5s ease-out forwards
}

.process-section:not(.process-section-visible) .process-step-card {
    animation: none
}

.process-section-visible .process-step-card:nth-child(1) {
    animation-delay: .1s
}

.process-section-visible .process-step-card:nth-child(2) {
    animation-delay: .25s
}

.process-section-visible .process-step-card:nth-child(3) {
    animation-delay: .4s
}

@keyframes process-card-in {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.process-step-card:hover {
    border-color: #f4d37252;
    box-shadow: 0 0 0 1px #f4d3720f, 0 0 22px #f4d37217, 0 0 40px #b495460d
}

.process-step-bg-num {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #f4d37214;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none
}

.process-step-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f4d3721a;
    color: var(--gold-left)
}

.process-step-icon {
    flex-shrink: 0
}

.process-step-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1
}

.process-step-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gold-left);
    margin-bottom: 4px
}

.process-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px
}

.process-step-description {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0
}

.faq-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease-out, transform .5s ease-out
}

.faq-section-visible {
    opacity: 1;
    transform: translateY(0)
}

.faq-section-visible .faq-item {
    animation: faq-item-enter .45s ease-out backwards
}

.faq-section-visible .faq-item:nth-child(1) {
    animation-delay: .05s
}

.faq-section-visible .faq-item:nth-child(2) {
    animation-delay: .1s
}

.faq-section-visible .faq-item:nth-child(3) {
    animation-delay: .15s
}

.faq-section-visible .faq-item:nth-child(4) {
    animation-delay: .2s
}

.faq-section-visible .faq-item:nth-child(5) {
    animation-delay: .25s
}

.faq-section-visible .faq-item:nth-child(6) {
    animation-delay: .3s
}

@keyframes faq-item-enter {
    0% {
        opacity: 0;
        transform: translateY(12px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease
}

.faq-item[open] {
    border-color: #f4d37233;
    background: #f4d37208
}

.faq-question {
    font-weight: 600;
    font-size: .95rem;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .2s ease
}

.faq-item[open] .faq-question {
    color: var(--text)
}

.faq-question::-webkit-details-marker {
    display: none
}

.faq-question:after {
    content: "+";
    color: var(--gold-left);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 10px;
    transition: opacity .2s ease
}

.faq-item[open] .faq-question:after {
    content: "−"
}

.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease-out
}

.faq-item[open] .faq-answer-wrap {
    grid-template-rows: 1fr
}

.faq-answer-wrap>* {
    overflow: hidden
}

.faq-answer {
    padding: 12px 18px 16px;
    margin: 0;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.5;
    white-space: pre-line;
    border-top: 1px solid rgba(255, 255, 255, .05);
    transition: opacity .25s ease
}

.faq-item[open] .faq-answer {
    opacity: 1
}

@media(prefers-reduced-motion:reduce) {
    .faq-section {
        opacity: 1;
        transform: none;
        transition: none
    }
    .faq-section-visible .faq-item {
        animation: none;
        animation-delay: 0s
    }
    .faq-answer-wrap {
        transition: none
    }
}

.cta-section {
    padding: 32px 20px 48px
}

.guarantee-card {
    position: relative;
    background: linear-gradient(165deg, #f4d3721f, #b595460f, #141416f2);
    border: 1px solid rgba(244, 211, 114, .2);
    border-radius: var(--radius);
    padding: 28px 20px 32px;
    overflow: hidden;
    text-align: center
}

.guarantee-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-right) 0%, var(--gold-left) 100%);
    clip-path: polygon(0 0, 0 100%, 100% 0);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start
}

.guarantee-ribbon-track {
    display: flex;
    white-space: nowrap;
    animation: guarantee-ribbon-marquee 6s linear infinite;
    transform: rotate(-45deg);
    transform-origin: left top;
    margin-top: 22px;
    margin-left: -8px
}

.guarantee-ribbon-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #1a1a1a;
    padding: 0 8px;
    flex-shrink: 0
}

@keyframes guarantee-ribbon-marquee {
    0% {
        transform: rotate(-45deg) translate(0)
    }
    to {
        transform: rotate(-45deg) translate(-50%)
    }
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--gold-left) 0%, var(--gold-right) 100%);
    color: #1a1a1a;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .08em;
    border-radius: 999px;
    box-shadow: 0 2px 12px #f4d37259
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px
}

.guarantee-hero-amount {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: .02em;
    background: radial-gradient(circle at 50% 38%, #fffce8, #fae878 28%, #f5dc6b, #e4c45a 72%, #d4b048);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(245, 220, 107, .55), 0 0 40px rgba(245, 220, 107, .35), 0 0 60px rgba(212, 168, 74, .2);
    animation: guarantee-amount-glow 2.5s ease-in-out infinite
}

@keyframes guarantee-amount-glow {
    0%,
    to {
        text-shadow: 0 0 20px rgba(245, 220, 107, .55), 0 0 40px rgba(245, 220, 107, .35), 0 0 60px rgba(212, 168, 74, .2)
    }
    50% {
        text-shadow: 0 0 28px rgba(245, 220, 107, .7), 0 0 52px rgba(245, 220, 107, .45), 0 0 80px rgba(212, 168, 74, .28)
    }
}

@media(prefers-reduced-motion:reduce) {
    .guarantee-hero-amount {
        animation: none
    }
}

.guarantee-text {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 36ch;
    margin: 0 auto 10px
}

.guarantee-text:last-of-type {
    margin-bottom: 16px
}

.guarantee-text-bold {
    font-weight: 700;
    color: var(--text)
}

.guarantee-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 20px;
    line-height: 1.4
}

.guarantee-amount {
    background: radial-gradient(circle at 50% 38%, #fffce8, #fae878 28%, #f5dc6b, #e4c45a 72%, #d4b048);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800
}

.guarantee-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--gold-gradient);
    box-shadow: 0 0 0 2px #f5dc6b66, 0 6px 24px #d4a84a80;
    animation: hero-cta-glow 2.5s ease-in-out infinite, hero-cta-pulse 2.2s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .12)
}

.guarantee-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, .65) 45%, rgba(255, 255, 255, .5) 55%, rgba(255, 255, 255, 0) 80%, transparent 100%);
    transform: skew(-16deg);
    pointer-events: none;
    z-index: 1;
    animation: hero-cta-shine 2.8s ease-in-out infinite
}

.guarantee-btn:hover {
    filter: brightness(1.2)
}

.guarantee-bg-text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translate(-50%);
    font-size: 4rem;
    font-weight: 800;
    color: #f4d3720f;
    letter-spacing: .02em;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none
}

.cta-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 20px
}

.cta-section .btn-cta {
    margin: 0
}

.disclaimer {
    padding: 20px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center
}

.disclaimer-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    margin: 0 auto 10px;
    border-radius: 999px;
    border: 1px solid rgba(180, 182, 190, .4);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #c8cad2e6;
    background: linear-gradient(180deg, #787a8233, #282a30f2)
}

.disclaimer:before {
    content: "";
    display: block;
    width: 70%;
    height: 1px;
    margin: 0 auto 12px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 211, 114, .16) 50%, transparent 100%);
    box-shadow: 0 0 6px #f4d37214
}

.disclaimer p {
    font-size: .78rem;
    color: #a0a2aca6;
    line-height: 1.6;
    max-width: 52ch;
    text-align: center;
    margin: 0 auto
}

.footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-dev-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #ffffff8c;
    margin: 0 0 6px
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 12px
}

.footer-logo {
    display: block;
    height: 28px;
    width: auto;
    max-width: 160px;
    object-fit: contain
}

.footer-copy {
    font-size: .85rem;
    color: var(--text-muted);
    margin: 0
}

.footer-link {
    color: var(--gold-left);
    text-decoration: none;
    text-transform: uppercase
}

.footer-link:hover {
    text-decoration: underline
}

.join-notification-stack {
    position: fixed;
    left: 12px;
    bottom: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    align-items: flex-start
}

.join-notification {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #12121638;
    backdrop-filter: saturate(160%) blur(28px);
    -webkit-backdrop-filter: saturate(160%) blur(28px);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 4px 30px #0003, inset 0 1px #ffffff14;
    font-size: .9rem;
    font-family: var(--font);
    color: var(--text);
    white-space: nowrap;
    width: max-content;
    max-width: calc(100vw - 24px);
    animation: join-notification-enter .35s ease-out forwards
}

.join-notification--exit {
    animation: join-notification-exit .4s ease-in forwards
}

.join-notification__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px #f5dc6b59
}

.join-notification__name {
    font-weight: 600;
    color: var(--text)
}

.join-notification__flag {
    flex-shrink: 0;
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    vertical-align: middle
}

.join-notification__label {
    margin-left: auto;
    padding-left: 6px;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .02em;
    background: radial-gradient(circle at 50% 38%, #fffce8, #fae878 28%, #f5dc6b, #e4c45a 72%, #d4b048);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

@keyframes join-notification-enter {
    0% {
        opacity: 0;
        transform: translate(-20px)
    }
    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes join-notification-exit {
    0% {
        opacity: 1;
        transform: translate(0)
    }
    to {
        opacity: 0;
        transform: translate(-12px)
    }
}

@media(prefers-reduced-motion:reduce) {
    .join-notification {
        animation: none
    }
    .join-notification--exit {
        animation: join-notification-exit .2s ease-out forwards
    }
}