:root {
    color-scheme: dark;
    --background: #170610;
    --panel: #24101c;
    --gold: #ffb51c;
    --gold-light: #ffd878;
    --text: #f5e9d8;
    --muted: #bbaa9f;
    --line: #ffffff12;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    line-height: 1.65;
}

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

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

a, summary, label {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible, summary:focus-visible, input:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 5px;
}

a, summary {
    touch-action: manipulation;
}

[hidden] {
    display: none !important;
}

::selection {
    color: #170610;
    background: var(--gold);
}

.site-header {
    position: relative;
    z-index: 20;
    background: #160a10;
    border-bottom: 1px solid var(--line);
}

.header-inner {
    max-width: 1440px;
    margin: auto;
    min-height: 96px;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    flex-shrink: 0;
}

.brand img {
    width: 205px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}

.desktop-nav a {
    font-size: .875rem;
    color: #e1d4c5;
    padding: 10px 0;
}

.desktop-nav a:hover, .footer-nav a:hover {
    color: var(--gold);
}

.login-link {
    border: 1px solid #a87b2d60;
    background: #49311460;
    padding: 9px 29px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: bold;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 555px;
    background: #172012;
}

.hero-image {
    position: absolute;
    z-index: -3;
    right: 0;
    top: 0;
    height: 100%;
    width: 78%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, #15150feb 0%, #18180eee 24%, #172014a8 43%, #17201408 66%), linear-gradient(0deg, #170610 0%, transparent 22%);
}

.hero-content {
    max-width: 1360px;
    margin: auto;
    padding: 50px 40px 72px;
}

.eyebrow {
    color: var(--gold);
    font-size: .75rem;
    letter-spacing: .18em;
    font-weight: bold;
}

.hero-title {
    margin: 14px 0 20px;
    font-size: clamp(2.8rem, 4.6vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 900;
}

em {
    color: var(--gold);
    font-style: normal;
}

.hero-offer {
    margin: 0 0 25px;
    font-size: 1.3rem;
    line-height: 1.5;
}

.hero-offer strong {
    color: var(--gold-light);
    font-size: 1.55rem;
}

.cta {
    min-height: 50px;
    padding: 13px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: linear-gradient(135deg, #ffd154, #ffa50b);
    border-radius: 8px;
    color: #301d08;
    font-weight: 800;
    box-shadow: 0 5px 24px #e7a4111a;
    transition: transform .18s, filter .18s;
}

.cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
}

.cta span {
    font-size: 1.25rem;
    line-height: 1;
}

.hero-terms {
    max-width: 350px;
    font-size: .75rem;
    color: #c6bba6;
    line-height: 1.6;
    margin-top: 17px;
}

.hero-caption {
    position: absolute;
    right: 36px;
    bottom: 28px;
    color: #ffefc6b0;
    font-size: .75rem;
    letter-spacing: .12em;
}

.page-container {
    width: min(1280px, calc(100% - 80px));
    margin: auto;
}

.welcome {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 65px 0 55px;
}

.welcome-picture {
    position: relative;
    align-self: stretch;
    overflow: hidden;
    border-radius: 12px;
    background: #23392b;
    min-height: 330px;
}

.welcome-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-picture::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(0deg, #102314ed, transparent);
}

.welcome-picture > span {
    position: absolute;
    z-index: 1;
    left: 28px;
    right: 20px;
    bottom: 25px;
    color: var(--gold-light);
    font-size: .75rem;
    letter-spacing: .15em;
}

.welcome-picture strong {
    display: block;
    font-size: 1.4rem;
    letter-spacing: -.025em;
    color: #fff5de;
}

.welcome-content > p:not(.welcome-title) {
    color: var(--muted);
}

.welcome-title {
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -.04em;
    margin: 10px 0 18px;
}

.bonus-steps {
    list-style: none;
    padding: 0;
    margin: 24px 0 16px;
    display: grid;
    gap: 12px;
}

.bonus-steps li {
    display: flex;
    gap: 16px;
    align-items: center;
}

.bonus-steps li > span {
    color: #dca542;
    font-size: .875rem;
    width: 35px;
    height: 35px;
    border: 1px solid #80603150;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.bonus-steps strong {
    color: #f6d990;
    font-size: 1rem;
}

.bonus-steps small {
    display: block;
    font-size: .8rem;
    color: var(--muted);
}

.fine-print {
    font-size: .75rem;
}

.game-section {
    padding: 18px 0 26px;
}

.section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.section-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: bold;
    letter-spacing: -.025em;
}

.section-caption {
    color: var(--muted);
    font-size: .875rem;
    margin: 4px 0 0;
}

