:root {
    --bg:           #08050d;
    --bg-elev:      #110a1a;
    --surface:      #1a0f29;
    --border:       rgba(168, 120, 240, 0.12);
    --border-soft:  rgba(168, 120, 240, 0.06);
    --border-hover: rgba(168, 120, 240, 0.35);

    --text:    #f5eeff;
    --muted:   #9b8cb5;
    --subtle:  #6b5d85;

    --violet:       #8b5cf6;
    --violet-deep:  #6d28d9;
    --violet-glow:  rgba(139, 92, 246, 0.35);
    --violet-soft:  rgba(139, 92, 246, 0.12);
}

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

html:not(.age-verified) body { overflow: hidden; }
html.age-verified .age-gate { display: none; }

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 5, 13, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: ageGateFade 0.35s ease-out;
}
.age-gate.is-leaving {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
@keyframes ageGateFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.age-gate-card {
    position: relative;
    max-width: 460px;
    width: 100%;
    padding: 44px 36px 32px;
    background: linear-gradient(155deg, var(--bg-elev) 0%, var(--surface) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 18px;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.08),
        0 40px 100px -20px rgba(76, 29, 149, 0.7),
        0 0 80px -10px rgba(139, 92, 246, 0.3);
    animation: ageGateRise 0.5s cubic-bezier(.2,.7,.2,1);
}
@keyframes ageGateRise {
    from { transform: translateY(14px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.age-gate-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 1.5px solid var(--violet);
    background: var(--violet-soft);
    color: var(--violet);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.02em;
    box-shadow: 0 0 32px var(--violet-glow);
}

.age-gate-title {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 14px;
}

.age-gate-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.age-gate-btn {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.age-gate-btn--confirm {
    background: var(--violet);
    color: #fff;
    box-shadow: 0 10px 28px -10px var(--violet-glow);
}
.age-gate-btn--confirm:hover {
    background: var(--violet-deep);
    box-shadow: 0 12px 36px -8px var(--violet-glow);
    transform: translateY(-1px);
}
.age-gate-btn--leave {
    background: transparent;
    color: var(--muted);
    border-color: var(--border);
}
.age-gate-btn--leave:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: var(--violet-soft);
}

.age-gate-foot {
    color: var(--subtle);
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .age-gate-card { padding: 36px 24px 26px; }
    .age-gate-title { font-size: 21px; }
    .age-gate-desc { font-size: 13px; }
    .age-gate-btn { font-size: 12px; padding: 13px 16px; }
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%,  rgba(109, 40, 217, 0.22), transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 40%, rgba(76, 29, 149, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.055;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.banner-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flank-mark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: clamp(120px, 16vw, 240px);
    letter-spacing: -0.06em;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 2px var(--violet);
    text-stroke: 2px var(--violet);
    opacity: 0.22;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
    text-shadow: 0 0 60px rgba(139, 92, 246, 0.25);
}
.flank-left  { right: 100%; margin-right: 28px; }
.flank-right { left: 100%;  margin-left: 28px; }
@media (max-width: 1200px) { .flank-mark { display: none; } }

main, header, footer { position: relative; z-index: 1; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

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

.display { font-weight: 800; letter-spacing: -0.02em; }
.mono    { font-family: ui-monospace, 'SF Mono', Menlo, monospace; }

header {
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    background: rgba(8, 5, 13, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 50;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 18px;
}
.nav-brand {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.14em;
    color: var(--text);
    text-transform: uppercase;
}
.nav-brand span { color: var(--violet); font-weight: 700; }
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
}
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }

.nav-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    font-size: 14px;
    transition: all 0.25s ease;
}
.nav-icon:hover {
    color: var(--text);
    border-color: var(--violet);
    background: var(--violet-soft);
    box-shadow: 0 0 18px var(--violet-glow);
}

.cta-pill {
    color: var(--text) !important;
    border: 1px solid var(--violet);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cta-pill i {
    color: var(--violet);
    font-size: 13px;
}
.cta-pill:hover {
    background: var(--violet-soft);
    border-color: var(--violet);
    box-shadow: 0 0 24px var(--violet-glow);
}

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .nav { padding-block: 12px; }
    .nav-brand { font-size: 14px; letter-spacing: 0.1em; }
    .nav-links { gap: 8px; }
    .nav-links a:not(.cta-pill):not(.nav-icon) { display: none; }
    .nav-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .cta-pill {
        width: 34px;
        height: 34px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        gap: 0;
    }
    .cta-pill-label { display: none; }
    .cta-pill i { font-size: 13px; }
}
@media (max-width: 360px) {
    .nav-brand { font-size: 13px; letter-spacing: 0.06em; }
    .nav-links { gap: 6px; }
}

.hero {
    padding: 56px 0 96px;
}
@media (max-width: 720px) { .hero { padding: 32px 0 64px; } }

.banner-frame {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.06),
        0 30px 80px -20px rgba(76, 29, 149, 0.55),
        0 0 60px -10px rgba(139, 92, 246, 0.25);
    background: var(--bg-elev);
    z-index: 1;
}
.banner-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.banner-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent, var(--bg-elev) 95%);
    pointer-events: none;
}
.banner-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(8, 5, 13, 0.35));
    pointer-events: none;
}

