*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #12091f;
    --bg-deep: #07030f;
    --panel: rgba(47, 28, 78, 0.78);
    --panel-border: rgba(255, 255, 255, 0.12);
    --text: #f8f3ff;
    --muted: #ccbfe0;
    --accent: #ff6b00;
    --accent-2: #ffb11a;
    --shadow: 0 24px 60px rgba(5, 4, 16, 0.45);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Barlow", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(219, 55, 173, 0.18), transparent 30%),
        radial-gradient(circle at 15% 20%, rgba(255, 131, 28, 0.14), transparent 25%),
        linear-gradient(180deg, #170b28 0%, #08040e 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: 24px;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    background:

        url("img/bgHero.webp?v=2") center right / cover no-repeat;
    transform: scale(1.03);
}

.hero__backdrop::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 320px;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 7, 24, 0.35) 25%, rgba(11, 6, 20, 0.7) 50%, rgba(8, 4, 14, 0.85) 75%, rgba(8, 4, 14, 0.94) 100%);
    pointer-events: none;
}


.hero__content {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    padding-left: clamp(24px, 6vw, 96px);
    padding-top: 24px;
}

.brand-badge {
    align-self: start;
    justify-self: start;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px 12px;


}

.brand-badge__title,
.brand-badge__sub {
    display: block;
    line-height: 1;
}

.brand-badge__logo {
    display: block;
    width: clamp(128px, 16vw, 190px);
    height: auto;
}

.brand-badge__title {
    font-family: "Anton", sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.6rem);
    letter-spacing: 0.04em;
    color: #ff9b00;
    text-shadow:
        0 3px 0 #883300,
        0 0 16px rgba(255, 106, 0, 0.4);
}

.brand-badge__sub {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff4d9;
}

.hero__copy {
    max-width: 620px;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f3d38a;
}

.hero h1,
.discover h2 {
    margin: 0;
    font-family: "Anton", sans-serif;
    line-height: 0.94;
    letter-spacing: 0.015em;
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 6.3rem);
}

.hero h1 span,
.discover h2 span {
    color: var(--accent);
    color: var(--accent);
    
}

.hero__description {
    width: min(100%, 420px);
    margin: 22px 0 0;
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.28;
    color: rgba(248, 243, 255, 0.74);
}

.hero__actions {
    margin-top: 28px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    padding: 18px 34px;
    border-radius: 14px;
    border: 2px solid rgba(255, 235, 199, 0.55);
    background: linear-gradient(180deg, #ffb51f 0%, #ff6900 38%, #f44f00 100%);
    box-shadow:
        0 0 0 3px rgba(255, 131, 28, 0.16),
        0 18px 36px rgba(255, 90, 0, 0.24);
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: #fff8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 3px rgba(255, 131, 28, 0.2),
        0 22px 40px rgba(255, 90, 0, 0.28);
    filter: saturate(1.06);
}

.discover {
    position: relative;
    margin-top: -160px;
    padding: 130px 24px 72px;
    text-align: center;
    overflow: hidden;
}

.discover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 4, 14, 0.9) 0%, rgba(10, 5, 18, 0.97) 12%, rgba(18, 9, 32, 0.92) 25%, rgba(22, 12, 38, 0.88) 50%, rgba(8, 4, 14, 0.96) 100%),
        url("img/section2.jpg") center center / cover no-repeat;
    opacity: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 150px);
    mask-image: linear-gradient(180deg, transparent 0%, black 150px);
}

.discover::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 180px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 4, 14, 0.6) 40%, #08040e 100%);
    pointer-events: none;
    z-index: 2;
}

.discover>* {
    position: relative;
    z-index: 1;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-bottom: 24px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(169, 117, 31, 0.95), rgba(97, 57, 10, 0.95));
    color: #fff1d1;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.discover h2 {
    font-size: clamp(1.8rem, 4.5vw, 5rem);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.discover__lead,
