:root {
    --green: #00D15E;
    --green-soft: rgba(0, 209, 94, 0.14);
    --green-glow: rgba(0, 209, 94, 0.34);
    --black: #030504;
    --charcoal: #090d0b;
    --panel: #0d1210;
    --panel-strong: #111713;
    --line: #1b241f;
    --text: #f4fff8;
    --muted: #8d9b94;
    --muted-strong: #bfccc4;
    --container: 1180px;
    --radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--black);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(0, 209, 94, 0.07), transparent 440px),
        radial-gradient(circle at 70% 0%, rgba(0, 209, 94, 0.11), transparent 34rem),
        var(--black);
    color: var(--text);
    letter-spacing: 0;
    line-height: 1.55;
}

.btn-ghost-green,
.btn-solid-green,
.btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.btn-ghost-green:hover,
.btn-solid-green:hover,
.btn-outline-green:hover {
    transform: translateY(-2px);
}

.btn-ghost-green:focus-visible,
.btn-solid-green:focus-visible,
.btn-outline-green:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

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

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

.navbar-dark {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 18px clamp(20px, 4vw, 54px);
    background: rgba(3, 5, 4, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand-logo img {
    width: 156px;
    height: auto;
}

.auth-group,
.action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost-green,
.btn-solid-green,
.btn-outline-green {
    min-height: 44px;
    padding: 0 20px;
}

.btn-ghost-green {
    color: var(--green);
    background: rgba(0, 209, 94, 0.04);
    border: 1px solid rgba(0, 209, 94, 0.28);
}

.btn-ghost-green:hover {
    background: var(--green-soft);
    border-color: var(--green);
    box-shadow: 0 0 24px var(--green-glow);
}

.btn-solid-green {
    color: #001608;
    background: var(--green);
    box-shadow: 0 0 0 rgba(0, 209, 94, 0);
}

.btn-solid-green:hover {
    box-shadow: 0 0 34px var(--green-glow);
}

.btn-outline-green {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--green);
}

.btn-outline-green:hover {
    color: #001608;
    background: var(--green);
    box-shadow: 0 0 34px var(--green-glow);
}

.text-lg {
    min-height: 54px;
    padding: 0 26px;
    font-size: 1.02rem;
}

.hero-showcase {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-img-frame {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    z-index: 0;
}

.hero-img-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, var(--black) 0%, rgba(3, 5, 4, 0.72) 42%, transparent 70%),
        linear-gradient(0deg, var(--black) 0%, transparent 30%),
        linear-gradient(180deg, rgba(3, 5, 4, 0.55) 0%, transparent 18%);
}

.hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(650px, calc(100% - 40px));
    margin: 0 auto 0 max(20px, calc((100vw - 1320px) / 2 + 20px));
    padding: clamp(72px, 9vw, 110px) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 10px;
    background: rgba(0, 209, 94, 0.08);
    border: 1px solid rgba(0, 209, 94, 0.3);
    border-radius: 999px;
    font-size: 0.81rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 26px;
    letter-spacing: 0.01em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 50%;
    animation: badgePulse 1.8s ease-in-out infinite;
}

.heading-green {
    color: var(--green);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-num {
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}

.trust-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
    flex-shrink: 0;
}

.neon-heading,
.section-title,
.neon-heading-small {
    margin: 0;
    color: var(--text);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0;
}

.neon-heading {
    max-width: 780px;
    font-size: clamp(3.2rem, 8vw, 7.4rem);
    text-shadow: 0 0 42px rgba(0, 209, 94, 0.18);
}

.hero-lead,
.section-desc {
    color: var(--muted-strong);
}

.hero-lead {
    max-width: 690px;
    margin: 28px 0 34px;
    font-size: clamp(1rem, 1.45vw, 1.24rem);
}

.metrics-panel,
.premium-games,
.financial-gateways,
.conversion-footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.metrics-panel,
.premium-games,
.financial-gateways {
    padding: clamp(70px, 9vw, 118px) 0;
}

.section-title {
    max-width: 760px;
    font-size: clamp(2rem, 4.8vw, 4.4rem);
}

.section-desc {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: 1.02rem;
}

