/* Nine Casino Theme Variables */
:root {
    --bg: #0a0e1a;
    --panel: #141b2d;
    --panel2: #1a2338;
    --accent: #ff6b35;
    --accent2: #ff8555;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.7);
    --stroke: rgba(255, 255, 255, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input {
    font-family: inherit;
}

/* Mobile Navigation Header */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0f1625 0%, #1a2338 100%);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--stroke);
}

@media (max-width: 767px) {
    .mobile-actions {
        gap: 6px;
    }
    
    .btn-connect-mobile,
    .btn-register-mobile {
        padding: 6px 12px;
        font-size: 11px;
    }
}

.burger-btn {
    padding: 8px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    margin-left: 8px;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-actions {
    display: flex;
    gap: 8px;
}

.btn-connect-mobile {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--stroke);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.btn-connect-mobile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-register-mobile {
    padding: 8px 16px;
    background: var(--accent);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.btn-register-mobile:hover {
    background: var(--accent2);
}

/* Mobile Navigation Menu */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--panel);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform var(--transition);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--stroke);
}

.drawer-header img {
    height: 40px;
    width: auto;
}

.drawer-close {
    padding: 8px;
    color: var(--text);
}

.drawer-top-buttons {
    display: flex;
    gap: 12px;
    padding: 16px;
}

.drawer-top-btn {
    flex: 1;
    padding: 14px;
    background: var(--panel2);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.drawer-top-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.drawer-fidelity {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 16px 16px;
}

.drawer-fidelity-item {
    padding: 12px;
    background: var(--panel2);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.drawer-fidelity-item:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.drawer-promo-btn {
    margin: 0 16px 16px;
    padding: 14px;
    background: var(--accent);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.drawer-promo-btn:hover {
    background: var(--accent2);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    gap: 4px;
}

.drawer-nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-align: left;
}

.drawer-nav-link:hover {
    background: var(--panel2);
    color: var(--accent);
}

.drawer-help-btn {
    margin: 16px;
    padding: 14px;
    background: var(--panel2);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.drawer-help-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.drawer-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--stroke);
    margin-top: auto;
}

.drawer-lang svg:first-child {
    width: 20px;
    height: 20px;
}

.drawer-lang svg:last-child {
    margin-left: auto;
    width: 16px;
    height: 16px;
}

.drawer-social {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--stroke);
    justify-content: center;
}

.drawer-social-link {
    padding: 8px;
    color: var(--muted);
    transition: color var(--transition);
}

.drawer-social-link:hover {
    color: var(--accent);
}

/* Desktop Left Rail */
.desktop-rail {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: var(--panel);
    border-right: 1px solid var(--stroke);
    z-index: 50;
    padding: 24px 0;
}

.rail-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.rail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.rail-icon:hover,
.rail-icon.active {
    background: var(--accent);
    color: var(--text);
}

/* Main Content Container */
.main-content {
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Desktop Header Navigation Bar */
.desktop-topbar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(135deg, #0f1625 0%, #1a2338 100%);
    backdrop-filter: blur(8px);
    padding: 16px 32px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--stroke);
}


.desktop-logo img {
    height: 40px;
    width: auto;
}

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

.btn-connect {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--stroke);
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
}

.btn-connect:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-register {
    padding: 12px 24px;
    background: var(--accent);
    color: var(--text);
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}

.btn-register:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 32px;
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero-banner {
        min-height: 500px;
    }
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    z-index: 10;
    text-align: center;
}

@media (max-width: 767px) {
    .hero-content {
        top: auto;
        bottom: 40px;
        transform: translateX(-50%);
        gap: 12px;
        padding: 0 16px;
    }
    
    .hero-text-small {
        font-size: 12px;
    }
    
    .hero-text-amount {
        font-size: 48px;
    }
    
    .hero-text-bonus {
        font-size: 18px;
    }
    
    .btn-hero-cta {
        padding: 14px 32px;
        font-size: 14px;
    }
}

.hero-text-small {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
}

.hero-text-amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.hero-text-bonus {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.btn-hero-cta {
    padding: 18px 40px;
    background: var(--accent);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    transition: all var(--transition);
    margin-top: 8px;
}

.btn-hero-cta:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.hero-subtext {
    font-size: 12px;
    color: var(--muted);
    margin-top: -8px;
}

.hero-cashback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--panel);
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

@media (max-width: 767px) {
    .hero-cashback {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .hero-cashback span {
        font-size: 12px;
    }
}

.crown-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.hero-cashback span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 20px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .payment-methods {
        gap: 16px;
        padding: 20px 16px;
    }
    
    .payment-methods img {
        height: 32px;
    }
}

.payment-methods img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--transition);
}

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