.discover__closing {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
}

.discover__lead {
    margin-top: 18px;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.feature-grid {
    width: min(1120px, 100%);
    margin: 42px auto 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    text-align: left;
    padding: 24px 20px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(64, 39, 104, 0.56), rgba(31, 18, 49, 0.82)),
        rgba(30, 16, 49, 0.85);
    border: 1px solid var(--panel-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
  
}

.feature-card__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    line-height: 1.45;
    color: rgba(248, 243, 255, 0.76);
}

.discover__closing {
    margin-top: 24px;
    font-size: clamp(1.1rem, 2vw, 1.8rem);
}

.cta-button--compact {
    min-width: 340px;
    margin-top: 14px;
}

.streamers {
    position: relative;
    margin-top: -60px;
    padding: 120px 24px 86px;
    background:
        linear-gradient(180deg, #08040e 0%, #08040e 4%, rgba(8, 4, 14, 0.95) 8%, rgba(20, 10, 34, 0.82) 18%, rgba(11, 6, 20, 0.97) 100%),
        linear-gradient(90deg, rgba(55, 22, 98, 0.32), rgba(16, 10, 33, 0.14)),
        url("img/sectionstreamers.webp") center bottom / cover no-repeat;
    overflow: hidden;
}

.streamers::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 2px, transparent 2px);
    background-size: 100% 58px, 90px 100%;
    opacity: 0.12;
    pointer-events: none;
}

.streamers::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 180px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 4, 14, 0.6) 40%, rgba(8, 4, 14, 0.85) 100%);
    pointer-events: none;
    z-index: 2;
}

.streamers>* {
    position: relative;
    z-index: 1;
}

.streamers .section-chip {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.streamers__intro {
    width: min(1300px, 100%);
    margin: 26px auto 38px;
    display: grid;
    grid-template-columns: minmax(420px, 1.25fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: center;
}

.streamers__copy h2 {
    font-family: "Anton", sans-serif;
    font-size: clamp(2.9rem, 5vw, 4.9rem);
    line-height: 0.95;
    margin: 0;
    max-width: 760px;
}

.streamers__copy h2 span {
    color: var(--accent);
}


.streamers__tagline {
    margin: 12px 0 14px;
    font-size: 1.12rem;
    font-weight: 600;
    color: #f5f1ff;
}

.streamers__copy p {
    max-width: 640px;
    margin: 0 0 14px;
    color: rgba(248, 243, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.6;
}

.streamers__highlights {
    margin: 18px 0 18px 18px;
    padding: 0 0 0 14px;
    color: #f7f2ff;
    font-size: 1.12rem;
    line-height: 1.8;
}

.streamers__closing {
    color: #f0dde4;
}

.streamers__collage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.streamers__collage-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
    object-fit: contain;
    transform: scale(1.05);
}

.streamer-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.streamer-card {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(36, 22, 55, 0.92), rgba(22, 14, 34, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
}

.streamer-card--featured {
    border-color: rgba(255, 103, 0, 0.95);
    box-shadow:
        0 0 0 1px rgba(255, 103, 0, 0.28),
        var(--shadow);
}

.streamer-card__photo {
    position: relative;
    height: 290px;
}

.streamer-card__photo > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.streamer-card__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(18, 9, 31, 0.92) 100%);
}

.streamer-card__rank {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff9c1c, #ff5d00);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
}

.crown-icon {
    width: 16px;
    height: auto;
    object-fit: contain;
}

.streamer-card__body {
    padding: 18px 14px 16px;
}

.streamer-card__body h3 {
    margin: 0 0 10px;
    font-size: 1.9rem;
    color: #fff3ef;
}

.streamer-card--featured .streamer-card__body h3 {
    color: #ff6800;
}

.streamer-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.streamer-card__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    color: #f7f2ff;
}

.streamer-card__body p {
    min-height: 66px;
    margin: 0 0 14px;
    color: rgba(248, 243, 255, 0.7);
    line-height: 1.5;
}

