/* ===== CSS VARIABLES ===== */
:root {
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #0f0f0f;
    --color-bg-card: #141414;
    --color-bg-card-hover: #1a1a1a;
    --color-bg-alt: #0c0c0c;
    --color-gold: #c8a44e;
    --color-gold-light: #d4b86a;
    --color-gold-dark: #a07828;
    --color-gold-glow: rgba(200, 164, 78, 0.3);
    --color-text-primary: #f0ece4;
    --color-text-secondary: #b8b4aa;
    --color-text-muted: #8a867e;
    --color-text-dim: #5e5b55;
    --color-border-subtle: #1f1f1f;
    --color-border-medium: #2a2a2a;
    --color-border-gold: rgba(200, 164, 78, 0.3);
    --color-danger: #e74c3c;
    --color-success: #2ecc71;
    --font-family: 'Open Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 30px rgba(200, 164, 78, 0.15);
    --shadow-button: 0 4px 15px rgba(200, 164, 78, 0.35);
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 72px;
    --header-height-mobile: 60px;
}

/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: var(--header-height);
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-family);
    line-height: 1.7;
    font-weight: 400;
    min-height: 100vh;
    letter-spacing: 0.01em;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(200, 164, 78, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(200, 164, 78, 0.03) 0%, transparent 50%);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

ul,
ol {
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
}

li {
    margin-bottom: var(--space-xs);
}

code {
    background-color: var(--color-bg-card);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    color: var(--color-gold);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    word-break: break-all;
}

strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

blockquote {
    margin: var(--space-lg) 0;
}

/* ===== TYPOGRAPHY (Fluid) ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 164, 78, 0.08);
    border: 1px solid var(--color-border-gold);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--color-text-muted);
    max-width: 800px;
    margin-bottom: var(--space-xl);
}

.content-subheading {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-gold-light);
}

/* ===== LAYOUT & CONTAINERS ===== */
.page-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.content-section {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--color-border-subtle);
}

.bg-alt {
    background-color: var(--color-bg-secondary);
}

.section-header {
    margin-bottom: var(--space-2xl);
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-subtle);
    height: var(--header-height);
    display: flex;
    align-items: center;
    width: 100%;
}

.header-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.brand-accent {
    color: var(--color-gold);
}

/* ---- Right side group (mobile CTA + hamburger) ---- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-cta-btn {
    display: none; /* hidden by default, shown on mobile/tablet */
}

.nav-primary {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--color-text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition-fast), color var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-text-primary);
    background-color: var(--color-bg-card);
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #0a0a0a !important;
    font-weight: 700;
    padding: 10px 22px;
    box-shadow: 0 2px 12px rgba(200, 164, 78, 0.3);
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    box-shadow: 0 4px 20px rgba(200, 164, 78, 0.5);
    transform: translateY(-1px);
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: var(--color-text-primary);
    margin: 6px 0;
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
    background:
        radial-gradient(ellipse at 50% 20%, rgba(200, 164, 78, 0.08) 0%, transparent 60%),
        var(--color-bg-primary);
}

.hero-container.hero-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.hero-content {
    flex: 1 1 55%;
    text-align: left;
}

.hero-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 0 20px rgba(200, 164, 78, 0.2));
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: linear-gradient(180deg, #f5e6c8 0%, #c8a44e 50%, #a07828 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    max-width: 650px;
    margin: 0 0 var(--space-md) 0;
    color: var(--color-text-secondary);
}

