/* ============================================
   Arkada Casino - Tech/Cyber UI Styles
   Prefix: asvj
   ============================================ */

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

:root {
    --asvj-bg: #060911;
    --asvj-primary: #41dcf0;
    --asvj-secondary: #ff4bf0;
    --asvj-accent: #E4FF6A;
    --asvj-text: #FFFFFF;
    --asvj-text-muted: #B0B0B0;
    --asvj-border: rgba(65, 240, 215, 0.3);
    --asvj-shadow: rgba(65, 240, 215, 0.2);
    --asvj-shadow-glow: rgba(196, 75, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--asvj-bg);
    color: var(--asvj-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Grid Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(65, 240, 215, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 240, 215, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Container */
.asvj-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}


/* Typography */
.asvj-h1, .asvj-h2, .asvj-h3 {
    color: var(--asvj-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.asvj-h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 0 20px var(--asvj-shadow);
}

.asvj-h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.asvj-h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.asvj-text-intro {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--asvj-text-muted);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.asvj-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 9, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--asvj-border);
    z-index: 1000;
    padding: 1rem 0;
}

.asvj-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 1rem;
}

.asvj-logo {
    height: 45px;
    width: auto;
    flex-shrink: 0;
}

.asvj-header-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Buttons */
.asvj-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(6, 9, 17, 0.8);
    color: var(--asvj-text);
    box-shadow: 
        inset 0 0 20px rgba(65, 240, 215, 0.1),
        0 4px 15px rgba(65, 240, 215, 0.2),
        0 0 30px rgba(196, 75, 255, 0.1);
    text-decoration: none;
    display: inline-block;
}

.asvj-btn:hover {
    box-shadow: 
        inset 0 0 30px rgba(65, 240, 215, 0.3),
        0 4px 20px rgba(65, 240, 215, 0.4),
        0 0 40px rgba(196, 75, 255, 0.2);
    transform: translateY(-2px);
}

.asvj-btn-primary {
    background: linear-gradient(135deg, var(--asvj-primary), var(--asvj-secondary));
    color: var(--asvj-bg);
}

.asvj-btn-secondary {
    border: 1px solid var(--asvj-primary);
}

/* Sidebar */
.asvj-sidebar {
    position: fixed;
    left: 0;
    top: 70px;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(6, 9, 17, 0.98);
    border-right: 1px solid var(--asvj-border);
    padding: 2rem 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar for Sidebar */
.asvj-sidebar::-webkit-scrollbar {
    width: 8px;
}

.asvj-sidebar::-webkit-scrollbar-track {
    background: rgba(6, 9, 17, 0.5);
    border-radius: 2px;
}

.asvj-sidebar::-webkit-scrollbar-thumb {
    background: var(--asvj-primary);
    border-radius: 2px;
    border: 1px solid rgba(6, 9, 17, 0.3);
}

.asvj-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--asvj-secondary);
}

/* Firefox scrollbar */
.asvj-sidebar {
    scrollbar-width: thin;
    scrollbar-color: var(--asvj-primary) rgba(6, 9, 17, 0.5);
}

.asvj-sidebar-menu {
    list-style: none;
}

.asvj-sidebar-menu li {
    margin-bottom: 0.5rem;
}

.asvj-sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 16px;
    color: var(--asvj-text);
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.asvj-sidebar-menu a:hover {
    background: rgba(65, 240, 215, 0.1);
    border-color: var(--asvj-border);
    box-shadow: inset 0 0 20px rgba(65, 240, 215, 0.1);
}

/* Game items styling */
.asvj-sidebar-game {
    background: rgba(65, 240, 215, 0.05) !important;
    border: 1px solid rgba(65, 240, 215, 0.2) !important;
    position: relative;
}

.asvj-sidebar-game::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--asvj-primary);
    border-radius: 0 2px 2px 0;
}

.asvj-sidebar-game .asvj-sidebar-icon {
    fill: var(--asvj-primary);
    filter: drop-shadow(0 0 4px rgba(65, 240, 215, 0.5));
}

