:root {
    --navy-950: #02051f;
    --navy-900: #07153e;
    --navy-800: #0b2456;
    --cyan: #65e8ff;
    --cyan-deep: #21b9d5;
    --magenta: #d50be9;
    --violet: #8628e8;
    --white: #ffffff;
    --muted: #b6c1db;
    --line: rgba(150, 165, 205, 0.2);
    --max: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--navy-950);
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 12%, rgba(32, 166, 209, 0.12), transparent 28rem),
        radial-gradient(circle at 82% 28%, rgba(213, 11, 233, 0.1), transparent 32rem);
    content: "";
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(101, 232, 255, 0.12);
    background: rgba(7, 21, 62, 0.94);
    backdrop-filter: blur(14px);
}

.nav-shell {
    display: flex;
    min-height: 78px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    width: 174px;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 100%;
    mix-blend-mode: screen;
}

.main-nav {
    display: flex;
    margin-right: auto;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #eef3ff;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
    color: var(--cyan);
}

.header-actions {
    display: flex;
    gap: 12px;
}

.cta-link,
.secondary-link {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 24px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
}

.cta-link {
    background: linear-gradient(100deg, var(--violet), var(--magenta));
    box-shadow: 0 8px 28px rgba(213, 11, 233, 0.26);
}

.secondary-link {
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.burger {
    display: none;
    width: 46px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(101, 232, 255, 0.65);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.hero {
    position: relative;
    display: grid;
    min-height: 455px;
    overflow: hidden;
    place-items: center;
    isolation: isolate;
}

.hero > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(2, 5, 31, 0.04), rgba(2, 5, 31, 0.5) 48%, rgba(2, 5, 31, 0.04));
    content: "";
}

.hero-content {
    max-width: 620px;
    padding: 32px 44px 36px;
    border: 1px solid rgba(101, 232, 255, 0.28);
    border-radius: 28px;
    background: rgba(4, 10, 42, 0.78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(7px);
    text-align: center;
}

.eyebrow {
    margin: 0 0 6px;
    color: var(--cyan);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.65rem);
    line-height: 1.03;
    text-shadow: 0 4px 26px rgba(2, 5, 31, 0.7);
}

.hero-subtitle {
    margin: 12px 0 24px;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 800;
}

.hero .cta-link {
    min-width: 230px;
    font-size: 1.05rem;
}

.category-bar {
    border-top: 1px solid rgba(101, 232, 255, 0.12);
    border-bottom: 1px solid rgba(101, 232, 255, 0.12);
    background: #040726;
}

.category-scroll {
    display: flex;
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 24px;
    overflow-x: auto;
    align-items: center;
    gap: 10px;
    scrollbar-width: none;
}

