/* ============================================
   WINIX - Stylesheet Simplifié
   Couleur principale: #00ab4b
   ============================================ */

:root {
    --winix-green: #00ab4b;
    --winix-green-light: #00d45a;
    --winix-green-dark: #008a3d;
    --bg-dark: #0f0f0f;
    --bg-card: #1a181b;
    --bg-nav: #242227cc;
    --text-primary: #ffffff;
    --text-muted: #808095;
    --text-subtle: #5a5a6c;
    --radius-md: 12px;
    --radius-xl: 40px;
    --radius-full: 100px;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

.bg-overlay {
    display: none;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.page-wrapper {
    min-height: 100vh;
}

/* === Navigation Fixed === */
.navigation_fixed {
    z-index: 100;
    display: flex;
    flex-direction: column;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* === Marquee Banner === */
.offer_marquee {
    z-index: 3;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee {
    --gap: 0rem;
    --duration: 40s;
    --fade: 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 var(--fade), #000 calc(100% - var(--fade)), transparent);
    mask-image: linear-gradient(to right, transparent, #000 var(--fade), #000 calc(100% - var(--fade)), transparent);
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll var(--duration) linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex: 0 0 auto;
}

@keyframes marquee-scroll {
    to {
        transform: translateX(-50%);
    }
}

.offer-blocks {
    display: flex;
}

.slide-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 8px;
}

.offer-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.coin-icon {
    font-size: 1.5rem;
}

.offer {
    display: flex;
    align-items: center;
    height: 3rem;
}

.payouts {
    color: var(--text-muted);
}

/* === Navigation Bar === */
.nav {
    margin-top: 10px;
    margin-right: 20px;
    margin-left: 20px;
}

.navigation_rounded {
    z-index: 3;
    position: relative;
}

.navigation {
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    background-color: var(--bg-nav);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-full);
    height: 60px;
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.nav_container {
    width: 100%;
}

.nav_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px 0 18px;
}

.nav_brand {
    padding-left: 1rem;
    flex-shrink: 0;
}

.nav_brand img {
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--winix-green);
    letter-spacing: 2px;
}

.nav_links-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav_links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navlink {
    font-weight: 400;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.navlink:hover {
    opacity: 0.6;
}

/* === Buttons === */
.primary-btn {
    background-color: var(--winix-green);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.3s ease;
    display: inline-block;
    text-align: center;
}

.primary-btn:hover {
    filter: brightness(0.9);
}

.primary-btn.is-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    height: 56px;
}

.secondary_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: transparent;
    border-radius: var(--radius-full);
    padding: 12px 10px 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    height: 48px;
}

.secondary_button:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.secondary_button.is-large {
    height: 56px;
    padding-right: 16px;
    font-size: 1.125rem;
}

.learn-more_icon {
    width: 28px;
    height: 28px;
}

/* === Main Wrapper === */
.main-wrapper {
    background-color: var(--bg-dark);
    padding-top: 0;
    position: relative;
    z-index: 1;
}

/* === Hero Section === */
.section_hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 84px;
    padding: 200px 20px 150px;
    overflow: hidden;
    position: relative;
}

.section_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/bg-winix-002.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.hero_text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title_inner {
    max-width: 800px;
    position: relative;
}