.asvj-sidebar-game span {
    color: var(--asvj-primary);
    font-weight: 600;
}

.asvj-sidebar-game:hover {
    background: rgba(65, 240, 215, 0.15) !important;
    border-color: var(--asvj-primary) !important;
    box-shadow: inset 0 0 30px rgba(65, 240, 215, 0.2) !important;
    transform: translateX(3px);
}

.asvj-sidebar-icon {
    width: 20px;
    height: 20px;
    fill: var(--asvj-primary);
}

/* Main Content */
.asvj-main {
    margin-left: 280px;
    margin-top: 70px;
    padding: 2rem 0;
    min-height: calc(100vh - 70px);
}

/* Hero Section */
.asvj-hero {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.asvj-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(65, 240, 215, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.asvj-hero-content {
    position: relative;
    z-index: 1;
}

.asvj-banners-container {
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.asvj-banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.asvj-banner-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(65, 240, 215, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.asvj-banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(65, 240, 215, 0.4);
}

.asvj-banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Game Cards */
.asvj-games-section {
    padding: 3rem 2rem;
}

.asvj-games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.asvj-game-card {
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.asvj-game-card .asvj-game-image {
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.asvj-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 25px rgba(65, 240, 215, 0.3),
        inset 0 0 30px rgba(65, 240, 215, 0.1);
    border-color: var(--asvj-primary);
}

.asvj-game-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.asvj-game-info {
    padding: 1rem;
    padding-bottom: 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.asvj-game-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--asvj-primary);
    min-height: 2.5rem;
}

.asvj-game-buttons {
    display: flex;
    gap: 0.4rem;
    margin-top: auto;
    padding: 0.5rem 0.75rem 0.75rem;
}

.asvj-game-buttons .asvj-btn {
    flex: 1;
    padding: 8px 8px;
    font-size: 0.75rem;
    min-width: 0;
    white-space: nowrap;
    overflow: visible;
    text-align: center;
}

/* Games Navigation */
.asvj-games-nav {
    padding: 3rem 2rem;
    background: rgba(6, 9, 17, 0.5);
}

.asvj-games-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.asvj-game-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    color: var(--asvj-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.asvj-game-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 220, 240, 0.2), transparent);
    transition: left 0.5s ease;
}

.asvj-game-nav-btn:hover::before {
    left: 100%;
}

.asvj-game-nav-btn:hover {
    background: rgba(6, 9, 17, 0.95);
    border-color: var(--asvj-primary);
    box-shadow: 0 4px 20px rgba(65, 220, 240, 0.3), inset 0 0 30px rgba(65, 220, 240, 0.1);
    transform: translateY(-2px);
    color: var(--asvj-primary);
}

.asvj-game-nav-btn span {
    position: relative;
    z-index: 1;
}

/* Game of the Day */
.asvj-game-day {
    padding: 3rem 2rem;
    background: rgba(196, 75, 255, 0.05);
    border-top: 1px solid var(--asvj-border);
    border-bottom: 1px solid var(--asvj-border);
}

.asvj-game-day-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Bonuses & Advantages */
.asvj-bonuses, .asvj-advantages {
    padding: 3rem 2rem;
}

.asvj-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    padding: 0 1rem;
}

.asvj-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.asvj-bonus-card, .asvj-advantage-card {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.asvj-bonus-card:hover, .asvj-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(65, 240, 215, 0.3);
    border-color: var(--asvj-primary);
}

.asvj-bonus-title, .asvj-advantage-title {
    font-size: 1.25rem;
    color: var(--asvj-primary);
    margin-bottom: 1rem;
}

.asvj-bonus-text, .asvj-advantage-text {
    color: var(--asvj-text-muted);
    line-height: 1.6;
}

/* Counters */
.asvj-counters {
    padding: 3rem 2rem;
    background: rgba(65, 240, 215, 0.05);
}