.hero-tagline {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
    max-width: 100%;
    text-align: left;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.hero-highlights li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.hero-highlights li::before {
    content: "✦";
    color: var(--color-gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.hero-closing {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.hero-cta-link {
    color: var(--color-gold);
    font-weight: 600;
}

/* ===== SPLIT SECTIONS ===== */
.split-section {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
    margin: var(--space-xl) 0;
}

.split-section--image-left {
    flex-direction: row;
}
.split-section--image-right {
    flex-direction: row-reverse;
}

.split-section__media {
    flex: 0 0 auto;
    width: 45%;
    max-width: 500px;
}

.split-section__content {
    flex: 1 1 auto;
    min-width: 0;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
    background-color: var(--color-bg-card);
    box-shadow: var(--shadow-card);
}

.split-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.image-wrapper:hover .split-image {
    transform: scale(1.02);
}

.image-wrapper--id { max-width: 500px; }
.image-wrapper--features { max-width: 480px; }
.image-wrapper--betting { max-width: 500px; }
.image-wrapper--app { max-width: 480px; }
.image-wrapper--login { max-width: 460px; }
.image-wrapper--pwa { max-width: 460px; }
.image-wrapper--reasons { max-width: 480px; }

.image-below-content {
    margin-top: var(--space-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-align: center;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #c8a44e, #a07828);
    color: #0a0a0a;
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4b86a, #b8862c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 164, 78, 0.5);
    color: #0a0a0a;
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1.5px solid var(--color-border-medium);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(200, 164, 78, 0.05);
}

.btn-lg {
    padding: 17px 40px;
    font-size: 1.05rem;
    min-height: 52px;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.info-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.info-card:hover {
    background-color: var(--color-bg-card-hover);
    border-color: var(--color-border-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

/* ===== FEATURE LIST NUMBERED ===== */
.feature-list-numbered {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.feature-item-numbered {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: border-color var(--transition-fast);
}

.feature-item-numbered:hover {
    border-color: var(--color-border-medium);
}

.feature-number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(200, 164, 78, 0.1);
    color: var(--color-gold);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--color-border-gold);
}

.feature-heading {
    font-size: 1.15rem;
    margin-bottom: var(--space-xs);
}

/* ===== TABLES ===== */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-subtle);
    -webkit-overflow-scrolling: touch;
    position: relative;
    max-width: 100%;
}

/* Scroll shadow indicator */
.table-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    background: linear-gradient(to left, var(--color-bg-card) 30%, transparent);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    z-index: 2;
}

.table-wrapper.scrolled-end::after {
    opacity: 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-bg-card);
    font-size: 0.9rem;
    min-width: 600px;
}

.data-table thead {
    background-color: var(--color-bg-alt);
}

.data-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    white-space: nowrap;
    border-bottom: 2px solid var(--color-border-medium);
}

.data-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--color-border-subtle);
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.data-table tbody tr:hover {
    background-color: var(--color-bg-card-hover);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background-color: var(--color-bg-card);
    border-left: 3px solid var(--color-gold);
    padding: var(--space-lg) var(--space-xl);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0;
    color: var(--color-text-secondary);
    font-style: italic;
}

.highlight-box p {
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    font-style: italic;
    color: var(--color-text-secondary);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-md);
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-primary);
    display: block;
    margin-top: var(--space-sm);
}

/* ===== LINK CARDS ===== */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
}

