/* =============================================
   SpinDog Casino — Main Stylesheet
   Design System: Dark Navy + Orange Accent
   ============================================= */

/* CSS Variables */
:root {
    --color-primary: #d4851c;
    --color-primary-hover: #e89b2d;
    --color-primary-dark: #b87015;
    --color-dark: #1a2332;
    --color-dark-alt: #243044;
    --color-dark-light: #2c3e50;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8fa;
    --color-bg-footer: #f5f5f5;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #e0e0e0;
    --color-border-light: #eeeeee;
    --color-white: #ffffff;
    --color-success: #27ae60;
    --color-danger: #e74c3c;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-logo: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    --sidebar-width: 52px;
    --header-height: 56px;
    --subnav-height: 44px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: var(--sidebar-width);
}

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

ul,
ol {
    list-style: none;
}

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =============================================
   Sidebar
   ============================================= */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--color-bg);
    border-right: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    gap: 8px;
    z-index: 1000;
}

.sidebar-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    transition: all var(--transition);
}

.sidebar-btn:hover {
    background: rgba(212, 133, 28, 0.1);
    color: var(--color-primary-dark);
}

.sidebar-btn svg {
    width: 20px;
    height: 20px;
}

/* =============================================
   Header
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
}

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

/* Hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    width: 32px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Main Nav */
.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    padding: 16px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px 3px 0 0;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--color-dark);
    text-transform: uppercase;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius-full);
    padding: 8px 20px;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

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

.btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-primary {
    background: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-dark-alt);
    border-color: var(--color-dark-alt);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

/* Sub Navigation */
.sub-nav {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
}

.sub-nav-list {
    display: flex;
    gap: 24px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
    height: var(--subnav-height);
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.sub-nav-list::-webkit-scrollbar {
    display: none;
}

.sub-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    white-space: nowrap;
    padding: 8px 0;
    transition: color var(--transition);
}

.sub-nav-link:hover,
.sub-nav-link.active {
    color: var(--color-primary);
}

.sub-nav-icon {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.sub-nav-icon svg {
    width: 16px;
    height: 16px;
}

/* =============================================
   Mobile Navigation
   ============================================= */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: var(--color-bg);
    z-index: 2000;
    overflow-y: auto;
    transition: left var(--transition);
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.close-nav-btn {
    font-size: 28px;
    color: var(--color-text);
    padding: 4px;
}

.mobile-nav-list {
    padding: 12px 0;
}

.mobile-nav-list a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
}

.mobile-nav-list a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.mobile-nav-actions {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =============================================
   Hero Banner
   ============================================= */
.hero-banner {
    position: relative;
    background: url(baner-spindog.webp) center / cover no-repeat;
    border-radius: var(--radius-lg);
    margin: 20px 24px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 260px;
    overflow: hidden;
    max-width: 1352px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
    border-radius: inherit;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.3;
    opacity: 0.9;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title-small {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-actions .btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
    padding: 12px 28px;
}

.hero-actions .btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 133, 28, 0.35);
}

.hero-instant {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-instant-icon {
    width: 16px;
    height: 16px;
}

.hero-disclaimer {
    position: absolute;
    bottom: 16px;
    right: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    z-index: 2;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.hero-image-placeholder {
    width: 320px;
    height: 220px;
    position: relative;
}

.hero-dog-visual {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 133, 28, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    position: relative;
}

.hero-dog-visual::before {
    content: '';
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 133, 28, 0.4) 0%, rgba(212, 133, 28, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-dog-visual::after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    top: 25%;
    right: 20%;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =============================================
   Filters Section
   ============================================= */
.filters-section {
    padding: 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.filters-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-bg);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    transition: border-color var(--transition);
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--color-primary);
    outline: none;
}

.search-group {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    pointer-events: none;
}

.filter-search {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition);
}

.filter-search:hover,
.filter-search:focus {
    border-color: var(--color-primary);
    outline: none;
}

.filter-search::placeholder {
    color: var(--color-text-muted);
}

/* =============================================
   Games Sections
   ============================================= */
.games-section {
    padding: 16px 24px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
}

.see-more-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: color var(--transition);
}

.see-more-link:hover {
    color: var(--color-primary-hover);
}

.carousel-controls {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 14px;
    transition: all var(--transition);
}

.carousel-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(212, 133, 28, 0.08);
}

/* Games Carousel */
.games-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.games-carousel::-webkit-scrollbar {
    display: none;
}

/* Game Card */
.game-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
    background: var(--color-dark-alt);
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: inherit;
}

.game-card:hover .game-thumb {
    box-shadow: var(--shadow-lg);
}