.streamer-card__stats {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    color: #f9f4ff;
    font-weight: 700;
}

.streamer-card__stats span::before {
    content: none;
}

.streamer-card__button {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 38px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ff9e18, #ff5400);
    color: #fff7f2;
    font-size: 0.88rem;
    font-weight: 800;
    border: 1px solid rgba(255, 228, 189, 0.34);
}

.streamer-card__button--ghost {
    background: linear-gradient(180deg, #6f3bc4, #47207e);
}

.download {
    position: relative;
    margin-top: -120px;
    padding: 190px 24px 100px;
    text-align: center;
    overflow: hidden;
}

.download::before,
.download::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.download::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 4, 19, 0.28) 0%, rgba(10, 4, 19, 0.06) 30%, rgba(10, 4, 19, 0.12) 100%),
        linear-gradient(180deg, rgba(8, 4, 14, 0.94) 0%, rgba(20, 10, 34, 0.86) 16%, rgba(11, 6, 20, 0.96) 100%),
        url("img/Section4.jpg") center center / cover no-repeat;
    opacity: 1;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 180px);
    mask-image: linear-gradient(180deg, transparent 0%, black 180px);
}

.download::after {
    display: none;
}

.download .section-chip,
.download h2,
.download__lead,
.download__features,
.download__closing,
.download__cards {
    position: relative;
    z-index: 1;
}

.download>.download__cards::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -84px;
    height: 180px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 4, 14, 0.34) 40%, #08040e 100%);
    pointer-events: none;
    z-index: -1;
}

.download>* {
    position: relative;
    z-index: 1;
}

.download h2 {
    margin: 0;
    font-family: "Anton", sans-serif;
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 0.96;
}

.download h2 span {
    color: var(--accent);
}

.download__lead {
    max-width: 820px;
    margin: 18px auto 10px;
    color: rgba(248, 243, 255, 0.72);
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.35;
}

