/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #ffee00;
    --primary-contrast: #171717;
    --background: #171717;
    --surface: #1f1f1f;
    --surface-soft: #ecebe9;
    --surface-highlight: #ddcaa9;
    --text-primary: #ffffff;
    --text-secondary: #ddcaa9;
    --text-muted: #ecebe9;
    --border-subtle: #ecebe9;
    --accent: #ffee00;
    --danger: #ff4b4b;
    --success: #22c55e;
    --overlay: rgba(0, 0, 0, 0.7);

    /* Typography */
    --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-xxl: 32px;

    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-strong: 0 16px 40px rgba(0, 0, 0, 0.6);
}

body {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p {
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
    text-align: center;
}

.btn-filled {
    background-color: var(--primary);
    color: var(--primary-contrast);
}

.btn-filled:hover {
    background-color: #ffd700;
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-contrast);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-primary);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    min-height: 36px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    min-height: 52px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.95) 0%, rgba(23, 23, 23, 0.85) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    height: 56px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .header {
        height: 72px;
    }
    .header-container {
        padding: 0 40px;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    height: 32px;
}

.logo {
    height: 32px;
    width: auto;
}

.nav-desktop {
    display: none;
    gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    padding: var(--spacing-sm) 0;
}

.nav-link:hover {
    color: var(--accent);
    opacity: 1;
}

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

.header-actions .btn {
    display: none;
}

@media (min-width: 768px) {
    .header-actions .btn {
        display: inline-flex;
    }
}

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

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--surface);
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    color: var(--text-primary);
    padding: var(--spacing-md) 0;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 64px var(--spacing-lg);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding: 96px 40px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 238, 0, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.65;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.hero-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 48px;
    }
}

.hero-subheadline {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-subheadline {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-badges {
        justify-content: flex-start;
    }
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: var(--text-primary);
}

.badge-highlight {
    background-color: var(--primary);
    color: var(--primary-contrast);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-cta-group {
        justify-content: flex-start;
    }
}

.hero-usp {
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.usp-title {
    font-size: 18px;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.usp-list {
    list-style: none;
    padding: 0;
}

.usp-list li {
    padding-left: var(--spacing-xl);
    position: relative;
    margin-bottom: var(--spacing-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.usp-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.hero-legal {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-legal {
        text-align: left;
    }
}

.hero-legal a {
    color: var(--accent);
}

.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.card-stack {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stack-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 238, 0, 0.1) 100%);
    border: 1px solid rgba(255, 238, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.stack-card h4 {
    font-size: 20px;
    margin-bottom: var(--spacing-sm);
}

.stack-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Section Styles */
.section {
    padding: 40px var(--spacing-lg);
}

@media (min-width: 1024px) {
    .section {
        padding: 56px 40px;
    }
}

.section-title {
    font-size: 26px;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

.section-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

/* Text Section */
.section-text {
    background-color: var(--background);
}

.text-content {
    margin-bottom: var(--spacing-xl);
}

.text-content p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-muted);
    line-height: 1.6;
}

.list-block {
    margin-bottom: var(--spacing-xl);
}

.list-block h3 {
    font-size: 18px;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    padding-left: var(--spacing-xl);
    position: relative;
    margin-bottom: var(--spacing-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: var(--spacing-md);
    color: var(--accent);
    font-weight: bold;
}

.numbered-list {
    list-style: decimal;
    padding-left: var(--spacing-xl);
    color: var(--text-muted);
}

.numbered-list li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

/* Promo Carousel */
.section-promo {
    background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
    padding: 32px var(--spacing-lg);
}

@media (min-width: 1024px) {
    .section-promo {
        padding: 48px 40px;
    }
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.promo-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 238, 0, 0.05) 100%);
    border: 1px solid rgba(255, 238, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    text-align: center;
}

.promo-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--primary);
    color: var(--primary-contrast);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.promo-headline {
    font-size: 24px;
    margin-bottom: var(--spacing-md);
}

.promo-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.promo-highlight {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.promo-legal {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: var(--spacing-lg);
    line-height: 1.4;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 238, 0, 0.2);
    border: none;
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    z-index: 10;
}

@media (min-width: 1024px) {
    .carousel-arrow {
        display: flex;
    }
}

.carousel-arrow:hover {
    background-color: var(--primary);
    color: var(--primary-contrast);
}

.carousel-prev {
    left: var(--spacing-lg);
}

.carousel-next {
    right: var(--spacing-lg);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 0;
}

.dot.active {
    background-color: var(--primary);
}

/* Bonus Section */
.section-bonus {
    background-color: var(--background);
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--spacing-xl);
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 600px;
}

.data-table thead {
    background-color: rgba(255, 238, 0, 0.1);
}

.data-table th {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 238, 0, 0.2);
}

.data-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

.data-table tbody tr:hover {
    background-color: rgba(255, 238, 0, 0.05);
}

.responsible-note {
    background-color: rgba(255, 238, 0, 0.1);
    border-left: 4px solid var(--primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-xl);
}

.responsible-note p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Deposit Bonuses Grid */
.deposit-bonuses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-xxl) 0;
}

@media (min-width: 768px) {
    .deposit-bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .deposit-bonuses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.deposit-bonus-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 238, 0, 0.08) 100%);
    border: 2px solid rgba(255, 238, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deposit-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 238, 0, 0.5) 100%);
}

.deposit-bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(255, 238, 0, 0.2);
}

.deposit-bonus-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 238, 0, 0.2);
}

.deposit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 var(--spacing-md);
    background: linear-gradient(135deg, var(--primary) 0%, rgba(255, 238, 0, 0.8) 100%);
    color: var(--primary-contrast);
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.deposit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.deposit-bonus-amount {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.bonus-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.bonus-fs {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.deposit-bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deposit-bonus-list li {
    padding: var(--spacing-sm) 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.deposit-bonus-list li:last-child {
    border-bottom: none;
}

.deposit-bonus-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.deposit-game {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 238, 0, 0.2) !important;
    color: var(--text-secondary) !important;
    font-weight: 500;
}

.deposit-game span {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 400;
}

.table-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-lg);
    line-height: 1.4;
}

/* Slots Section */
.section-slots {
    background-color: var(--background);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.provider-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 238, 0, 0.05) 100%);
    border: 1px solid rgba(255, 238, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 120px;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.provider-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.2s;
}

.provider-card:hover .provider-logo {
    filter: brightness(1.1);
}

.slots-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Payments Section */
.section-payments {
    background-color: var(--surface);
}

/* Apps Section */
.section-apps {
    background: linear-gradient(180deg, var(--background) 0%, #000000 100%);
}

.apps-content {
    width: 100%;
    max-width: 100%;
}

.apps-features {
    margin-bottom: var(--spacing-xl);
}

.apps-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .apps-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.app-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 238, 0, 0.1) 100%);
    border: 1px solid rgba(255, 238, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

.app-card h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
}

.app-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.apps-content > .btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .apps-content > .btn {
        width: auto;
    }
}

/* FAQ Section */
.section-faq {
    background-color: var(--background);
}

.faq-accordion {
    width: 100%;
    max-width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding-bottom: var(--spacing-lg);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 32px var(--spacing-lg) var(--spacing-lg);
}

@media (min-width: 1024px) {
    .footer {
        padding: 40px 40px var(--spacing-lg);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.footer-title-margin {
    margin-top: var(--spacing-xl);
}

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

.footer-nav a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--accent);
    opacity: 1;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.payment-icon {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.payment-icon:hover {
    opacity: 1;
}

.footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-responsible {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.responsible-icon {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-age,
.footer-warning,
.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-warning {
    color: var(--text-secondary);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus States */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

