/* =====================================================
   COCOA CASINO — STYLES
   Dark chocolate/brown theme for UK online casino
   ===================================================== */

/* CSS Custom Properties */
:root {
    --bg-primary: #1a0e0a;
    --bg-secondary: #2a1810;
    --bg-card: #3a2418;
    --bg-sidebar: #1e1210;
    --bg-header: #1a0e0a;
    --bg-footer: #120a07;

    --text-primary: #f5e6d3;
    --text-secondary: #c4a882;
    --text-muted: #8b7355;
    --text-heading: #ffffff;

    --accent-primary: #d4851a;
    --accent-hover: #e89a2e;
    --accent-gold: #c8960c;
    --accent-warm: #b3621a;

    --border-color: #4a3020;
    --border-light: #5a3e2a;

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

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

    --sidebar-width: 220px;
    --header-height: 60px;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* 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-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

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

input {
    font-family: inherit;
    border: none;
    outline: none;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger-btn {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-o {
    color: var(--accent-primary);
    position: relative;
}

.logo-o::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -8px;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(212, 133, 26, 0.6);
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: -2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login,
a.btn-login {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
    background: transparent;
}

.btn-login:hover {
    background: rgba(212, 133, 26, 0.15);
    color: var(--accent-hover);
}

.btn-register,
a.btn-register {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    background: var(--accent-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
    border: 1px solid var(--accent-primary);
}

.btn-register:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 133, 26, 0.3);
}

/* =====================================================
   SIDEBAR
   ===================================================== */
.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    z-index: 900;
    transition: transform var(--transition-base);
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.sidebar-nav {
    padding: 12px 0;
}

.sidebar-heading {
    padding: 12px 20px 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.sidebar-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.sidebar-link:hover {
    color: var(--text-heading);
    background: rgba(212, 133, 26, 0.08);
}

.sidebar-link.active {
    color: var(--accent-primary);
    background: rgba(212, 133, 26, 0.12);
}

.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 0 3px 3px 0;
}

.sidebar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lang-link .arrow {
    margin-left: auto;
    font-size: 12px;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 800;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */
.main-content {
    margin-left: var(--sidebar-width);
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* =====================================================
   BONUS SLIDER
   ===================================================== */
.bonus-slider-section {
    padding: 20px 24px 10px;
}

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

.bonus-track {
    display: flex;
    transition: transform var(--transition-slow);
    gap: 16px;
}

.bonus-card {
    min-width: calc(33.333% - 11px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 133, 26, 0.05), transparent);
    pointer-events: none;
}

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

.bonus-tag {
    display: inline-block;
    background: var(--accent-primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.bonus-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
    line-height: 1.2;
}

.bonus-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.btn-bonus {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--text-secondary);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-bonus:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}

.bonus-card-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-left: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.bonus-card-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* =====================================================
   SEARCH SECTION
   ===================================================== */
.search-section {
    padding: 14px 24px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0 16px;
    transition: var(--transition-base);
}

.search-wrapper:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(212, 133, 26, 0.15);
}

.search-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    opacity: 0.5;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.search-input {
    flex: 1;
    padding: 12px 0;
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
}

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

/* =====================================================
   GAME TABS
   ===================================================== */
.games-section {
    padding: 0 24px 30px;
}

.game-tabs {
    display: flex;
    gap: 8px;
    padding: 8px 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.game-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    white-space: nowrap;
    transition: var(--transition-base);
}

.tab-btn:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}

.tab-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.tab-icon svg {
    width: 14px;
    height: 14px;
}

/* =====================================================
   GAME GRID
   ===================================================== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: start;
}

.game-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
}

.game-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.game-thumb {
    width: 100%;
    position: relative;
    display: block;
    background: var(--bg-card);
}

.game-thumb img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.game-thumb-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 6px 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

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

.btn-play,
a.btn-play {
    display: inline-block;
    text-decoration: none;
    padding: 10px 28px;
    background: var(--accent-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
    transform: translateY(10px);
}

.game-card:hover .btn-play {
    transform: translateY(0);
}

.btn-play:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.btn-load-more,
a.btn-load-more {
    display: block;
    text-decoration: none;
    text-align: center;
    margin: 24px auto 0;
    padding: 12px 40px;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
}

.btn-load-more:hover {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 133, 26, 0.3);
}

/* =====================================================
   SEO CONTENT / ARTICLE
   ===================================================== */
.seo-content {
    padding: 40px 24px;
    max-width: 900px;
    border-top: 1px solid var(--border-color);
}

.seo-content h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 18px;
    line-height: 1.3;
}