.download__features {
    width: min(1060px, 100%);
    margin: 36px auto 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.download-feature {
    padding: 0 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.download-feature:last-child {
    border-right: none;
}

.download-feature__icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
}

.download-feature__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-feature p {
    margin: 0;
    color: #f7f2ff;
    line-height: 1.45;
}

.download__closing {
    margin: 30px 0 12px;
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: #fdf7ff;
}

.download__cards {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.download-card {
    padding: 18px 14px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(92, 44, 169, 0.92), rgba(53, 23, 99, 0.88));
    border: 2px solid rgba(115, 70, 207, 0.9);
    box-shadow: var(--shadow);
}

.download-card h3 {
    margin: 0 0 12px;
    font-size: 2rem;
    color: #fff9ff;
}

.download-card__qr {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 14px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}

.download-card__button {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffab1f, #ff5600);
    color: #fff7f0;
    font-size: 1.05rem;
    font-weight: 800;
    border: 2px solid rgba(255, 222, 188, 0.34);
}

.footer {
    position: relative;
    margin-top: -60px;
    padding: 130px 24px 0;
    text-align: center;
    background:
        linear-gradient(180deg, #08040e 0%, #08040e 4%, rgba(8, 4, 14, 0.95) 8%, rgba(22, 13, 38, 0.9) 20%, #0c0715 100%);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(121, 62, 231, 0.12), transparent 34%);
    pointer-events: none;
}

.footer h2 {
    margin: 0;
    font-family: "Anton", sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 0.95;
}

.footer h2 span {
    color: var(--accent);
}

.footer__lead {
    max-width: 760px;
    margin: 18px auto 28px;
    color: rgba(248, 243, 255, 0.7);
    font-size: clamp(1rem, 2vw, 1.38rem);
    line-height: 1.35;
}

.footer__support-grid {
    width: min(1180px, 100%);
    margin: 0 auto 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.support-card {
    padding: 20px 14px 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(38, 24, 61, 0.92), rgba(24, 15, 39, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.support-card__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
}

.support-card__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-card h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    color: #f8f3ff;
}

.support-card__button {
    display: inline-flex;
    width: 100%;
    min-height: 38px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffac1f, #ff5400);
    color: #fff7f0;
    font-size: 0.92rem;
    font-weight: 800;
    border: 1px solid rgba(255, 226, 184, 0.34);
}

.footer__bottom {
    padding: 16px 24px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(248, 243, 255, 0.45);
    font-size: 0.86rem;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 18px 18px 120px;
    }

    .hero__content {
        gap: 24px;
        padding-left: 0;
        padding-top: 12px;
    }

    .hero__copy {
        padding-top: 68px;
    }

    .hero__backdrop {
        background-position: 70% center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .streamers__intro {
        grid-template-columns: 1fr;
    }

    .streamers__copy h2 {
        font-size: clamp(2.8rem, 7vw, 4.2rem);
        max-width: 100%;
    }

    .streamers__collage {
        max-width: 520px;
        width: 100%;
        margin: 32px auto 0;
    }

    .streamer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 0;
    }

    .download-feature:nth-child(2) {
        border-right: none;
    }

    .download-feature:nth-child(1),
    .download-feature:nth-child(2) {
        padding-bottom: 18px;
    }

    .download__cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .footer__support-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 680px) {
    .hero {
        padding: 14px 14px 96px;
    }

    .hero__backdrop {
        background:
            linear-gradient(180deg, rgba(10, 4, 19, 0.1) 0%, rgba(10, 4, 19, 0.3) 40%, rgba(10, 4, 19, 0.96) 100%),
            url("img/bgHero.webp?v=2") 68% center / cover no-repeat;
    }

    .hero__copy {
        max-width: 100%;
        padding-top: 48px;
    }

    .hero__description {
        width: 100%;
    }

    .cta-button,
    .cta-button--compact {
        width: 100%;
        min-width: 0;
    }

    .discover {
        margin-top: -80px;
        padding: 60px 14px 48px;
    }

    .discover h2 {
        font-size: 4.2vw;
        padding: 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px 18px;
    }

    .streamers {
        margin-top: -40px;
        padding: 90px 16px 58px;
    }

    .streamers__tagline {
        font-size: 1.02rem;
        line-height: 1.5;
    }

    .streamers__copy h2 {
        font-size: clamp(2.3rem, 10vw, 3.15rem);
        line-height: 0.98;
    }

    .streamers__copy p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .streamers__highlights {
        margin: 20px 0;
        padding-left: 20px;
        font-size: 1rem;
        line-height: 1.65;
    }

    .streamers__collage {
        min-height: 0;
        display: flex;
        justify-content: center;
        max-width: 100%;
        margin: 24px auto 16px;
    }

    .streamers__collage-img {
        transform: scale(1);
        max-width: 100%;
    }

    .streamer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .streamer-card__photo {
        height: 280px;
    }

    .streamer-card__body h3 {
        font-size: 1.6rem;
    }

    .streamer-card__body {
        padding: 18px 16px 18px;
    }

    .streamer-card__body p {
        min-height: 0;
        margin-bottom: 16px;
    }

    .streamer-card__button {
        min-height: 42px;
        font-size: 0.95rem;
    }

    .download {
        margin-top: -40px;
        padding: 90px 14px 70px;
    }

    .download h2 {
        font-size: clamp(2.4rem, 11vw, 3.4rem);
    }

    .download__features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .download-feature {
        border-right: none;
        padding: 0;
    }

    .download-feature:nth-child(1),
    .download-feature:nth-child(2) {
        padding-bottom: 0;
    }

    .download-card h3 {
        font-size: 1.25rem;
    }

    .footer {
        margin-top: -40px;
        padding: 90px 14px 0;
    }

    .footer h2 {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .footer__lead {
        font-size: 1rem;
    }
}
