:root {
    --color-white: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    
    --color-royal: #001F3F;
    --color-royal-dark: #0A192F;
    --color-royal-light: #003366;
    
    --color-primary: #FF8C00;
    --color-primary-hover: #e67e00;
    
    --color-text-primary: #0A192F;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;
    --color-text-inverse: #FFFFFF;
    
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    
    --color-success: #059669;
    --color-warning: #d97706;
    --color-error: #dc2626;
    
    --gradient-primary: var(--color-primary);
    --gradient-hero: transparent;
    --gradient-card: transparent;
    --gradient-glow: none;
    
    --font-primary: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-display: 'Syne', var(--font-primary);
    
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.4rem + 2.4vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.6rem + 3.25vw, 3.5rem);
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px rgba(0, 31, 63, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 31, 63, 0.08), 0 2px 4px -2px rgba(0, 31, 63, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 31, 63, 0.08), 0 4px 6px -4px rgba(0, 31, 63, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 31, 63, 0.1);
    --shadow-glow: none;
    
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
    
    --header-height: 56px;
    --header-height-mobile: 50px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-royal);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-xl);
}

h4 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

a {
    color: var(--color-royal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-royal-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-royal);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.section-full {
    width: 100%;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: var(--space-md);
    z-index: var(--z-tooltip);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    height: var(--header-height);
    padding-top: var(--space-xs);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-xl);
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
    border-radius: var(--radius-md);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list a {
    position: relative;
    color: var(--color-royal);
    font-weight: 500;
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

.nav-list a:hover {
    color: var(--color-royal-light);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-royal);
    transition: width var(--transition-base);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-royal);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.language-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-current:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
}

.lang-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-code {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-royal);
}

.lang-arrow {
    color: var(--color-text-muted);
    transition: transform var(--transition-fast);
}

.lang-current[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + var(--space-sm));
    right: 0;
    min-width: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.lang-dropdown li:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lang-dropdown li:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.lang-dropdown li:hover {
    background: var(--color-bg-alt);
}

.lang-dropdown li.active {
    background: var(--color-bg-alt);
    color: var(--color-royal);
}

.lang-dropdown li span {
    font-weight: 500;
    font-size: var(--text-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--color-royal);
    border: 2px solid var(--color-royal);
}

.btn-outline:hover {
    background: rgba(0, 31, 63, 0.06);
    border-color: var(--color-royal-light);
    color: var(--color-royal-light);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
}

.breadcrumbs {
    padding-top: calc(var(--header-height) + var(--space-sm));
    padding-bottom: var(--space-xs);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

.breadcrumb-list a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.breadcrumb-list a:hover {
    color: var(--color-royal);
}

.breadcrumb-list .separator {
    color: var(--color-text-muted);
}

.breadcrumb-list li[aria-current="page"] span {
    color: var(--color-text-secondary);
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    background: var(--color-white);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

/* Fade banner into white so it doesn’t cut off as a square */
.hero-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(to top, var(--color-white), transparent);
    pointer-events: none;
}

.hero-cta-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-2xl);
}

.hero-cta {
    max-width: 500px;
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    text-align: left;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.hero-cta h1 {
    margin-bottom: var(--space-md);
    color: var(--color-royal);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.popular-slots {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.section-header h2 {
    color: var(--color-royal);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-royal);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.view-all-link:hover {
    color: var(--color-primary);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
}

.slot-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.slot-link {
    display: block;
}

.slot-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.slot-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.slot-card:hover .slot-image-wrapper img {
    transform: scale(1.1);
}

.slot-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 31, 63, 0.5);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.play-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.features {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-border);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--color-primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-royal);
}

.feature-card p {
    margin-bottom: 0;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}


.about-section {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.about-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-royal);
}

.about-content p {
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.content-note {
    font-size: 0.9375rem;
    line-height: 1.7;
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-royal);
}

.content-note .content-note-title {
    font-size: var(--text-lg);
    color: var(--color-royal);
    margin-bottom: var(--space-md);
}

.content-note p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.content-note table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.content-note th,
.content-note td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.content-note thead th {
    background: rgba(0, 31, 63, 0.06);
    color: var(--color-royal);
    font-weight: 600;
}

.content-note tbody tr:hover {
    background: rgba(255, 255, 255, 0.7);
}

.content-note .content-note-title {
    margin-top: 0;
}

.content-note table {
    margin-top: var(--space-md);
}

@media (max-width: 768px) {
    .content-note {
        padding: var(--space-md);
        font-size: 0.875rem;
    }
    .content-note table {
        display: block;
        overflow-x: auto;
    }
}