.seo-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin-top: 30px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.seo-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-top: 22px;
    margin-bottom: 10px;
}

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

.seo-content ul {
    margin: 12px 0 18px 20px;
}

.seo-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.seo-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

/* SEO Table — автоматически для table внутри .seo-content */
.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.seo-content table td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

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

.seo-content table tr:hover td {
    background: var(--bg-card);
}

/* FAQ — автоматически для section#faq внутри .seo-content */
.seo-content section {
    margin-top: 20px;
}

.seo-content section > div {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition-base);
}

.seo-content section > div:hover {
    border-color: var(--border-light);
}

.seo-content section > div > button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-card);
    color: var(--text-heading);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-base);
}

.seo-content section > div > button:hover {
    background: var(--bg-secondary);
}

.seo-content section > div > button span {
    font-size: 16px;
    transition: transform var(--transition-base);
    color: var(--accent-primary);
}

.seo-content section > div.open > button span {
    transform: rotate(180deg);
}

.seo-content section > div > div {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.seo-content section > div.open > div {
    max-height: 300px;
}

.seo-content section > div > div p {
    padding: 0 18px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* =====================================================
   PROVIDERS
   ===================================================== */
.providers-section {
    padding: 30px 24px;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 20px;
    text-align: center;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    transition: var(--transition-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.provider-logo:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    background: var(--bg-card);
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIBLE BAR
   ===================================================== */
.responsible-bar {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.responsible-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-18 {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
}

.responsible-item.payment {
    font-size: 16px;
    letter-spacing: 1px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--bg-footer);
    padding: 40px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 36px;
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 13.5px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-primary);
}

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

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo .logo-text {
    font-size: 36px;
    letter-spacing: 5px;
}

.footer-logo .logo-sub {
    font-size: 13px;
    letter-spacing: 12px;
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================================
   LIVE CHAT BUTTON
   ===================================================== */
.live-chat-btn,
a.live-chat-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    transition: var(--transition-base);
    animation: chatPulse 2s infinite;
}

.live-chat-btn svg {
    width: 24px;
    height: 24px;
}

.responsible-check {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.live-chat-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

@keyframes chatPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 133, 26, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 133, 26, 0);
    }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.active {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .bonus-card {
        min-width: calc(50% - 8px);
    }

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

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

@media (max-width: 768px) {
    .site-header {
        padding: 0 14px;
    }

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

    .logo-sub {
        font-size: 8px;
        letter-spacing: 6px;
    }

    .btn-login,
    .btn-register {
        padding: 6px 14px;
        font-size: 13px;
    }

    .bonus-slider-section,
    .search-section,
    .games-section,
    .providers-section,
    .responsible-bar,
    .site-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bonus-card {
        min-width: 100%;
    }

    .bonus-card-icon {
        width: 80px;
        height: 80px;
    }

    .bonus-title {
        font-size: 18px;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

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

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

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

@media (max-width: 480px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

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

    .game-tabs {
        gap: 6px;
    }

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

    .responsible-items {
        gap: 16px;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.game-card {
    animation: fadeInUp 0.4s ease forwards;
}

.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;
}

.game-card:nth-child(9) {
    animation-delay: 0.45s;
}

.game-card:nth-child(10) {
    animation-delay: 0.5s;
}

/* Smooth hover for sidebar */
.sidebar-link {
    position: relative;
    overflow: hidden;
}

.sidebar-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--accent-primary);
    transition: width var(--transition-base);
}

.sidebar-link:hover::after {
    width: 100%;
}