.link-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.link-card-title {
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.link-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-card li {
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.link-card a {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.link-card a:hover {
    color: var(--color-gold);
}

/* ===== FAQ ACCORDION ===== */
.faq-container {
    margin-top: var(--space-lg);
}

.faq-category-title {
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--color-gold-light);
    border-bottom: 1px solid var(--color-border-subtle);
    padding-bottom: var(--space-sm);
}

.faq-item {
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    background-color: var(--color-bg-card);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-border-medium);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    transition: color var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
    min-height: 50px;
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 300;
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 22px 18px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #181208 50%, #111 100%);
    border-top: 1px solid var(--color-border-gold);
    border-bottom: 1px solid var(--color-border-gold);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.cta-highlight {
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.cta-motto {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin: var(--space-lg) 0;
}

.cta-closing {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xl);
}

/* ===== CASINO SHOWCASE ===== */
.card-grid--casino {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: stretch;
}

.casino-showcase-image {
    grid-column: span 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
    background-color: var(--color-bg-card);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border-subtle);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    color: var(--color-text-dim);
    font-size: 0.8rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== UTILITY CLASSES ===== */
.text-danger { color: var(--color-danger); }
.text-success { color: var(--color-success); }

/* ===== BODY LOCK FOR MOBILE MENU ===== */
body.menu-open {
    overflow: hidden;
}

/* ============================================= */
/* ============ RESPONSIVE DESIGN ============== */
/* ============================================= */

/* ---- Tablet (max-width: 1024px) ---- */
@media (max-width: 1024px) {
    :root {
        --space-3xl: 48px;
        --space-2xl: 36px;
    }

    .hero-container.hero-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-image-wrapper {
        max-width: 55%;
        margin: 0 auto;
        order: -1;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-highlights {
        text-align: left;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .split-section {
        flex-direction: column !important;
        gap: var(--space-xl);
    }

    .split-section__media {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .split-section__content {
        width: 100%;
    }

    .card-grid--casino {
        grid-template-columns: 1fr 1fr;
    }

    .casino-showcase-image {
        grid-column: span 2;
    }

    /* --- Mobile navigation --- */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background-color: rgba(14, 14, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 90px var(--space-xl) var(--space-xl);
        gap: 6px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid var(--color-border-subtle);
        overflow-y: auto;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 18px;
        font-size: 1rem;
        width: 100%;
        border-radius: var(--radius-md);
        display: block;
    }

    .nav-cta-btn {
        text-align: center;
        margin-top: var(--space-sm);
    }

    .hamburger-btn {
        display: block;
    }

    /* Show mobile CTA button */
    .mobile-cta-btn {
        display: inline-flex;
        padding: 10px 20px;
        font-size: 0.85rem;
        min-height: 40px;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* ---- Small Tablet / Large Phone (max-width: 768px) ---- */
@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
        --space-3xl: 40px;
        --space-2xl: 32px;
        --space-xl: 24px;
        --space-lg: 20px;
        --space-md: 14px;
    }

    html {
        scroll-padding-top: var(--header-height-mobile);
    }

    .site-header {
        height: var(--header-height-mobile);
    }

    .brand-logo {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .content-section {
        padding: var(--space-2xl) 0;
    }

    .hero-section {
        padding: var(--space-xl) var(--space-md) var(--space-lg);
    }

    .section-container {
        padding: 0 var(--space-md);
    }

    .hero-image-wrapper {
        max-width: 70%;
    }

    .split-section__media {
        max-width: 100%;
    }

    .card-grid,
    .testimonial-grid,
    .link-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .card-grid--casino {
        grid-template-columns: 1fr;
    }

    .casino-showcase-image {
        grid-column: span 1;
    }

    .feature-item-numbered {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .cta-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    /* --- FIX: Table spacing now matches cards --- */
    .table-wrapper {
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--radius-md);
        border-left: 1px solid var(--color-border-subtle);
        border-right: 1px solid var(--color-border-subtle);
    }

    /* Remove the gradient that gave false right spacing */
    .table-wrapper::after {
        display: none;
    }

    .data-table {
        min-width: 500px;
    }

    .data-table th,
    .data-table td {
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .highlight-box {
        padding: var(--space-md) var(--space-lg);
        margin: var(--space-lg) 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 15px 28px;
        font-size: 0.95rem;
    }

    .hero-highlights {
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    .logo-track-wrapper::before,
    .logo-track-wrapper::after {
        width: 50px;
    }

    .marquee-strip img {
        height: 30px;
    }

    .marquee-strip {
        gap: 28px;
    }

    .payment-strip-section {
        padding: 8px 0;
    }

    p {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    blockquote {
        margin: var(--space-md) 0;
    }
}

/* ---- Small Phone (max-width: 480px) ---- */
@media (max-width: 480px) {
    :root {
        --space-3xl: 32px;
        --space-2xl: 28px;
        --space-xl: 20px;
        --space-lg: 16px;
        --space-md: 12px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-image-wrapper {
        max-width: 90%;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-label {
        font-size: 0.68rem;
        padding: 3px 10px;
    }

    .nav-list {
        width: 260px;
        padding: 80px var(--space-lg) var(--space-lg);
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .cta-section {
        padding: var(--space-2xl) var(--space-md);
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .mobile-cta-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-height: 38px;
    }

    .image-wrapper--betting,
    .image-wrapper--features,
    .image-wrapper--app,
    .image-wrapper--login,
    .image-wrapper--pwa,
    .image-wrapper--reasons,
    .image-wrapper--id {
        max-width: 100%;
    }

    .split-section__media {
        max-width: 100%;
    }

    .data-table {
        min-width: 420px;
    }

    .data-table th,
    .data-table td {
        padding: 8px 10px;
        font-size: 0.7rem;
    }

    .highlight-box {
        padding: var(--space-md);
        border-left-width: 2px;
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 4px;
        left: 10px;
    }

    .link-card {
        padding: var(--space-lg);
    }

    .marquee-strip img {
        height: 26px;
    }

    .marquee-strip {
        gap: 20px;
    }

    .logo-track-wrapper::before,
    .logo-track-wrapper::after {
        width: 36px;
    }
}

/* ---- Extra Small (max-width: 360px) ---- */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .nav-list {
        width: 100%;
        border-left: none;
    }

    .brand-logo {
        font-size: 1rem;
    }

    .hamburger-btn span {
        width: 22px;
        margin: 5px 0;
    }

    .btn {
        font-size: 0.8rem;
        padding: 10px 16px;
        min-height: 40px;
    }

    .btn-lg {
        font-size: 0.85rem;
        padding: 12px 20px;
        min-height: 44px;
    }

    .mobile-cta-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-height: 34px;
    }
}