.marquee {
    margin-top: 36px;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(26, 15, 41, 0.45);
    padding: 18px 0;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}
.marquee-group {
    display: flex;
    align-items: center;
    gap: 52px;
    padding-right: 52px;
    flex-shrink: 0;
}
.marquee-item {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.marquee-item i { color: var(--violet); font-size: 13px; }
.marquee-item.muted { color: var(--violet); }
.marquee-sep {
    color: var(--violet);
    font-size: 8px;
    opacity: 0.7;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hero-meta {
    margin-top: 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.hero-bio {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}
.hero-bio strong { color: var(--text); font-weight: 600; }

.hero-meta-line {
    font-size: 11px;
    font-weight: 600;
    color: var(--subtle);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.hero-meta-line::before,
.hero-meta-line::after {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--violet);
    opacity: 0.5;
}
@media (max-width: 720px) {
    .hero-bio { font-size: 16px; }
    .hero-meta-line { letter-spacing: 0.22em; font-size: 10px; }
    .hero-meta-line::before, .hero-meta-line::after { width: 22px; }
}

section.block { padding: 100px 0; }
@media (max-width: 720px) { section.block { padding: 64px 0; } }

.section-head {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--violet);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--violet);
    opacity: 0.5;
}
.section-title {
    font-weight: 800;
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}
.section-title span { color: var(--violet); }
.section-sub {
    color: var(--muted);
    font-size: 14px;
    max-width: 480px;
    line-height: 1.7;
}
@media (max-width: 720px) {
    .section-title { font-size: 32px; }
    .section-head { margin-bottom: 44px; }
}

.casinos {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.casino {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--bg-elev) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    color: inherit;
    transition:
        transform 0.3s cubic-bezier(.2,.7,.2,1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    isolation: isolate;
}
.casino::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 120% at 0% 50%, var(--violet-soft), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
    pointer-events: none;
}
.casino:hover {
    border-color: var(--violet);
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px -20px rgba(76, 29, 149, 0.65),
        0 0 0 1px rgba(139, 92, 246, 0.15);
}
.casino:hover::before { opacity: 1; }

.casino-index {
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--violet);
    opacity: 0.55;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
.casino-logo {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-elev);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.casino-info { min-width: 0; }
.casino-name {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.casino-meta {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.casino-meta b {
    color: var(--text);
    font-weight: 600;
}

.casino-code-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    color: var(--subtle);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}
.casino-code-chip strong {
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    color: var(--violet);
    font-size: 12px;
    letter-spacing: 0.14em;
    font-weight: 700;
    padding: 5px 10px;
    background: var(--violet-soft);
    border: 1px solid var(--border-hover);
    border-radius: 6px;
}

.casino-cta {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--violet);
    font-size: 12px;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
    flex-shrink: 0;
}
.casino:hover .casino-cta {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff;
    transform: rotate(-45deg);
}

@media (max-width: 720px) {
    .casino {
        grid-template-columns: 28px 1fr 38px;
        grid-template-rows: auto auto;
        gap: 12px 14px;
        padding: 18px 18px 16px;
        align-items: center;
    }
    .casino-index {
        grid-column: 1;
        grid-row: 1;
        font-size: 15px;
        text-align: left;
        align-self: center;
    }
    .casino--has-logo {
        grid-template-columns: 40px 1fr 38px;
    }
    .casino-logo {
        grid-column: 1;
        grid-row: 1;
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    .casino-info {
        grid-column: 2;
        grid-row: 1;
    }
    .casino-name { font-size: 16px; margin-bottom: 3px; }
    .casino-meta { font-size: 12px; }
    .casino-cta {
        grid-column: 3;
        grid-row: 1;
        width: 38px;
        height: 38px;
    }
    .casino-code-chip {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: start;
        margin: 4px 0 0;
        padding-top: 12px;
        border-top: 1px solid var(--border-soft);
        width: 100%;
        justify-content: flex-start;
    }
}

section.block#bonus {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
section.block#bonus > .container {
    position: relative;
    z-index: 2;
}
section.block#bonus::before,
section.block#bonus::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    filter: blur(60px);
}
section.block#bonus::before {
    width: 540px;
    height: 540px;
    top: 4%;
    left: -180px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.32) 0%, transparent 65%);
    animation: blobDrift1 22s ease-in-out infinite;
}
section.block#bonus::after {
    width: 480px;
    height: 480px;
    bottom: 6%;
    right: -180px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.28) 0%, transparent 65%);
    animation: blobDrift2 28s ease-in-out infinite;
}