.asvj-counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.asvj-counter-item {
    text-align: center;
    padding: 2rem;
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.asvj-counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--asvj-primary);
    text-shadow: 0 0 20px var(--asvj-shadow);
    margin-bottom: 0.5rem;
}

.asvj-counter-label {
    color: var(--asvj-text-muted);
    font-size: 1.1rem;
}

/* Mirrors */
.asvj-mirrors {
    padding: 3rem 2rem;
}

.asvj-mirrors-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    text-align: center;
}

/* Providers */
.asvj-providers {
    padding: 3rem 2rem;
}

.asvj-providers-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    padding: 0 1rem;
}

.asvj-providers-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.asvj-provider-item {
    min-width: 180px;
    max-width: 180px;
    flex-shrink: 0;
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.asvj-provider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(65, 240, 215, 0.3);
    border-color: var(--asvj-primary);
}

.asvj-provider-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.asvj-provider-item:hover .asvj-provider-logo {
    filter: brightness(1);
}

/* FAQ */
.asvj-faq {
    padding: 3rem 2rem;
}

.asvj-faq-list {
    max-width: 900px;
    margin: 2rem auto;
}

.asvj-faq-item {
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.asvj-faq-item:hover {
    border-color: var(--asvj-primary);
    box-shadow: 0 4px 15px rgba(65, 240, 215, 0.2);
}

.asvj-faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--asvj-primary);
    margin-bottom: 1rem;
}

.asvj-faq-answer {
    color: var(--asvj-text-muted);
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid rgba(65, 240, 215, 0.2);
}

/* Dictionary & SEO */
.asvj-dictionary, .asvj-seo {
    padding: 3rem 2rem;
    background: rgba(6, 9, 17, 0.5);
}

.asvj-dictionary-content, .asvj-seo-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    color: var(--asvj-text-muted);
    line-height: 1.8;
}

.asvj-seo-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1rem;
    color: var(--asvj-text-muted);
}

.asvj-seo-content p:last-child {
    margin-bottom: 0;
}

.asvj-seo-content p[data-start] {
    text-indent: 1.5rem;
}

.asvj-seo-content a {
    color: var(--asvj-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--asvj-primary);
    transition: all 0.3s ease;
}

.asvj-seo-content a:hover {
    color: var(--asvj-secondary);
    border-bottom-color: var(--asvj-secondary);
    text-shadow: 0 0 8px rgba(196, 75, 255, 0.5);
}