.content-main {
    border-top: 1px solid var(--line);
    padding: clamp(42px, 7vw, 86px) 0 clamp(58px, 8vw, 108px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.content-main section {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(34px, 5vw, 58px) 0;
    border-bottom: 1px solid var(--line);
}

.content-main section:first-child {
    padding-top: 0;
}

.content-main section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.content-main h2,
.content-main h3 {
    margin: 0;
    color: var(--text);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.content-main h2 {
    max-width: 780px;
    font-size: clamp(2rem, 4.7vw, 4.1rem);
}

.content-main h3 {
    margin-top: 34px;
    color: var(--green);
    font-size: clamp(1.28rem, 2.1vw, 1.85rem);
}

.content-main p,
.content-main li {
    color: var(--muted-strong);
    font-size: 1.04rem;
    line-height: 1.78;
}

.content-main p {
    margin: 18px 0 0;
}

.content-main ul {
    display: grid;
    gap: 14px;
    margin: 26px 0 0;
    padding-left: 22px;
}

.content-main li::marker {
    color: var(--green);
}

.content-main strong {
    color: var(--text);
}

.content-hero-media {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    min-height: clamp(280px, 40vw, 430px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.content-hero-img {
    width: 100%;
    height: clamp(280px, 40vw, 430px);
    object-fit: cover;
}

.content-chip-img {
    position: absolute;
    right: clamp(16px, 4vw, 44px);
    bottom: clamp(14px, 3vw, 32px);
    width: min(240px, 42%);
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.44));
}

.feature-icon-grid,
.content-game-grid,
.content-payment-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.feature-icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-icon-card,
.content-payment-grid div {
    display: grid;
    place-items: center;
    min-height: 108px;
    padding: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-icon-card img {
    width: 38px;
    height: 38px;
}

.feature-icon-card span {
    margin-top: 12px;
    color: var(--muted-strong);
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
}

.content-game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-game-grid figure {
    overflow: hidden;
    margin: 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.content-game-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.content-game-grid figcaption {
    padding: 14px 16px 16px;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 900;
}

.content-wide-img {
    width: 100%;
    max-height: 360px;
    margin-bottom: 34px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.content-payment-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.content-payment-grid img {
    max-width: 110px;
    max-height: 42px;
    object-fit: contain;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.metric-card {
    min-height: 220px;
    padding: 24px;
    background: linear-gradient(180deg, var(--panel-strong), var(--panel));
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.metric-card img {
    width: 36px;
    height: 36px;
    margin-bottom: 34px;
}

.metric-val {
    display: block;
    color: var(--green);
    font-size: clamp(2.3rem, 4.8vw, 4.1rem);
    font-weight: 900;
    line-height: 1;
}

.metric-name {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pulse-animation {
    animation: pulseGlow 1.8s ease-in-out infinite;
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.game-item {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.game-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(3, 5, 4, 0.94));
}

.game-item img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 420ms ease, filter 420ms ease;
}

.game-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.15);
}

.game-meta {
    position: absolute;
    inset: auto 22px 22px;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.game-meta h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.05;
}

.tag-jackpot {
    flex: 0 0 auto;
    padding: 7px 10px;
    color: var(--green);
    background: rgba(0, 209, 94, 0.08);
    border: 1px solid rgba(0, 209, 94, 0.34);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-top: 40px;
}

.pay-method {
    display: grid;
    place-items: center;
    min-height: 106px;
    padding: 20px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pay-method:hover {
    border-color: var(--green);
    box-shadow: 0 0 28px rgba(0, 209, 94, 0.12);
    transform: translateY(-2px);
}

.pay-method img {
    max-width: 122px;
    max-height: 44px;
    object-fit: contain;
}

.conversion-footer {
    padding: clamp(76px, 10vw, 130px) 0;
}

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

.neon-heading-small {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(2.2rem, 5.5vw, 5rem);
}

.massive-btn {
    min-height: 62px;
    margin-top: 34px;
    padding: 0 34px;
    font-size: 1.06rem;
}

.section-desc-mt {
    margin-top: 14px;
}

.about-casino {
    border-top: 1px solid var(--line);
    padding: clamp(70px, 9vw, 118px) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    margin-top: 32px;
}

.about-text {
    margin: 0;
    color: var(--muted-strong);
    font-size: 1.02rem;
    line-height: 1.75;
}

.brand-banner {
    border-top: 1px solid var(--line);
    overflow: hidden;
    line-height: 0;
}

.brand-banner img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vip-showcase {
    border-top: 1px solid var(--line);
    padding: clamp(70px, 9vw, 118px) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.vip-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.vip-image {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    line-height: 0;
}

.vip-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 420ms ease;
}

.vip-image:hover img {
    transform: scale(1.03);
}

.vip-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.vip-content .section-desc {
    margin-top: 20px;
}

.conversion-footer {
    position: relative;
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    line-height: 0;
}

.footer-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.07;
}

.conversion-footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo-card {
    display: inline-block;
    background: white;
    border-radius: 12px;
    padding: 14px 28px;
    margin-bottom: 36px;
}

.footer-logo-card img {
    width: 200px;
    height: auto;
    display: block;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 209, 94, 0.55); }
    50% { box-shadow: 0 0 0 5px rgba(0, 209, 94, 0); }
}

@keyframes pulseGlow {
    0%,
    100% {
        text-shadow: 0 0 0 rgba(0, 209, 94, 0);
    }
    50% {
        text-shadow: 0 0 28px var(--green-glow);
    }
}

@media (max-width: 980px) {
    .hero-img-frame {
        width: 100%;
        opacity: 0.4;
    }

    .hero-img-frame::before {
        background:
            linear-gradient(0deg, var(--black) 0%, transparent 55%),
            linear-gradient(180deg, rgba(3, 5, 4, 0.85) 0%, transparent 25%);
    }

    .hero-content {
        width: min(660px, calc(100% - 40px));
        margin-left: 20px;
    }

    .metrics-grid,
    .games-showcase,
    .payment-grid,
    .feature-icon-grid,
    .content-payment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-game-grid {
        grid-template-columns: 1fr;
    }

    .vip-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .navbar-dark {
        position: static;
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
    }

    .auth-group,
    .action-buttons {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .auth-group button,
    .auth-group a,
    .action-buttons button,
    .action-buttons a {
        width: 100%;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero-content {
        width: calc(100% - 28px);
        margin-left: 14px;
    }

    .hero-trust {
        gap: 14px;
    }

    .metrics-grid,
    .games-showcase,
    .payment-grid,
    .feature-icon-grid,
    .content-payment-grid {
        grid-template-columns: 1fr;
    }

    .content-main section {
        width: min(100% - 28px, 920px);
    }

    .content-chip-img {
        width: min(180px, 52%);
    }

    .metric-card {
        min-height: 190px;
    }

    .game-item,
    .game-item img {
        min-height: 360px;
    }
}