.subtle-link {
    flex-shrink: 0;
    font-size: .875rem;
    color: var(--gold-light);
    background: #402c14;
    padding: 8px 16px;
    border-radius: 7px;
}

.subtle-link span {
    margin-left: 12px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.game-card {
    min-width: 0;
}

.game-art {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #351629;
    border: 1px solid #ffffff0a;
}

.game-art img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
    transition: transform .3s;
}

.game-card:hover .game-art img {
    transform: scale(1.04);
}

.play-label {
    position: absolute;
    inset: auto 12px 12px;
    padding: 8px;
    text-align: center;
    background: var(--gold);
    color: #281509;
    font-size: .875rem;
    font-weight: bold;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(8px);
    transition: .2s;
}

.game-card:hover .play-label, .game-card:focus-visible .play-label {
    opacity: 1;
    transform: translateY(0);
}

.game-caption {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 5px;
    font-size: .875rem;
    padding: 9px 1px;
}

.game-caption small {
    font-size: .625rem;
    letter-spacing: .03em;
    padding: 2px 7px;
    border-radius: 20px;
    background: #183b25;
    color: #83e3a3;
}

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

.jackpots .game-art img {
    aspect-ratio: 1.18;
}

.classics .game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.classics .game-art img, .exclusive .game-art img {
    aspect-ratio: .76;
}

.exclusive .game-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 13px;
}

.exclusive .game-caption {
    font-size: .8rem;
}

article {
    border-top: 1px solid var(--line);
    margin: 34px 0 52px;
    padding-top: 30px;
    color: var(--muted);
}

article h1, article h2, article h3, article h4 {
    line-height: 1.25;
    letter-spacing: -.025em;
    color: var(--gold);
    scroll-margin-top: 25px;
}

article h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.65rem);
    margin: 0 0 22px;
    max-width: 1000px;
}

article h2 {
    font-size: 1.75rem;
    margin: 34px 0 16px;
}

article h3 {
    color: #eed2a0;
    font-size: 1.3rem;
    margin: 28px 0 12px;
}

article h4 {
    color: var(--text);
    font-size: 1.05rem;
    margin: 24px 0 10px;
}

article p {
    margin: 12px 0 20px;
}

article strong {
    color: #f0dfc2;
}

article a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 4px;
}

article ul, article ol {
    padding-left: 25px;
}

article li {
    margin: 9px 0;
    padding-left: 5px;
}

article li::marker {
    color: var(--gold);
}

article blockquote {
    border-left: 3px solid var(--gold);
    margin: 25px 0;
    padding: 10px 26px;
    background: #ffffff04;
    color: #ead7bb;
}

article blockquote p {
    margin: 8px 0;
}

article [role="region"] {
    overflow-x: auto;
    margin: 25px 0;
    border: 1px solid #88673038;
    border-radius: 9px;
}

article table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: .875rem;
    min-width: 580px;
}

article th {
    background: #382511;
    color: #f4d793;
    font-weight: bold;
}

article th, article td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
}

article tr:last-child td {
    border-bottom: 0;
}

article tbody tr:nth-child(even) {
    background: #ffffff03;
}

article hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 28px 0;
}

article small {
    font-size: .875rem;
}

.payments {
    padding: 25px 0;
}

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

.payment-grid a {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.payment-grid img {
    width: 100%;
    aspect-ratio: 1.9;
    object-fit: contain;
}

.faq {
    margin: 70px 0;
}

.faq-intro {
    text-align: center;
    margin-bottom: 30px;
}

.display-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.15;
    margin: 12px 0;
    color: var(--gold);
}