.category-scroll span {
    flex: 0 0 auto;
    padding: 7px 14px;
    border: 1px solid rgba(101, 232, 255, 0.22);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.category-scroll span:first-child {
    border-color: var(--magenta);
    color: var(--white);
}

.casino-content {
    max-width: var(--max);
    margin: 0 auto;
    padding: 36px 24px 20px;
}

.slot-section {
    margin-bottom: 40px;
}

.section-label {
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 800;
}

.section-label i {
    color: #ffd34e;
    font-style: normal;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.slot-card {
    position: relative;
    overflow: hidden;
}

.slot-card > a {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: #10173d;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.slot-card > a:hover,
.slot-card > a:focus-visible {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.slot-card img {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
}

.slot-card strong,
.slot-card small {
    display: block;
    text-align: center;
}

.slot-card strong {
    margin-top: 9px;
    color: #50cbe3;
    font-size: 0.89rem;
    line-height: 1.25;
}

.slot-card small {
    color: #d9e0ef;
    font-weight: 700;
}

.divider {
    display: flex;
    margin: 34px 0 0;
    align-items: center;
    gap: 12px;
    color: var(--cyan);
}

.divider::before,
.divider::after {
    height: 1px;
    flex: 1;
    background: var(--line);
    content: "";
}

.divider span {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--navy-950);
    font-size: 0;
    font-weight: 900;
    place-items: center;
}

.divider span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "+";
    font-size: 1.7rem;
    line-height: 1;
    transform: translate(-50%, -54%);
}

.article-shell {
    max-width: 980px;
    margin: 18px auto 64px;
    padding: 34px;
    border: 1px solid rgba(101, 232, 255, 0.19);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(11, 36, 86, 0.82), rgba(5, 10, 44, 0.9));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.article-shell h1,
.article-shell h2,
.article-shell h3,
.article-shell h4,
.legal-page h1,
.legal-page h2,
.legal-page h3,
.legal-page h4 {
    color: var(--white);
    line-height: 1.18;
}

.article-shell h1,
.legal-page h1 {
    margin-top: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.article-shell h2,
.legal-page h2 {
    margin-top: 42px;
    color: var(--cyan);
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.article-shell h3,
.legal-page h3 {
    margin-top: 30px;
    font-size: 1.3rem;
}

.article-shell h4,
.legal-page h4 {
    margin-top: 24px;
    color: #e6a7ff;
    font-size: 1.05rem;
}

.article-shell p,
.article-shell li,
.legal-page p,
.legal-page li {
    color: #dbe3f5;
}

.article-shell ul,
.article-shell ol,
.legal-page ul {
    padding-left: 22px;
}

.article-shell blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--magenta);
    border-radius: 0 14px 14px 0;
    background: rgba(213, 11, 233, 0.08);
    color: #eef2ff;
}

.article-shell table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.article-shell th,
.article-shell td {
    padding: 12px 14px;
    border: 1px solid rgba(101, 232, 255, 0.18);
    text-align: left;
}

.article-shell th {
    background: rgba(101, 232, 255, 0.09);
    color: var(--cyan);
}

.faq-item {
    margin: 12px 0;
    border: 1px solid rgba(101, 232, 255, 0.18);
    border-radius: 14px;
    background: rgba(2, 5, 31, 0.4);
}

.faq-item summary {
    padding: 16px 18px;
    cursor: pointer;
    color: var(--white);
    font-weight: 800;
}

.faq-item p {
    margin: 0;
    padding: 0 18px 18px;
}

.legal-page {
    max-width: 900px;
    min-height: 60vh;
    margin: 50px auto 90px;
    padding: 40px;
    border: 1px solid rgba(101, 232, 255, 0.18);
    border-radius: 24px;
    background: rgba(7, 21, 62, 0.72);
}

.contact-card {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(213, 11, 233, 0.4);
    border-radius: 16px;
    background: rgba(213, 11, 233, 0.08);
}

.site-footer {
    padding: 48px 24px 150px;
    border-top: 1px solid rgba(101, 232, 255, 0.15);
    background: var(--navy-900);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
}

.footer-nav a {
    color: #dbe3f5;
    text-decoration-color: rgba(101, 232, 255, 0.5);
}

.trust-row {
    display: flex;
    margin: 22px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.trust-row .payment-badge,
.trust-row .age-badge {
    display: inline-flex;
    width: 104px;
    height: 58px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #f7f9ff;
    color: #10265a;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.trust-row .payment-badge img {
    width: 100%;
    max-width: 88px;
    max-height: 42px;
    object-fit: contain;
}

.trust-row .age-badge {
    width: 58px;
    border-radius: 50%;
    background: #8b96ac;
    color: #101a36;
}

.disclaimer {
    max-width: 920px;
    margin: 20px auto 0;
    color: #b6c1db;
    font-size: 0.88rem;
}

.catfish {
    position: fixed;
    right: 20px;
    bottom: 18px;
    left: 20px;
    z-index: 60;
    display: flex;
    max-width: 950px;
    margin: 0 auto;
    padding: 14px 18px;
    border: 1px solid rgba(101, 232, 255, 0.58);
    border-radius: 18px;
    background: linear-gradient(100deg, rgba(8, 29, 77, 0.97), rgba(74, 15, 112, 0.97));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 0.35s ease, transform 0.35s ease;
    align-items: center;
    gap: 16px;
}

.catfish.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.catfish-logo {
    width: 108px;
    flex: 0 0 auto;
    mix-blend-mode: screen;
}

.catfish-copy {
    min-width: 0;
    flex: 1;
}

.catfish-copy strong,
.catfish-copy span {
    display: block;
}

.catfish-copy strong {
    font-size: 1.05rem;
}

.catfish-copy span {
    color: #dbe3f5;
    font-size: 0.9rem;
}

.catfish .cta-link {
    flex: 0 0 auto;
}

.catfish-close {
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    place-items: center;
}

@media (max-width: 1080px) {
    .slot-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 26px;
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a:nth-last-child(-n + 2) {
        display: none;
    }
}

@media (max-width: 780px) {
    .nav-shell {
        min-height: 68px;
        gap: 12px;
    }

    .brand {
        width: 136px;
        margin-right: auto;
    }

    .burger {
        display: block;
        order: 3;
    }

    .main-nav {
        position: absolute;
        top: 68px;
        right: 0;
        left: 0;
        display: none;
        padding: 18px 24px 26px;
        border-bottom: 1px solid rgba(101, 232, 255, 0.2);
        background: #07153e;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a,
    .main-nav a:nth-last-child(-n + 2) {
        display: block;
        padding: 8px 0;
    }

    .secondary-link {
        display: none;
    }

    .header-actions .cta-link {
        min-height: 38px;
        padding: 7px 14px;
        font-size: 0.88rem;
    }

    .hero {
        min-height: 420px;
    }

    .hero > img {
        object-position: 50% center;
    }

    .hero::after {
        background: rgba(2, 5, 31, 0.42);
    }

    .article-shell,
    .legal-page {
        margin-right: 16px;
        margin-left: 16px;
        padding: 24px 20px;
    }

    .article-shell table {
        display: block;
        overflow-x: auto;
    }

    .catfish {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 12px;
        gap: 10px;
    }

    .catfish-logo {
        display: none;
    }

    .catfish .cta-link {
        padding: 9px 13px;
        font-size: 0.82rem;
    }
}

@media (max-width: 560px) {
    .nav-shell,
    .casino-content,
    .category-scroll {
        padding-right: 16px;
        padding-left: 16px;
    }

    .slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        row-gap: 24px;
    }

    .slot-card > a {
        border-radius: 13px;
    }

    .slot-card strong {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-content {
        margin: 0 16px;
        padding: 25px 18px 28px;
    }

    .catfish-copy span {
        display: none;
    }
}