.hero_title {
    font-family: gamay-wide, sans-serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.text-green {
    color: var(--winix-green);
}

.hero_description {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* === Gradient Badge === */
.gradient-badge {
    background: linear-gradient(90deg, var(--winix-green), var(--winix-green-light));
    border-radius: var(--radius-md);
    padding: 2px;
    height: 36px;
    display: flex;
    align-items: center;
}

.gradient-badge_text {
    background-color: var(--bg-dark);
    border-radius: 11px;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.gradient-badge_text-color {
    background: linear-gradient(90deg, var(--winix-green), var(--winix-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-badge_text-color.regular {
    font-weight: 400;
}

/* === Hero Logos === */
.hero_logos-wrapper {
    display: flex;
    flex-direction: column;
    gap: 38px;
    width: 100%;
    max-width: 993px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-logos-title {
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    align-items: center;
    gap: 16px;
    color: #ffffffae;
    font-size: 0.9rem;
    font-weight: 500;
}

.divider_x {
    background-color: rgba(255, 255, 255, 0.05);
    height: 1px;
    color: white;
}

.hero-logos-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.hero-logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffffae;
    opacity: 1;
}

/* === Containers === */
.padding-global {
    padding: 0 40px;
}

.container-996,
.container-1196 {
    max-width: 996px;
    margin: 0 auto;
}

.container-1196 {
    max-width: 1196px;
}

.section-title_wrapper {
    text-align: center;
}

.section_title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* === Availability Section === */
.section_desktop-availability {
    z-index: 1;
    padding-top: 3rem;
    padding-bottom: 2rem;
    position: relative;
}

.desktop-availability_wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    display: flex;
}

.where-can-i-play {
    position: absolute;
    inset: -100px 0% auto;
}

/* === Footer === */
.footer-new {
    flex-flow: column;
    width: 100vw;
    display: flex;
}

.footer-cta {
    z-index: 2;
    background-color: var(--bg-dark);
    padding-top: 80px;
    padding-bottom: 120px;
    position: relative;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: -80px;
}

.footer-cta_wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.footer-cta_title {
    text-align: center;
    text-transform: uppercase;
    max-width: 40rem;
    font-family: gamay-wide, sans-serif;
    font-size: 88px;
    line-height: 88px;
}

.footer-cta_description {
    color: var(--text-muted);
    letter-spacing: -.45px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.footer-links {
    z-index: 2;
    background-color: var(--bg-dark);
    padding-bottom: 8rem;
    position: relative;
}

.footer-misc {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    display: flex;
}

.footer-links_layout {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.footer-links_layout-mobile {
    grid-column-gap: 2rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
}

.footer-link-column-mobile {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-link_column {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
}

.footer-link_title {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.footer-link_group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
}

.footer-link_text {
    color: var(--text-muted);
    letter-spacing: -.31px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.footer-link_text:hover {
    color: #d1d1d1;
}

.footer-social {
    grid-column-gap: 16px;
    grid-row-gap: 60px;
    color: #edeff3;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    display: grid;
}

.footer-social_links {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.footer-social-link {
    transition: opacity 0.3s;
    display: inline-flex;
}

.footer-social-link:hover {
    opacity: 0.6;
}

.footer-terms {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    display: flex;
}

.footer_term {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    color: #494957;
    flex-flow: column;
    font-size: 12px;
    display: flex;
}

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

.text-light {
    color: var(--text-muted);
}

/* === Footer Green Bottom === */
.footer-green-section {
    background-color: var(--winix-green);
}

.footer-curve {
    background-color: var(--bg-dark);
    height: 80px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.footer-bottom-bar {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.footer-bottom-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-bottom-bar:hover::before {
    opacity: 1;
}

.footer-arrow {
    width: 24px;
    height: 24px;
    color: white;
    position: relative;
    z-index: 1;
}

.embed_flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Responsive === */
@media screen and (max-width: 991px) {
    .nav_links {
        display: none;
    }

    .footer-links_layout {
        display: none;
    }

    .footer-links_layout-mobile {
        display: grid;
    }

    .section_hero {
        padding-top: 220px;
    }
}

@media screen and (max-width: 767px) {
    .padding-global {
        padding: 0 20px;
    }

    .hero_title {
        font-size: 2.5rem;
    }

    .section_title {
        font-size: 1.75rem;
    }

    .footer-cta_title {
        font-size: 48px;
        line-height: 48px;
    }

    .footer-cta {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .hero-logos-layout {
        justify-content: center;
    }

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

@media screen and (max-width: 479px) {
    .navigation {
        height: 50px;
    }

    .nav {
        padding: 8px 10px;
    }

    .nav_wrapper {
        padding: 0 6px 0 12px;
    }

    .nav_brand {
        padding-left: 0.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .primary-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .primary-btn.is-large {
        padding: 14px 24px;
        height: auto;
    }

    .secondary_button.is-large {
        font-size: 0.9rem;
        height: auto;
        padding: 12px 16px;
    }

    .offer_marquee {
        height: 50px;
    }

    .offer-wrapper {
        font-size: 0.75rem;
    }

    .footer-curve {
        height: 50px;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .footer-cta {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        margin-top: -50px;
    }

    .footer-social {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social_links {
        justify-content: center;
    }
}