.faq-intro > p:last-child {
    color: var(--muted);
    margin: 10px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.faq details {
    background: #30200f;
    border: 1px solid #8c63252a;
    border-radius: 9px;
}

.faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    font-size: .95rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

.faq summary > span {
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.faq details[open] summary > span {
    transform: rotate(45deg);
}

.faq details > p {
    padding: 0 22px 22px;
    margin: 0;
    color: #d5c3ab;
    font-size: .95rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    width: min(1280px, calc(100% - 80px));
    margin: auto;
    padding: 50px 0 150px;
}

.footer-brand img {
    width: 205px;
    margin: 0 auto 45px;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.25fr;
    gap: 35px;
}

.footer-nav > div {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-nav strong {
    color: #e9d4b9;
    font-size: .95rem;
    margin-bottom: 15px;
}

.footer-nav a {
    color: var(--muted);
    font-size: .875rem;
    padding: 5px 0;
}

.responsible p {
    font-size: .875rem;
    color: var(--muted);
    margin: 0;
}

.age {
    border: 1px solid #b4a28d;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 13px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: #ad968e;
    text-align: center;
    font-size: .75rem;
}

.footer-bottom p {
    margin: 7px auto;
    max-width: 900px;
}

.catfish {
    position: fixed;
    z-index: 50;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(980px, calc(100% - 32px));
    border: 1px solid #a77e35;
    border-radius: 13px;
    background: linear-gradient(110deg, #332011, #23151a 65%, #3a2512);
    box-shadow: 0 10px 60px #000a;
    animation: appear .35s ease;
}

.catfish-inner {
    display: flex;
    align-items: center;
    padding: 15px 52px 15px 20px;
    gap: 22px;
}

.catfish-inner > img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.catfish-copy {
    flex: 1;
}

.catfish-copy > span {
    display: block;
    font-size: .75rem;
    color: #d3c0a2;
}

.catfish-copy strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1.3;
    letter-spacing: -.03em;
}

.catfish-copy small {
    display: block;
    font-size: .75rem;
    color: #c0aa91;
    margin-top: 5px;
}

.dismiss {
    position: absolute;
    right: 7px;
    top: 7px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #dcc8a9;
    font-size: 1.4rem;
    pointer-events: none;
}

.dismiss-input {
    appearance: none;
    position: absolute;
    right: 7px;
    top: 7px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin: 0;
    border-radius: 4px;
    z-index: 1;
}

.dismiss-input:hover {
    background: #ffffff12;
}

.legal-page {
    max-width: 960px;
    min-height: 65vh;
    padding-top: 55px;
}

.legal-kicker {
    font-size: .75rem;
    letter-spacing: .16em;
    color: var(--gold);
}

.legal-page article {
    margin-top: 22px;
    border: 0;
    padding-top: 0;
}

@keyframes appear {
    from {
        opacity: 0;
        translate: 0 25px;
    }
    to {
        opacity: 1;
        translate: 0 0;
    }
}

@media (min-width: 1600px) {
    .hero-image {
        width: 72%;
    }
    .hero-content {
        padding-left: 40px;
    }
}

@media (max-width: 1100px) {
    .header-inner {
        gap: 20px;
        padding: 18px 28px;
    }
    .brand img {
        width: 175px;
    }
    .desktop-nav {
        gap: 18px;
    }
    .desktop-nav a {
        font-size: .8rem;
    }
    .login-link {
        padding: 8px 19px;
    }
    .page-container, .site-footer {
        width: calc(100% - 56px);
    }
    .welcome {
        gap: 30px;
    }
    .game-caption small {
        display: none;
    }
    .exclusive .game-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .header-inner {
        min-height: 78px;
        padding: 16px 24px;
    }
    .desktop-nav {
        display: none;
    }
    .login-link {
        margin-left: auto;
    }
    .mobile-menu {
        display: block;
    }
    .mobile-menu > summary {
        width: 42px;
        height: 42px;
        border: 1px solid #8f662641;
        border-radius: 7px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }
    .mobile-menu > summary span {
        width: 19px;
        height: 2px;
        background: var(--gold);
    }
    .mobile-menu nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% - 3px);
        padding: 15px;
        background: #27151c;
        border: 1px solid #825b25;
        border-radius: 9px;
        box-shadow: 0 20px 40px #0008;
        max-height: 75vh;
        overflow-y: auto;
    }
    .mobile-menu nav a {
        display: block;
        padding: 11px 14px;
        color: #f5dfb5;
        font-size: .95rem;
        border-radius: 5px;
    }
    .mobile-menu nav a:hover {
        background: #54371e;
    }
    .hero {
        min-height: 545px;
    }
    .hero-content {
        padding-left: 28px;
    }
    .hero-image {
        width: 100%;
        object-position: 58% center;
    }
    .hero::before {
        background: linear-gradient(90deg, #15150ff2, #15150fa8 48%, #15150f22), linear-gradient(0deg, #170610, transparent 35%);
    }
    .hero-caption {
        display: none;
    }
    .welcome {
        grid-template-columns: 1fr;
        padding-top: 35px;
        gap: 26px;
    }
    .welcome-picture {
        min-height: 0;
        aspect-ratio: 1.9;
    }
    .welcome-title br {
        display: none;
    }
    .welcome-content > p {
        max-width: 620px;
    }
    .bonus-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .bonus-steps li {
        align-items: start;
        gap: 10px;
    }
    .bonus-steps li > span {
        width: 27px;
        height: 27px;
        font-size: .75rem;
    }
    .game-grid {
        gap: 12px;
    }
    .game-caption {
        font-size: .8rem;
    }
    .classics .game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .payment-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
    .catfish-inner {
        gap: 13px;
    }
    .catfish-inner > img {
        width: 44px;
        height: 44px;
    }
    .catfish-copy strong {
        font-size: 1.15rem;
    }
    .catfish .cta {
        padding: 11px 15px;
        font-size: .875rem;
        gap: 12px;
    }
}

@media (max-width: 540px) {
    .header-inner {
        min-height: 72px;
        padding: 13px 18px;
        gap: 12px;
    }
    .brand img {
        width: 148px;
    }
    .login-link {
        font-size: .8rem;
        padding: 7px 15px;
    }
    .mobile-menu > summary {
        width: 38px;
        height: 38px;
    }
    .hero {
        min-height: 580px;
    }
    .hero-image {
        height: 59%;
        width: 100%;
        object-position: 67% center;
    }
    .hero::before {
        background: linear-gradient(0deg, #170610 0%, #170610 39%, #170610b5 61%, #17061000 85%);
    }
    .hero-content {
        padding: 227px 22px 30px;
    }
    .hero-title {
        font-size: 2.6rem;
        margin: 10px 0 14px;
    }
    .hero-title br {
        display: none;
    }
    .hero-offer {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .hero-offer strong {
        font-size: 1.45rem;
    }
    .hero .cta {
        width: 100%;
    }
    .hero-terms {
        max-width: none;
        margin-bottom: 0;
    }
    .page-container, .site-footer {
        width: calc(100% - 36px);
    }
    .welcome {
        padding: 24px 0 25px;
    }
    .welcome-picture {
        aspect-ratio: 1.45;
        border-radius: 9px;
    }
    .welcome-picture > span {
        left: 18px;
        bottom: 17px;
        font-size: .65rem;
    }
    .welcome-picture strong {
        font-size: 1.15rem;
    }
    .welcome-title {
        font-size: 2rem;
    }
    .bonus-steps {
        grid-template-columns: 1fr;
    }
    .bonus-steps li > span {
        width: 33px;
        height: 33px;
    }
    .bonus-steps small {
        font-size: .8rem;
    }
    .section-title {
        font-size: 1.25rem;
    }
    .section-caption {
        font-size: .8rem;
    }
    .subtle-link {
        padding: 7px 10px;
        font-size: .75rem;
    }
    .subtle-link span {
        margin-left: 4px;
    }
    .game-grid, .jackpots .game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .jackpots .game-card:last-child {
        grid-column: 1 / -1;
    }
    .jackpots .game-card:last-child .game-art img {
        aspect-ratio: 1.8;
        object-position: center 53%;
    }
    .classics .game-grid, .exclusive .game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .classics .game-caption, .exclusive .game-caption {
        font-size: .75rem;
        line-height: 1.35;
    }
    .game-art {
        border-radius: 7px;
    }
    .game-section {
        padding-bottom: 14px;
    }
    article {
        padding-top: 24px;
        margin: 24px 0 35px;
    }
    article h1 {
        font-size: 1.9rem;
    }
    article h2 {
        font-size: 1.5rem;
    }
    article h3 {
        font-size: 1.2rem;
    }
    article th, article td {
        padding: 12px 14px;
    }
    article blockquote {
        padding: 8px 18px;
    }
    .payments {
        padding: 15px 0;
    }
    .payment-grid {
        gap: 8px;
    }
    .faq {
        margin: 45px 0;
    }
    .faq summary {
        padding: 17px;
        font-size: .9rem;
    }
    .faq details > p {
        padding: 0 17px 17px;
    }
    .site-footer {
        padding-top: 35px;
        padding-bottom: 185px;
    }
    .footer-brand img {
        width: 185px;
    }
    .footer-nav {
        gap: 25px 18px;
    }
    .footer-nav strong {
        font-size: .85rem;
    }
    .footer-nav a {
        font-size: .8rem;
    }
    .catfish {
        bottom: 9px;
        width: calc(100% - 18px);
        border-radius: 10px;
    }
    .catfish-inner {
        padding: 12px 35px 12px 12px;
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 9px 12px;
    }
    .catfish-inner > img {
        width: 40px;
        height: 40px;
    }
    .catfish-copy > span {
        font-size: .7rem;
    }
    .catfish-copy strong {
        font-size: 1.1rem;
    }
    .catfish-copy small {
        font-size: .65rem;
        line-height: 1.4;
    }
    .catfish .cta {
        grid-column: 1 / -1;
        min-height: 40px;
        padding: 8px 14px;
        justify-content: center;
    }
    .legal-page {
        padding-top: 35px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}


/* Layout variations retain the shared mobile flow. */
@media (min-width: 851px) {
    .welcome-picture {
        order: 2;
    }

    .welcome-content {
        order: 1;
    }
}