.hero-meta {
    position: relative;
    z-index: 1;
}
.hero-meta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 620px;
    height: 360px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139, 92, 246, 0.18), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: -1;
    animation: spotlightPulse 6s ease-in-out infinite;
}

section.block#bonus {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(168, 120, 240, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    background-position: 0 0;
}

@keyframes blobDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(60px, -40px) scale(1.08); }
    66%      { transform: translate(-30px, 50px) scale(0.95); }
}
@keyframes blobDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-50px, 30px) scale(1.05); }
    66%      { transform: translate(40px, -50px) scale(0.92); }
}
@keyframes spotlightPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    section.block#bonus::before,
    section.block#bonus::after,
    .hero-meta::before { animation: none; }
}

@media (max-width: 720px) {
    section.block#bonus::before {
        width: 340px;
        height: 340px;
        left: -120px;
    }
    section.block#bonus::after {
        width: 300px;
        height: 300px;
        right: -120px;
    }
    .hero-meta::before {
        width: 380px;
        height: 240px;
    }
}

footer {
    padding: 56px 0 48px;
    color: var(--subtle);
    font-size: 12px;
    letter-spacing: 0.04em;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
    color: var(--muted);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer-socials a i { font-size: 15px; color: var(--violet); transition: color 0.2s ease; }
.footer-socials a:hover { color: var(--text); }
.footer-socials a:hover i { color: #fff; }
.footer-disclaimer {
    margin-top: 24px;
    color: var(--subtle);
    max-width: 580px;
    line-height: 1.7;
}
.footer-disclaimer a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 640px) {
    footer { padding: 44px 0 36px; text-align: center; }
    .footer-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;
    }
    .footer-socials {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer-disclaimer {
        margin: 20px auto 0;
        text-align: center;
    }
}
.new-casino-banner {
    position: relative;

    margin: 60px auto 0;

    max-width: 920px;

    padding: 28px;

    border-radius: 22px;

    border: 1px solid rgba(168, 120, 240, 0.22);

    background:
        linear-gradient(
            180deg,
            rgba(20, 10, 35, 0.95),
            rgba(12, 7, 22, 0.98)
        );

    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.08),
        0 25px 80px -20px rgba(76, 29, 149, 0.65),
        0 0 60px -10px rgba(139, 92, 246, 0.18);

    overflow: hidden;
}

.new-casino-banner::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at left center,
            rgba(139, 92, 246, 0.18),
            transparent 40%
        );

    pointer-events: none;
}

.new-casino-tag {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    color: #d5b7ff;

    font-size: 18px;
    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.new-casino-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.new-casino-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.new-casino-logo {
    width: 96px;
    height: 96px;

    border-radius: 16px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    background: #111;
}

.new-casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-casino-text h3 {
    font-size: 30px;
    font-weight: 800;

    color: white;

    margin-bottom: 8px;

    letter-spacing: -0.02em;
}

.new-casino-text p {
    color: var(--muted);

    line-height: 1.7;

    font-size: 15px;
}

.new-casino-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 18px 28px;

    border-radius: 14px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #a855f7
        );

    color: white;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: all 0.25s ease;
}

.new-casino-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 30px rgba(168, 85, 247, 0.35);
}

@media (max-width: 768px) {

    .new-casino-banner {
        padding: 24px 20px;
    }

    .new-casino-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-casino-left {
        width: 100%;
    }

    .new-casino-logo {
        width: 72px;
        height: 72px;
    }

    .new-casino-text h3 {
        font-size: 24px;
    }

    .new-casino-btn {
        width: 100%;
        justify-content: center;
    }

    .new-casino-tag {
        font-size: 15px;
        text-align: center;
    }
}