/* Dictionary Terms */
.asvj-dictionary-terms {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.asvj-dictionary-term {
    padding: 1rem;
    background: rgba(6, 9, 17, 0.6);
    border: 1px solid var(--asvj-border);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.asvj-dictionary-term:hover {
    border-color: var(--asvj-primary);
    box-shadow: 0 4px 15px rgba(65, 240, 215, 0.2);
    transform: translateY(-2px);
}

.asvj-dictionary-term-title {
    color: var(--asvj-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.asvj-dictionary-term-definition {
    color: var(--asvj-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Page Sections (Privacy, Terms, Responsible) */
.asvj-page-section {
    padding: 3rem 2rem;
    min-height: calc(100vh - 70px);
}

.asvj-page-content {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: rgba(6, 9, 17, 0.8);
    border: 1px solid var(--asvj-border);
    border-radius: 6px;
    color: var(--asvj-text-muted);
    line-height: 1.8;
}

.asvj-page-content h2 {
    color: var(--asvj-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.asvj-page-content h3 {
    color: var(--asvj-secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.asvj-page-content h2:first-of-type {
    margin-top: 1.5rem;
}

.asvj-page-content p {
    margin-bottom: 1rem;
}

.asvj-page-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.asvj-page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Footer */
.asvj-footer {
    background: rgba(6, 9, 17, 0.98);
    border-top: 1px solid var(--asvj-border);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    margin-left: 280px;
    position: relative;
    z-index: 100;
}

.asvj-footer-content {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 101;
}

.asvj-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.asvj-footer-section-wide {
    grid-column: span 1;
}

.asvj-footer-section h4 {
    color: var(--asvj-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.asvj-footer-links {
    list-style: none;
}

.asvj-footer-links li {
    margin-bottom: 0.5rem;
}

.asvj-footer-links a {
    color: var(--asvj-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 11;
    pointer-events: auto;
    cursor: pointer;
    touch-action: manipulation;
}

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

.asvj-footer-links a:active {
    color: var(--asvj-primary);
}

.asvj-footer-payments-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--asvj-border);
    max-width: 100%;
}

.asvj-footer-payments-section h4 {
    color: var(--asvj-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.asvj-footer-payments {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.asvj-footer-payment {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.asvj-footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--asvj-border);
    color: var(--asvj-text-muted);
    font-size: 0.9rem;
}

/* Fixed Buttons */
.asvj-fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.asvj-btn-up, .asvj-btn-chat {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(6, 9, 17, 0.9);
    border: 1px solid var(--asvj-primary);
    color: var(--asvj-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(65, 240, 215, 0.3);
    text-decoration: none;
}

.asvj-btn-up:hover, .asvj-btn-chat:hover {
    background: var(--asvj-primary);
    color: var(--asvj-bg);
    box-shadow: 0 0 30px var(--asvj-primary);
    transform: translateY(-3px);
}

/* Burger Menu */
.asvj-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.asvj-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.asvj-sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.asvj-burger span {
    width: 25px;
    height: 3px;
    background: var(--asvj-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.asvj-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.asvj-burger.active span:nth-child(2) {
    opacity: 0;
}

.asvj-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1440px) {
    .asvj-games-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) {
    .asvj-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .asvj-game-day-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .asvj-counters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .asvj-container {
        padding: 0 10px;
    }
    
    .asvj-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 260px;
    }
    
    .asvj-sidebar.active {
        transform: translateX(0);
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.8);
    }
    
    .asvj-sidebar-overlay {
        display: block;
    }
    
    .asvj-main {
        margin-left: 0;
    }
    
    .asvj-footer {
        margin-left: 0;
    }
    
    .asvj-burger {
        display: flex;
    }
    
    .asvj-fixed-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .asvj-btn-up, .asvj-btn-chat {
        width: 45px;
        height: 45px;
    }
    
    .asvj-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .asvj-games-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .asvj-game-nav-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .asvj-header-content {
        padding: 0 10px;
        gap: 0.5rem;
    }
    
    .asvj-logo {
        height: 40px;
    }
    
    .asvj-header-buttons {
        gap: 0.5rem;
    }
    
    .asvj-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .asvj-game-buttons {
        padding: 0.5rem;
        gap: 0.4rem;
    }
    
    .asvj-game-buttons .asvj-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .asvj-dictionary-terms {
        gap: 0.75rem;
    }
    
    .asvj-dictionary-term {
        padding: 0.75rem;
    }
    
    .asvj-game-day-grid {
        grid-template-columns: 1fr;
    }
    
    .asvj-counters-grid {
        grid-template-columns: 1fr;
    }
    
    .asvj-provider-item {
        min-width: 150px;
        max-width: 150px;
    }
    
    .asvj-bonus-card, .asvj-advantage-card {
        min-width: 250px;
        max-width: 250px;
    }
    
    .asvj-header-buttons {
        gap: 0.5rem;
    }
    
    .asvj-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    .asvj-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .asvj-footer-section-wide {
        grid-column: span 1;
    }
    
    .asvj-footer-payments-section {
        margin-top: 2rem;
    }
}

@media (max-width: 320px) {
    .asvj-games-grid {
        grid-template-columns: 1fr;
    }
    
    .asvj-provider-item {
        min-width: 120px;
        max-width: 120px;
    }
    
    .asvj-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .asvj-games-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .asvj-container {
        padding: 0 10px;
    }
}

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

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

/* Lazy loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