/* Popular Games Section */
.section-popular-games {
    padding: 40px 20px;
}

.section-header {
    margin-bottom: 24px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-card img {
        height: 240px;
    }
}

.game-card {
    position: relative;
    background: var(--panel2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    transition: all var(--transition);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.game-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.game-card-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    z-index: 2;
}

.game-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--accent);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    z-index: 2;
}

.game-card-title {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

/* Gamification Section */
.section-gamification {
    padding: 60px 20px;
    background: var(--panel);
    margin: 40px 0;
}

.gamification-top-btn {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 32px;
    padding: 16px;
    background: var(--accent);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    transition: all var(--transition);
}

.gamification-top-btn:hover {
    background: var(--accent2);
}

.providers-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.providers-row img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.providers-row img:hover {
    opacity: 1;
}

.gamification-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 48px;
    align-items: center;
}

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

.gamification-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.gamification-text {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.gamification-cta {
    padding: 16px 32px;
    background: var(--accent);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    transition: all var(--transition);
}

.gamification-cta:hover {
    background: var(--accent2);
    transform: translateY(-2px);
}

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

.gamification-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.gamification-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .gamification-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gamification-main {
        text-align: center;
    }
    
    .gamification-content {
        text-align: center;
    }
}

.gamification-feature {
    text-align: center;
    padding: 24px;
    background: var(--panel2);
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
}

.gamification-feature svg {
    color: var(--accent);
    margin-bottom: 16px;
}

.gamification-feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

/* Features Cards Section */
.section-features {
    padding: 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.feature-card {
    background: var(--panel2);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--stroke);
    transition: all var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

/* Info Cards Section */
.section-info-cards {
    padding: 60px 20px;
    background: var(--panel);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card-large {
    background: var(--panel2);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--stroke);
}

.info-card-large h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.info-card-large p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
}

/* SEO Section */
.seo-section {
    padding: 60px 20px;
    margin: 32px 0;
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.3;
}

.seo-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.seo-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 20px;
}

.seo-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 24px;
}

.seo-section ul {
    margin: 16px 0 24px 24px;
    padding-left: 0;
    list-style-position: outside;
}

.seo-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 12px;
    padding-left: 8px;
}

.seo-table-wrapper {
    margin: 40px 0;
    overflow-x: auto;
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--panel2);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.seo-table thead {
    background: var(--panel);
}

.seo-table th {
    padding: 16px 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 2px solid var(--stroke);
}

.seo-table td {
    padding: 14px 12px;
    font-size: 14px;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.seo-disclaimer {
    margin-top: 32px;
    padding: 20px;
    background: var(--panel2);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    font-size: 14px;
    color: var(--muted);
}

.seo-disclaimer strong {
    color: var(--text);
}

@media (max-width: 767px) {
    .seo-section {
        padding: 40px 16px;
    }

    .seo-section h1 {
        font-size: 24px;
    }

    .seo-section h2 {
        font-size: 20px;
    }

    .seo-table th,
    .seo-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .seo-section {
        padding: 80px 32px;
    }

    .seo-section h1 {
        font-size: 40px;
    }

    .seo-section h2 {
        font-size: 28px;
    }

    .seo-table th,
    .seo-table td {
        padding: 16px;
        font-size: 15px;
    }
}

/* Footer */
.footer {
    padding: 48px 20px 24px;
    background: var(--panel);
    border-top: 1px solid var(--stroke);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 32px;
    text-align: center;
}

.footer-logo img {
    height: 58px;
    width: auto;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 14px;
    color: var(--muted);
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-badge {
    padding: 8px 16px;
    background: var(--panel2);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--stroke);
}

.footer-copyright {
    font-size: 12px;
    color: var(--muted);
}

/* Floating Support Button */
.floating-support {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: all var(--transition);
}

.floating-support:hover {
    background: var(--accent2);
    transform: scale(1.1);
}

/* Floating Scroll to Top Button */
.floating-scroll-top {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--panel2);
    border: 1px solid var(--stroke);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-scroll-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    .floating-support {
        bottom: 100px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    
    .floating-scroll-top {
        bottom: 172px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .mobile-header,
    .mobile-drawer {
        display: none;
    }

    .desktop-rail {
        display: block;
    }

    .main-content {
        margin-left: 80px;
        padding-bottom: 0;
    }

    .desktop-topbar {
        display: flex;
    }

    .hero-banner {
        min-height: 600px;
    }

    .hero-text-amount {
        font-size: 96px;
    }

    .hero-text-bonus {
        font-size: 32px;
    }

    .games-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .gamification-main {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .gamification-content {
        text-align: left;
    }

    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-badges {
        justify-content: flex-end;
    }
}

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

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