.game-thumb-text {
    font-size: 48px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.game-thumb-text svg {
    width: 48px;
    height: 48px;
}

.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: var(--color-danger);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jackpot-amount {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    text-align: center;
    backdrop-filter: blur(4px);
}

.game-name {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =============================================
   SEO Content Block
   ============================================= */
.seo-content {
    background: var(--color-bg-alt);
    padding: 48px 24px;
    margin-top: 20px;
}

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

.seo-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 28px 0 12px;
}

.seo-content p {
    color: var(--color-text);
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 14.5px;
}

.seo-content strong {
    color: var(--color-dark);
}

.seo-content em {
    font-style: italic;
}

.seo-content ul {
    margin: 14px 0 20px;
    padding-left: 0;
    list-style: none;
}

.seo-content ul li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text);
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.seo-content-inner > div {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    font-size: 14px;
}

.seo-content table caption {
    padding: 12px 16px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: left;
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-primary);
    font-size: 15px;
}

.seo-content table th {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-text);
}

.seo-content table tbody tr:hover {
    background: var(--color-bg-alt);
}

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

/* =============================================
   Footer
   ============================================= */
.site-footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border-light);
    padding: 40px 24px 24px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-list li {
    margin-bottom: 10px;
}

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

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

/* Payment Methods */
.payment-methods {
    padding: 32px 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.payment-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.payment-row-2 {
    margin-bottom: 0;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.payment-label {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.payment-label.maestro {
    color: #003087;
    font-style: italic;
}

.payment-label.mastercard {
    background: linear-gradient(90deg, #eb001b, #f79e1b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-transform: lowercase;
}

.payment-label.bank {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark-light);
    text-transform: none;
}

.payment-label.crypto {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: none;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 32px;
}

.footer-logo-text {
    display: block;
    font-family: var(--font-logo);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--color-dark);
    margin-bottom: 16px;
}

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

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-text-muted);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    margin: 0 6px;
    vertical-align: middle;
}

.footer-responsible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.responsible-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
    padding: 6px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.responsible-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* =============================================
   Responsive Design
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-image-placeholder {
        width: 260px;
        height: 180px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-title-small {
        font-size: 28px;
    }

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }

    body {
        padding-left: 0;
    }

    .sidebar {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .header-container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .sub-nav-list {
        padding: 0 16px;
        gap: 16px;
    }

    /* Hero */
    .hero-banner {
        flex-direction: column;
        padding: 32px 24px;
        margin: 12px 16px;
        min-height: auto;
        text-align: center;
    }

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

    .hero-title {
        font-size: 28px;
    }

    .hero-title-small {
        font-size: 24px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .hero-disclaimer {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        text-align: center;
    }

    /* Filters */
    .filters-section {
        padding: 16px 16px;
    }

    .filters-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Games */
    .games-section {
        padding: 12px 16px 20px;
    }

    .game-card {
        flex: 0 0 165px;
    }

    /* SEO Content */
    .seo-content {
        padding: 32px 16px;
    }

    .seo-content h2 {
        font-size: 22px;
    }

    .seo-content h3 {
        font-size: 17px;
    }

    /* Footer */
    .site-footer {
        padding: 32px 16px 16px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .payment-icons-row {
        gap: 16px;
    }

    .payment-label {
        font-size: 13px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .header-actions {
        gap: 6px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-title-small {
        font-size: 20px;
    }

    .game-card {
        flex: 0 0 150px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-responsible {
        flex-direction: column;
        gap: 10px;
    }
}

/* =============================================
   Animations & Micro-interactions
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

.game-card {
    animation: fadeInUp 0.4s ease-out;
    animation-fill-mode: both;
}

.game-card:nth-child(1) {
    animation-delay: 0.05s;
}

.game-card:nth-child(2) {
    animation-delay: 0.1s;
}

.game-card:nth-child(3) {
    animation-delay: 0.15s;
}

.game-card:nth-child(4) {
    animation-delay: 0.2s;
}

.game-card:nth-child(5) {
    animation-delay: 0.25s;
}

.game-card:nth-child(6) {
    animation-delay: 0.3s;
}

.game-card:nth-child(7) {
    animation-delay: 0.35s;
}

.game-card:nth-child(8) {
    animation-delay: 0.4s;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .sidebar,
    .mobile-nav,
    .mobile-nav-overlay,
    .hero-banner,
    .filters-section,
    .games-section {
        display: none !important;
    }

    body {
        padding-left: 0;
    }

    .seo-content {
        background: none;
        padding: 0;
    }
}