.steps-block {
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl) 0;
}

.steps-block h2 {
    margin-bottom: var(--space-lg);
}

.step-item {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    align-items: flex-start;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-royal);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: var(--radius-lg);
}

.step-body h3 {
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

.step-body p {
    margin-bottom: 0;
}

.faq-accordion {
    margin-top: var(--space-lg);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-item details {
    display: block;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: var(--space-lg) var(--space-md) var(--space-lg) 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-royal);
    position: relative;
    padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-royal);
    transition: transform var(--transition-fast);
}

.faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 0 var(--space-lg);
}

.faq-answer p {
    margin: 0;
    padding-top: var(--space-xs);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.cta-block {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-block h2 {
    margin-bottom: var(--space-md);
    color: var(--color-royal);
}

.cta-block p {
    margin-bottom: var(--space-xl);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.cta-block .btn {
    display: inline-block;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-white);
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
}

.bonus-table th,
.bonus-table td {
    padding: var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.bonus-table thead th {
    background: var(--color-bg-alt);
    color: var(--color-royal);
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-table tbody tr:last-child td {
    border-bottom: none;
}

.bonus-table tbody tr:hover {
    background: var(--color-border-light);
}

.bonus-table td strong {
    color: var(--color-royal);
}


/* ============================================
   15. FOOTER
   ============================================
   Site footer with multi-column layout,
   links, and legal information.
   ============================================ */

.site-footer {
    background: var(--color-royal);
    padding-top: var(--space-4xl);
    border-top: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-size: var(--text-base);
}

.footer-logo img {
    height: 35px;
    width: auto;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
}

.footer-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}


/* ============================================
   16. PAYMENT METHODS
   ============================================
   Grid of payment provider logos in the footer.
   ============================================ */

.payment-methods {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.payment-methods h4 {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.payment-logos img {
    height: 28px;
    width: auto;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
    filter: brightness(0) invert(1);
}

.payment-logos img:hover {
    opacity: 1;
}


.footer-bottom {
    padding: var(--space-xl) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-error);
    color: #fff;
    font-weight: 700;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
}

.copyright {
    margin-bottom: 0;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.75);
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


@media (max-width: 1280px) {
    .slots-grid {
        gap: var(--space-md);
    }
}

@media (max-width: 1024px) {
    .header-inner {
        gap: var(--space-md);
    }
    
    .nav-list {
        gap: var(--space-lg);
    }
    
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }
    
    .logo img {
        height: 26px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        right: 0;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-list a {
        display: block;
        padding: var(--space-md);
        border-bottom: 1px solid var(--color-border);
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .header-actions .btn-outline {
        display: none;
    }
    
    .hero-banner {
        min-height: 600px;
    }
    
    .hero-image::after {
        height: 35%;
    }
    
    .hero-cta-wrapper {
        justify-content: center;
        align-items: flex-end;
        padding: var(--space-lg);
        padding-bottom: var(--space-2xl);
    }
    
    .hero-cta {
        max-width: 92%;
        text-align: center;
        padding: var(--space-lg) var(--space-xl);
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .table-responsive {
        border: none;
    }
    
    .bonus-table,
    .bonus-table thead,
    .bonus-table tbody,
    .bonus-table th,
    .bonus-table td,
    .bonus-table tr {
        display: block;
    }
    
    .bonus-table thead {
        display: none;
    }
    
    .bonus-table tbody tr {
        margin-bottom: var(--space-md);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }
    
    .bonus-table td {
        position: relative;
        padding-left: 50%;
        text-align: right;
        border-bottom: 1px solid var(--color-border);
    }
    
    .bonus-table td:last-child {
        border-bottom: none;
    }
    
    .bonus-table td::before {
        content: attr(data-label);
        position: absolute;
        left: var(--space-lg);
        font-weight: 600;
        color: var(--color-text-muted);
        text-transform: uppercase;
        font-size: var(--text-xs);
    }
    
    /* Footer bottom stacks */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Small */
@media (max-width: 640px) {
    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    /* Slots: 2 columns on mobile */
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    /* Features: 1 column on mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer: 1 column on mobile */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .hero-cta {
        max-width: 340px;
        padding: var(--space-md) var(--space-lg);
        background: rgba(255, 255, 255, 0.68);
    }
    
    .hero-cta h1 {
        font-size: var(--text-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    /* Payment logos smaller */
    .payment-logos {
        gap: var(--space-md);
    }
    
    .payment-logos img {
        height: 24px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    /* Reduce button sizes in header */
    .header-actions .btn-primary {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-xs);
    }
    
    .lang-code {
        display: none;
    }
}

