* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Основные цвета */
    --primary-bg: #ffffff; /* Белый фон */
    --secondary-bg: #f8f9fa; /* Светло-серый для второстепенных элементов */
    --text-color: #2c3e50; /* Темно-серый для текста, хорошо различимый на белом */
    --text-light: #6c757d; /* Светло-серый для второстепенного текста */
    
    /* Акцентные цвета */
    --accent-primary: #007bff; /* Яркий синий */
    --accent-secondary: #32e75d; /* Зеленый */
    --accent-tertiary: #ffc107; /* Желтый */
    --accent-danger: #dc3545; /* Красный */
    --accent-info: #17a2b8; /* Голубой */
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #007bff 0%, #32e75d 100%);
    --gradient-secondary: linear-gradient(135deg, #ffc107 0%, #dc3545 100%);
    --gradient-header: linear-gradient(90deg, #007bff, #32e75d, #ffc107, #dc3545);
    
    /* Тени и границы */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --border-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #1960ca;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

ol, ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

ul li::before {
    content: "•";
    color: var(--accent-primary);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

ol li::marker {
    color: var(--accent-primary);
    font-weight: 700;
}

strong {
    font-weight: 700;
    color: #1960ca;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Removed */
.club-cookie-block {
    display: none !important;
}

.to-top {
    display: none !important;
}

.content-panel {
    display: none !important;
}

[style="max-width: 0; opacity: 0;"] {
    display: none !important;
}

#club-top + .sticky-wrapper {
    z-index: 1000;
}

/* Modern Header Styles */
/* Base Header Styles */
.club-page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.club-top-panel {
    padding: 0;
    height: 72px;
}

.club-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

header .club-container {
    display: flex;
    max-width: 1500px;
    align-items: center;
    height: inherit;
}

/* Logo Styles */
.club-header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.club-header-logo:hover {
    transform: scale(1.05);
}

.club-header-logo img {
    width: 100%;
    max-width: 220px;
    transition: filter 0.15s ease;
}

.club-header-logo:hover img {
    filter: brightness(1.1);
}

/* Navigation Styles */
.club-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 60px;
}

.club-nav-panel {
    display: flex;
}

.club-site-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: stretch;
}

.club-dropdown {
    position: relative;
    margin-bottom: 0;
}

.club-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.club-dropdown > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.club-dropdown:hover > a::before {
    transform: scaleX(1);
}

.club-open-sub {
    transition: transform 0.3s ease;
}

.club-dropdown:hover .club-open-sub {
    transform: rotate(180deg) translateY(-4px);
}

.club-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-bg);
    box-shadow: 0 8px 25px var(--shadow-medium);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin; 
}

.club-dropdown:hover .club-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.club-sub-menu li {
    margin-bottom: 0;
}

.club-sub-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.3s ease;
}

.club-sub-menu li a:hover {
    background: rgba(0, 123, 255, 0.1);
    color: var(--accent-primary);
}

/* Language Selector */
.lang {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current svg path {
    fill: var(--text-color);
}

.lang-current:hover {
    background: #e9ecef;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.lang-select {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-bg);
    box-shadow: 0 8px 25px var(--shadow-medium);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.lang:hover .lang-select {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-select li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
    transition: background 0.3s ease;
}

.lang-select li a:hover {
    background: rgba(0, 123, 255, 0.1);
    color: var(--accent-primary);
}

/* Right Panel */
.club-right-panel {
    display: none; /* Hidden on desktop */
}

.club-burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: background 0.3s ease;
    border-radius: 4px;
    position: relative;
    z-index: 1002;
}

.club-burger-menu:hover {
    background: rgba(0, 0, 0, 0.05);
}

.club-close {
    display: none; /* Initially hide close icon */
}

.club-close svg {
    display: block;
}

/* Mobile Styles - Активируется с 1200px */
@media (max-width: 1200px) {
    header .club-container {
        padding: 0.75rem 1rem;
        gap: 1rem;
    }

    .club-header-logo img {
        max-width: 180px;
    }

    .club-navigation {
        display: none; /* Hide navigation on mobile */
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        height: 100vh;
        justify-content: flex-start;
    }

    .club-nav-panel {
        background: var(--primary-bg);
        width: 100%;
        max-width: 400px;
        height: 100%;
        overflow-y: auto;
        padding: 0 1.5rem 2rem;
        /* box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2); */
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .club-site-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        height: auto;
        width: 100%;
    }

    .club-dropdown {
        border-bottom: 1px solid #e9ecef;
    }

    .club-dropdown > a {
        padding: 1rem 0;
        height: auto;
        font-size: 1rem;
        justify-content: space-between;
    }

    .club-dropdown > a::before {
        display: none;
    }

    .club-open-sub {
        transition: transform 0.3s ease;
    }

    .club-dropdown.active .club-open-sub {
        transform: rotate(180deg);
    }

    .club-sub-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .club-dropdown.active .club-sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 0.5rem 0;
    }

    .club-sub-menu li a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .lang {
        display: none; /* Hide language selector on mobile by default */
    }

    .club-right-panel {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    /* Mobile menu open state */
    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .club-navigation {
        display: flex;
    }

    body.mobile-menu-open .club-nav-panel {
        transform: translateX(0);
    }

    body.mobile-menu-open .club-burger-menu .club-open {
        display: none;
    }

    body.mobile-menu-open .club-burger-menu .club-close {
        display: block;
    }

    /* Language selector in mobile menu */
    body.mobile-menu-open .lang {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 5rem;
    }

    body.mobile-menu-open .lang-current {
        background: transparent;
        padding: 0.5rem;
    }

    body.mobile-menu-open .lang-select {
        right: auto;
        left: 0;
    }
}

/* Дополнительные адаптивные правила для маленьких экранов */
@media (max-width: 768px) {
    header .club-container {
        padding: 0.5rem;
    }

    .club-header-logo img {
        max-width: 150px;
    }

    .club-nav-panel {
        max-width: 320px;
        padding: 0 1rem 2rem;
    }

    .club-dropdown > a {
        font-size: 0.95rem;
        padding: 0.875rem 0;
    }

    .club-sub-menu li a {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .club-nav-panel {
        max-width: 100%;
        padding: 0 1rem 2rem;
    }
}

/* Additional Modern Touches */
.club-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-header);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.club-page-header:hover::before {
    opacity: 1;
}

.club-content-wrap {
    display: flex;
    align-items: start;
}

@media (max-width: 992px) {
    .club-content-wrap {
        flex-direction: column;
        align-items: stretch;
    }
}

.club-content {
    padding: 0 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 992px) {
    .club-content {
        padding: 1rem 0;
    }
}

.club-hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    padding: 2rem 1rem;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--accent-tertiary);
}

.club-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.club-hero .club-container {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    gap: 1rem;
    margin: 0 auto;
}

.club-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1960ca;
    margin-bottom: 0;
    line-height: 1.2;
}

.club-hero ul.is-style-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.club-hero ul.is-style-info li {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 480px) {

    .club-hero ul.is-style-info {
        gap: 0 !important;
    }

    .club-hero ul.is-style-info li {
        margin-bottom: 0;
    }
}

.club-hero ul.is-style-info li::before {
    display: none;
}

.club-hero ul.is-style-info li:not(:last-child)::after {
    content: "•";
    margin-left: 1rem;
    color: var(--text-light);
}

.club-hero p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-color);
}

.club-hero p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .club-hero {
        padding: 1.5rem 0;
    }

    .club-hero h1 {
        font-size: 2rem;
    }

    .club-hero ul.is-style-info {
        gap: 1rem;
    }

    .club-hero p {
        font-size: 1rem;
    }
}

.club-sidebar {
    flex: 1;
    background: var(--primary-bg);
    box-shadow: 0 4px 15px var(--shadow-light);
    padding: 1rem;
    border-radius: 12px;
    min-width: 320px;
}

.filters {
    display: none !important;
}

.sidebar-mobile {
    display: none !important;
}

/* Author block - compact horizontal */
.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-light);
}
.author__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 48px;
    box-shadow: 0 2px 6px var(--shadow-light);
}
.author p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-color);
}
.author a {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
}
.author a:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}
.author__separate {
    width: 1px;
    height: 32px;
    background: var(--border-color);
    margin: 0 .5rem;
    flex: 0 0 1px;
}
#updated {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .author { gap: 0.5rem; padding: 0.4rem 0; }
    .author__icon { width: 40px; height: 40px; flex: 0 0 40px; }
    .author__separate { height: 28px; margin: 0 .4rem; }
    .author { font-size: 0.9rem; }
}

/* Sidebar Menu Styles */
.club-sidebar .sidebar-menu {
    width: 100%;
}

.club-sidebar .sidebar-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.club-sidebar .sidebar-menu > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.club-sidebar .sidebar-menu > ul > li {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

.club-sidebar .sidebar-menu > ul > li::before {
    display: none;
}

.club-sidebar .sidebar-menu > ul > li:last-child {
    border-bottom: none;
}

.club-sidebar .sidebar-menu > ul > li.dropdown {
    position: relative;
}

.club-sidebar .sidebar-menu > ul > li.dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: transparent;
}

.club-sidebar .sidebar-menu > ul > li.dropdown > a:hover {
    background: rgba(0, 123, 255, 0.05);
    color: var(--accent-primary);
    padding-left: 1.25rem;
}

.club-sidebar .sidebar-menu > ul > li.dropdown .dropdown__toggler {
    position: absolute;
    right: 6px;
    top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: var(--secondary-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.club-sidebar .sidebar-menu > ul > li.dropdown:hover .dropdown__toggler {
    background: var(--accent-primary);
}

.club-sidebar .sidebar-menu > ul > li.dropdown .dropdown__toggler img {
    width: 9px;
    height: 6px;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%);
}

.club-sidebar .sidebar-menu > ul > li.dropdown:hover .dropdown__toggler img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.club-sidebar .sidebar-menu > ul > li.dropdown.active .dropdown__toggler {
    background: var(--accent-primary);
}

.club-sidebar .sidebar-menu > ul > li.dropdown.active .dropdown__toggler img {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(100%);
}

.club-sidebar .sidebar-menu .dropdown__sublist {
    max-height: 0;
    overflow: hidden;
    background: var(--secondary-bg);
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    margin: 0;
}

.club-sidebar .sidebar-menu > ul > li.dropdown.active .dropdown__sublist {
    max-height: 1000px;
    padding: 0.5rem 0;
}

.club-sidebar .sidebar-menu .dropdown__sublist li {
    margin-bottom: 0;
    padding: 0;
}

.club-sidebar .sidebar-menu .dropdown__sublist li::before {
    display: none;
}

.club-sidebar .sidebar-menu .dropdown__sublist li a {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem 0.625rem 2.25rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
}

.club-sidebar .sidebar-menu .dropdown__sublist li a::before {
    content: '→';
    position: absolute;
    left: 1.5rem;
    color: var(--accent-primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.25s ease;
}

.club-sidebar .sidebar-menu .dropdown__sublist li a:hover {
    background: rgba(0, 123, 255, 0.08);
    color: var(--accent-primary);
    padding-left: 2.5rem;
}

.club-sidebar .sidebar-menu .dropdown__sublist li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Анимация при открытии */
.club-sidebar .sidebar-menu > ul > li.dropdown.active > a {
    background: rgba(0, 123, 255, 0.05);
    color: var(--accent-primary);
}

/* Widget с меню */
.club-sidebar .club-widget-list {
    overflow: hidden;
}

.club-sidebar .club-widget-list .club-widget-body {
    padding: 0;
}

.club-widget {
    margin-bottom: 2rem;
}

.club-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.club-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    opacity: 1;
    transform: scaleX(1);
    transition: all 0.3s ease;
}


/* Адаптивность */
@media (max-width: 992px) {
    .club-sidebar .sidebar-menu > ul > li.dropdown > a {
        font-size: 0.9rem;
        padding: 0.75rem 0.875rem;
    }

    .club-sidebar .sidebar-menu .dropdown__sublist li a {
        font-size: 0.85rem;
        padding: 0.5rem 0.875rem 0.5rem 2rem;
    }

    .club-sidebar .sidebar-menu .dropdown__sublist li a:hover {
        padding-left: 2.25rem;
    }

    .club-sidebar .sidebar-menu .dropdown__sublist li a::before {
        left: 1.25rem;
    }
}

@media (max-width: 576px) {
    .club-sidebar .sidebar-menu > ul > li.dropdown > a {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
    }

    .club-sidebar .sidebar-menu .dropdown__toggler {
        width: 24px;
        height: 24px;
    }

    .club-sidebar .sidebar-menu .dropdown__sublist li a {
        font-size: 0.825rem;
        padding: 0.5rem 0.75rem 0.5rem 1.75rem;
    }
}

/* Brand/Affiliate Table Styles */
.affiliate {
    margin: 3rem 0;
}

.brands {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.brands tbody {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.brand {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.brand:hover {
    transform: translateY(-3px);
}

.brand td {
    flex: 1;
    background: #fff;
    padding: 1rem;
    vertical-align: middle;
    /* border-top: 1px solid var(--border-color); */
    /* border-bottom: 1px solid var(--border-color); */
    position: relative;
    border-radius: 0 0 0 20px;
}

.brand .brands__logo {
    /* border-left: 1px solid var(--border-color); */
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.brand .brands__buttons {
    /* border-right: 1px solid var(--border-color); */
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.brand:hover {
    box-shadow: 0 10px 20px var(--shadow-light);
    border-color: transparent;
}

/* Highlight top brand */
.brand_main td {
    background: linear-gradient(to bottom, #f0f7ff, #ffffff);
    border-color: rgba(0, 123, 255, 0.2);
}

/* Logo Column */
.brands__logo {
    width: 180px;
    text-align: center;
}

.brand__logo {
    position: relative;
    display: inline-block;
}

.brand__number {
    position: absolute;
    top: -10px;
    left: -15px;
    width: 31px;
    height: 31px;
    background: var(--secondary-bg);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px var(--shadow-light);
    border: 2px solid #ffd75f;
    z-index: 2;
}

.brand_main .brand__number {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    border: 2px solid #fff;
}

.brand__logo img {
    max-width: 120px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.brand:hover .brand__logo img {
    transform: scale(1.05);
}

.brand__verify {
    position: absolute !important;
    top: -8px;
    right: -8px;
    width: 24px !important;
    height: 24px !important;
    z-index: 2;
}

/* Rating Column */
.brands__rating {
    width: 25%;
}

.brand__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.brand__rating {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.rating {
    color: var(--accent-tertiary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating__body {
    background-image: url('/wp-content/themes/juanna/assets/icons/stars-gray.svg');
    background-repeat: no-repeat;
    background-size: 100px;
    height: 20px;
    width: 100px;
    position: relative;
    margin-top: 2px;
}

.rating__active {
    background-image: url('/wp-content/themes/juanna/assets/icons/stars.svg');
    background-repeat: no-repeat;
    background-size: 100px;
    height: 100%;
    width: var(--rating-percent, 0%);
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 992px) {
    .rating__body {
        background-size: 69px;
    }

    .rating__active {
        background-size: 69px;
    }
}

@media (max-width: 576px) {
    .rating__body {
        background-size: 60px;
        height: 16px;
        width: 50px;
    }

    .rating__active {
        background-size: 60px;
    }
    
}

.brands__rating a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px dashed var(--text-light);
    transition: all 0.2s ease;
}

.brands__rating a:hover {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* Bonus Column */
.brands__bonus {
    width: 25%;
    text-align: center;
}

.brands__bonus span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.bonus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-secondary);
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* Buttons Column */
.brands__buttons {
    width: 20%;
    text-align: center;
    padding-right: 2rem !important;
}

.brands__buttons .btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--accent-primary);
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
    margin-bottom: 10px;
    text-align: center;
    white-space: nowrap;
}

.brands__buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
    filter: brightness(1.05);
}

.brand__more {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.brand__more:hover {
    color: var(--accent-primary);
}

.brand__more::after {
    content: '▼';
    font-size: 0.7em;
    transition: transform 0.3s;
}

/* Folded/Hidden Content */
.brands__folded {
    display: none;
}

.brand__folded {
    width: 100%;
}

.brands__folded--open {
    display: flex;
    flex: 1 1 100% !important;
    border-radius: 0 0 12px 12px !important;
}

/* Mobile Toggle Column */
.brands__more {
    display: none !important;
}

.brand__list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 10px;
}

.brand__list li {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.brand__time,
.brand__deposits {
    margin-bottom: 12px;
}

.brand__time:last-child,
.brand__deposits:last-child {
    margin-bottom: 0;
}

.brand__caption {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.brand__time > div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.brand__time img {
    width: 16px;
    height: 16px;
}

.brand__separate {
    height: 1px;
    background: var(--secondary-bg);
    margin: 12px 0;
}

.deposits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.deposits img {
    max-width: 40px;
    height: auto;
    max-height: 24px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 992px) {
    .brands {
        display: block;
    }
    
    .brands tbody {
        display: block;
    }

    .brand {
        display: flex;
        flex-wrap: wrap;
        background: #fff;
        margin-bottom: 15px;
        border-radius: 12px;
        box-shadow: 0 3px 12px var(--shadow-light);
        padding: 12px;
        border: 1px solid var(--border-color);
        gap: 12px;
    }

    .brand:hover {
        box-shadow: 0 5px 15px var(--shadow-medium);
    }

    .brand_main {
        background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
        border-color: rgba(0, 123, 255, 0.2);
        box-shadow: 0 5px 18px rgba(0, 123, 255, 0.15);
    }

    .brand_main:hover {
        box-shadow: 0 8px 22px rgba(0, 123, 255, 0.25);
    }

    .brand td {
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* Горизонтальная компоновка: лого, рейтинг, бонус в одну линию */
    .brands__logo {
        flex-shrink: 0;
        position: relative;
        width: 80px;
        order: 1;
    }

    .brand__logo {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .brand__logo img:not(.brand__verify) {
        max-width: 100%;
        height: auto;
        max-height: 45px;
        object-fit: contain;
    }

    .brand__verify {
        width: 18px !important;
        height: 18px !important;
    }

    .brand__number {
        position: absolute;
        left: -8px;
        top: -8px;
        width: 28px;
        height: 28px;
        font-size: 14px;
        line-height: 28px;
    }

    .brand_main .brand__number {
        width: 32px;
        height: 32px;
        font-size: 16px;
        line-height: 32px;
    }

    /* Рейтинг - занимает оставшееся пространство */
    .brands__rating {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        order: 2;
    }

    .brand__name {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand__rating {
        margin-bottom: 4px;
        display: flex;
        align-items: center;
    }

    .rating {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .rating__value {
        font-size: 12px;
    }

    .rating__body {
        height: 14px;
        width: 70px;
    }

    .brands__rating a {
        font-size: 11px;
        padding: 3px 0;
        display: inline-block;
    }

    /* Бонус - компактный блок справа */
    .brands__bonus {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-left: 12px;
        border-left: 1px solid var(--secondary-bg) !important;
        order: 3;
        min-width: 100px;
    }

    .brands__bonus span {
        font-size: 11px;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .brands__bonus span img {
        width: 14px;
        height: 14px;
    }

    .bonus {
        font-size: 13px;
        font-weight: 700;
        line-height: 1.2;
    }

    /* Кнопка на всю ширину */
    .brands__buttons {
        width: 100%;
        order: 4;
        border-top: 1px solid var(--secondary-bg);
        padding-top: 12px;
    }

    .brands__buttons .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Скрытый контент */
    .brands__folded {
        width: 100%;
        order: 6;
        display: none;
    }

    .brands__folded--open {
        display: block;
    }

    .brand__folded {
        padding-top: 12px;
        border-top: 1px solid var(--secondary-bg);
    }

    .brand__time,
    .brand__deposits {
        margin-bottom: 12px;
    }

    .brand__time:last-child,
    .brand__deposits:last-child {
        margin-bottom: 0;
    }

    .brand__caption {
        display: block;
        font-size: 11px;
        color: var(--text-light);
        margin-bottom: 6px;
        font-weight: 600;
    }

    .brand__time > div {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
    }

    .brand__time img {
        width: 16px;
        height: 16px;
    }

    .brand__separate {
        height: 1px;
        background: var(--secondary-bg);
        margin: 12px 0;
    }

    .deposits {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .deposits img {
        max-width: 40px;
        height: auto;
        max-height: 24px;
        object-fit: contain;
    }
    
    /* Мобильная кнопка "Mehr Infos" */
    .brands__more {
        width: 100%;
        order: 5;
    }
    
    /* Hide desktop specific elements */
    [data-more-brand="desktop"] {
        /* display: none; */
    }
    
    [data-more-brand="mobile"] {
        display: block;
        text-align: center;
        margin-top: 0;
        padding: 0;
    }

    [data-more-brand="mobile"] .brand__more,
    .brands__more .brand__more {
        margin-top: 0;
        font-size: 13px;
        color: var(--accent-primary);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 8px;
        transition: all 0.3s;
        font-weight: 600;
        text-decoration: none;
    }

    [data-more-brand="mobile"] .brand__more:hover,
    .brands__more .brand__more:hover {
        color: var(--accent-secondary);
    }

    [data-more-brand="mobile"] .brand__more span,
    .brands__more .brand__more span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    [data-more-brand="mobile"] .brand__more span::after,
    .brands__more .brand__more span::after {
        content: '▼';
        font-size: 0.7em;
        transition: transform 0.3s;
        display: inline-block;
    }

    .brands__folded--open ~ [data-more-brand="mobile"] .brand__more span::after,
    .brands__folded--open ~ .brands__more .brand__more span::after {
        transform: rotate(180deg);
    }
}

/* Дополнительные стили для планшетов */
@media (max-width: 768px) and (min-width: 481px) {
    .brands__logo {
        width: 75px;
    }

    .brand__logo img:not(.brand__verify) {
        max-height: 42px;
    }

    .brand__name {
        font-size: 13.5px;
    }

    .brands__bonus {
        min-width: 95px;
    }
}

@media (max-width: 480px) {
    .brand {
        padding: 10px;
        margin-bottom: 12px;
        gap: 10px;
    }

    .brands__logo {
        width: 65px;
    }

    .brand__logo img:not(.brand__verify) {
        max-height: 38px;
    }

    .brand__verify {
        width: 16px !important;
        height: 16px !important;
    }

    .brand__number {
        left: -21px;
        top: -20px;
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 24px;
    }

    .brand_main .brand__number {
        width: 28px;
        height: 28px;
        font-size: 14px;
        line-height: 28px;
    }

    .brand__name {
        font-size: 13px;
    }

    .rating__value {
        font-size: 11px;
    }

    .rating__body {
        height: 12px;
        width: 60px;
    }

    .brands__rating a {
        font-size: 10px;
        padding: 2px 0;
    }

    .brands__bonus {
        padding-left: 10px;
        min-width: 90px;
    }

    .brands__bonus span {
        font-size: 10px;
    }

    .brands__bonus span img {
        width: 12px;
        height: 12px;
    }

    .bonus {
        font-size: 10px;
        color: #06a31b;
    }

    .brands__buttons {
        padding-top: 10px;
    }

    .brands__buttons .btn {
        padding: 10px;
        font-size: 13px;
        border-radius: 6px;
    }

    /* Скрытый контент для маленьких экранов */
    .brand__folded {
        padding-top: 10px;
    }

    .brand__caption {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .brand__time > div {
        font-size: 12px;
        gap: 5px;
    }

    .brand__time img {
        width: 14px;
        height: 14px;
    }

    .brand__separate {
        margin: 10px 0;
    }

    .deposits {
        gap: 6px;
    }

    .deposits img {
        max-width: 35px;
        max-height: 20px;
    }
}


.brand__logo .brand__verify {
    display: none;
}

/* Advantages-Disadvantages Block Styles - Alternative Version */
.advantages-disadvantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.advantages-disadvantages__item {
    background: var(--primary-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantages-disadvantages__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.advantages-disadvantages__item--advantages::before {
    background: var(--accent-secondary);
}

.advantages-disadvantages__item--disadvantages::before {
    background: var(--accent-danger);
}

.advantages-disadvantages__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.advantages-disadvantages__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantages-disadvantages__header-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--primary-bg);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.advantages-disadvantages__item--advantages .advantages-disadvantages__header {
    color: var(--accent-secondary);
}

.advantages-disadvantages__item--advantages .advantages-disadvantages__header-icon {
    border: 2px solid var(--accent-secondary);
    background: #26a143;
}

.advantages-disadvantages__item--disadvantages .advantages-disadvantages__header {
    color: var(--accent-danger);
}

.advantages-disadvantages__item--disadvantages .advantages-disadvantages__header-icon {
    border: 2px solid var(--accent-danger);
    background: #d93025;
}

.advantages-disadvantages__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantages-disadvantages__list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 0.95rem;
}

.advantages-disadvantages__list li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    top: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.1em;
}

.advantages-disadvantages__list--advantages li::before {
    content: "✓";
    color: var(--accent-secondary);
}

.advantages-disadvantages__list--disadvantages li::before {
    content: "✗";
    color: var(--accent-danger);
}

@media (max-width: 768px) {
    .advantages-disadvantages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .advantages-disadvantages__item {
        padding: 1.25rem;
    }

    .advantages-disadvantages__header {
        font-size: 1.1rem;
    }

    .advantages-disadvantages__header-icon {
        width: 40px;
        height: 40px;
    }
}

/* Content Tables Styles */
.wp-block-table {
    display: block;
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-bg);
    border-radius: 12px;
    overflow: hidden;
    min-width: 600px;
}

.wp-block-table thead {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #fff;
}

.wp-block-table thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.wp-block-table thead th strong {
    color: #fff;
    font-weight: 600;
}

.wp-block-table tbody tr {
    transition: background 0.3s ease;
}

.wp-block-table tbody tr:nth-child(even) {
    background: var(--secondary-bg);
}

.wp-block-table tbody tr:hover {
    background: rgba(0, 123, 255, 0.05);
}

.wp-block-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    font-size: 0.95rem;
    color: var(--text-color);
}

.wp-block-table tbody tr:last-child td {
    border-bottom: none;
}

.wp-block-table tbody td strong {
    color: var(--accent-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .wp-block-table {
        font-size: 0.9rem;
    }

    .wp-block-table thead th,
    .wp-block-table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .wp-block-table {
        margin: 1.5rem 0;
    }
}

/* Club Widget Styles */
.club-content .club-widget {
    margin: 2rem 0;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.club-content .club-widget:hover {
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.club-content .club-widget-body {
    padding: 1.5rem;
}

.deposits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 0;
}

.deposits_sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 60px;
}

.deposits_sidebar a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.deposits_sidebar a img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.deposits_sidebar a:hover img {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .club-content .club-widget-body {
        padding: 1rem;
    }

    .deposits {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .deposits_sidebar a {
        padding: 0.75rem;
        min-height: 50px;
    }

    .deposits_sidebar a img {
        max-height: 30px;
    }
}

/* Footer Styles - Modern BEM */
.footer {
    background: linear-gradient(to bottom, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    color: var(--text-color);
    margin-top: 5rem;
}

/* Partners Section */
.footer__partners {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(50, 231, 93, 0.05) 100%);
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(0, 123, 255, 0.1);
}

.footer__partners-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1960ca;
    margin-bottom: 0;
    align-self: center;
}

.footer__partners-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer__partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.3s ease;
    min-width: 120px;
}

.footer__partner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.footer__partner-link img {
    height: auto;
    max-height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.footer__partner-link:hover img {
    filter: grayscale(0%);
}

/* Main Content Section */
.footer__main {
    padding: 4rem 0 3rem;
    background: var(--secondary-bg);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 4rem;
    align-items: start;
}

/* Company Info Block */
.footer__company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer__logo:hover {
    transform: scale(1.05);
}

.footer__logo img {
    max-width: 200px;
    height: auto;
}

.footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545 0%, #ff6b7a 100%);
    border-radius: 50%;
    padding: 8px;
}

.footer__age-badge img {
    filter: brightness(0) invert(1);
}

.footer__description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.footer__address {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-primary);
    margin: 0;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.footer__social-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.footer__social-links {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px var(--shadow-medium);
    background: var(--accent-primary);
}

.footer__social-link:hover img {
    filter: brightness(0) invert(1);
}

/* Navigation Columns */
.footer__navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer__nav-column {
    display: flex;
    flex-direction: column;
}

.footer__nav-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1960ca;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-primary);
    position: relative;
}

.footer__nav-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-secondary);
}

.footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav-item {
    margin: 0;
}

.footer__nav-item::before {
    display: none;
}

.footer__nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1.2rem;
}

.footer__nav-link::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--accent-primary);
    padding-left: 1.5rem;
}

.footer__nav-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Bottom Section */
.footer__bottom {
    /* background: linear-gradient(135deg, #1960ca 0%, #007bff 100%); */
    background: linear-gradient(135deg, #007bff 0%, #32e75d 100%);
    padding: 2.5rem 0;
    color: white;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Legal Block */
.footer__legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer__legal-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__legal-item {
    margin: 0;
}

.footer__legal-item::before {
    display: none;
}

.footer__legal-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer__legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer__legal-link:hover {
    color: white;
}

.footer__legal-link:hover::after {
    width: 100%;
}

/* Certificates Block */
.footer__certificates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer__certificates-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer__certificates-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer__certificate-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer__certificate-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.footer__certificate-link img {
    height: auto;
    max-height: 33px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer__certificate-link:hover img {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer__content {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }

    .footer__navigation {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__navigation {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__certificates {
        align-items: flex-start;
    }

    .footer__certificates-list {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer__partners {
        padding: 2rem 0;
    }

    .footer__partners-title {
        font-size: 1.1rem;
    }

    .footer__partners-list {
        gap: 1.5rem;
    }

    .footer__partner-link {
        min-width: 100px;
        padding: 0.75rem;
    }

    .footer__main {
        padding: 3rem 0 2rem;
    }

    .footer__navigation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer__bottom {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .footer__partners-list {
        gap: 1rem;
    }

    .footer__partner-link {
        min-width: 80px;
    }

    .footer__partner-link img {
        max-height: 30px;
    }

    .footer__certificates-list {
        gap: 1rem;
    }

    .footer__certificate-link {
        padding: 0.5rem 0.75rem;
    }

    .footer__certificate-link img {
        max-height: 25px;
    }
}

header li::before {
    display: none !important;
}

/* Club FAQ Styles - Open Version */
.club-faq {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    background: var(--primary-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.club-faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.club-faq-item:last-child {
    border-bottom: none;
}

.club-faq-q {
    position: relative;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.club-faq-q::before {
    content: 'Q';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: var(--primary-bg);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-primary);
}

.club-faq-q h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    padding-left: 2.5rem;
}

.club-faq-a {
    background: var(--primary-bg);
    padding: 1rem 1.5rem 1.5rem;
    position: relative;
}

.club-faq-a::before {
    content: 'A';
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-secondary);
    background: var(--primary-bg);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-secondary);
}

.club-faq-a p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 2.5rem;
}

.club-faq-a p:first-child {
    margin-top: 0;
}

.club-faq-a p:last-child {
    margin-bottom: 0;
}

/* Адаптивность для FAQ */
@media (max-width: 768px) {
    .club-faq-q {
        padding: 1rem 1.25rem;
    }

    .club-faq-q h3 {
        font-size: 1rem;
        padding-left: 2.25rem;
    }

    .club-faq-q::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .club-faq-a {
        padding: 0.75rem 1.25rem 1.25rem;
    }

    .club-faq-a p {
        font-size: 0.95rem;
        padding-left: 2.25rem;
    }

    .club-faq-a::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .club-faq-q {
        padding: 0.875rem 1rem;
    }

    .club-faq-q h3 {
        font-size: 0.95rem;
        padding-left: 2rem;
    }

    .club-faq-q::before {
        left: 0.75rem;
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }

    .club-faq-a {
        padding: 0.5rem 1rem 1rem;
    }

    .club-faq-a p {
        font-size: 0.9rem;
        padding-left: 2rem;
    }

    .club-faq-a::before {
        left: 0.75rem;
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }
}
/* About Author Block Styles */
.about-author {
    padding-top: 10px;
}

.about-author__top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.about-author__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-author__icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px var(--shadow-medium);
}

.about-author__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-author__top-body {
    flex: 1;
    min-width: 0;
}

.about-author__name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.about-author__info {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.about-author p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    text-align: justify;
}

.about-author p:first-of-type {
    margin-top: 0;
}

.about-author p:last-of-type {
    margin-bottom: 0;
}

/* Responsive Design for About Author */
@media (max-width: 768px) {
    .about-author {
        padding: 1rem 0;
    }

    .about-author__top {
        gap: 0.875rem;
        margin-bottom: 1rem;
    }

    .about-author__icon {
        width: 70px;
        height: 70px;
    }

    .about-author__name {
        font-size: 1.125rem;
    }

    .about-author__info {
        font-size: 0.85rem;
    }

    .about-author p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-author__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .about-author__icon {
        width: 60px;
        height: 60px;
    }

    .about-author__name {
        font-size: 1rem;
    }

    .about-author p {
        font-size: 0.875rem;
        text-align: left;
    }
}

.details {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.details__item {
    font-size: 0.9rem;
    color: var(--text-light);
}

.details__item::before {
    display: none;
}

/* Sidebar Top 5 Casino Styles */
.sidebar-top5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-top5 li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--secondary-bg);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow-light);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.sidebar-top5 li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-medium);
    border-color: var(--accent-primary);
}

.sidebar-top5 li img {
    width: 100%;
    max-width: 85px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.sidebar-top5 li:hover img {
    transform: scale(1.05);
}

.sidebar-top5__bonus {
    text-align: center;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sidebar-top5 li .btn {
    width: 100%;
    padding: 10px 16px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    text-align: center;
}

.sidebar-top5 li .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    filter: brightness(1.05);
}

/* Responsive for Sidebar Top 5 */
@media (max-width: 768px) {
    .sidebar-top5 li {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .sidebar-top5 li img {
        max-width: 70px;
    }

    .sidebar-top5__bonus {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .sidebar-top5 li .btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .sidebar-top5 li {
        padding: 0.5rem;
    }

    .sidebar-top5 li img {
        max-width: 60px;
    }

    .sidebar-top5__bonus {
        font-size: 0.75rem;
    }

    .sidebar-top5 li .btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Offer Block Styles */
.offer {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-medium);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.offer_hero {
    display: flex;
    border: 2px solid var(--accent-info);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.offer_hero tbody {
    width: 100% !important;
}

@media (max-width: 480px) {
    .offer_hero .offer__body {
        flex-direction: column !important;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.offer_hero .offer__body {
    display: flex;
    width: 100% !important;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(50, 231, 93, 0.1) 100%);
}

.offer_hero .offer__body td {
    flex: 1;
    color: #1960ca;
}

.offer:not(.offer_hero) {
    margin: 0 auto 2rem;
    max-width: 1200px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 12px var(--shadow-medium);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.offer:not(.offer_hero).show-sticky {
    opacity: 1;
    pointer-events: auto;
}

.offer__body {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.offer__separate {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    opacity: 0.5;
}

.offer_hero .offer__separate {
    display: none;
}

.offer__logo {
    flex-shrink: 0;
    text-align: center;
}

.offer__logo img {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.offer__logo img:hover {
    transform: scale(1.05);
}

.offer__info {
    flex: 1;
    min-width: 0;
}

.offer__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: inherit;
}

.offer__raiting {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.offer_hero .offer__raiting {
    color: #1960ca;
}

.offer__raiting img {
    width: 20px;
    height: 20px;
}

.offer__bonus {
    flex-shrink: 0;
    text-align: center;
    min-width: 150px;
}

.offer__bonus span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

.offer_hero .offer__bonus span {
    color: #1960ca;
}

.offer__bonus span img {
    width: 18px;
    height: 18px;
}

.offer__bonus div {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-secondary);
}

.offer_hero .offer__bonus div {
    color: #1960ca;
}

.offer__btn {
    flex-shrink: 0;
}

.offer__btn button {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer__btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
    filter: brightness(1.05);
}

.offer__btn button span {
    display: block;
}

/* Responsive for Offer */
@media (max-width: 768px) {
    .offer__body {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .offer__logo img {
        max-width: 80px;
    }

    .offer__name {
        font-size: 1.1rem;
    }

    .offer__bonus {
        min-width: auto;
        text-align: left;
    }

    .offer__btn button {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .offer:not(.offer_hero) {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .offer__body {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .offer__logo img {
        max-width: 60px;
    }

    .offer__name {
        font-size: 1rem;
    }

    .offer__raiting {
        font-size: 0.8rem;
    }

    .offer__bonus {
        display: none;
    }

    .offer__bonus + .offer__separate {
        display: none;
    }

    .offer__bonus div {
        font-size: 1rem;
    }

    .offer__btn button {
        padding: 11px 16px;
        font-size: 0.7rem;
        border-radius: 6px;

    }
}

/* Club Cards Category Styles */
.club-cards-category {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0;
}

.club-card-category-wrap {
    display: flex;
    justify-content: center;
}

.club-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.club-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-medium);
    border-color: var(--accent-primary);
}

.club-card figure {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
    padding: 0.5rem;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

.club-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.club-card:hover img {
    transform: scale(1.05);
}

.club-card-title {
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.3;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive for Club Cards Category */
@media (max-width: 768px) {
    .club-cards-category {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .club-card {
        max-width: 150px;
    }

    .club-card figure {
        height: 60px;
    }

    .club-card-title {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .club-cards-category {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .club-card {
        max-width: 120px;
    }

    .club-card figure {
        height: 50px;
        padding: 0.25rem;
    }

    .club-card-title {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
}

/* Club Page Breadcrumbs Styles */
.club-page-breadcrumbs {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumbs a:hover {
    color: var(--accent-secondary);
}

.breadcrumbs span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.kb_sep {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.kb_sep svg {
    width: 12px;
    height: 10px;
    fill: var(--text-light);
}

.kb_title {
    font-weight: 600;
    color: var(--text-color);
}

.breadcrumbs path {
    width: 16px;
    height: 16px;
    fill: var(--accent-primary);
    transition: fill 0.3s ease;
}

.breadcrumbs a:first-child {
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
}

/* Responsive for Breadcrumbs */
@media (max-width: 768px) {
    .club-page-breadcrumbs {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }

    .breadcrumbs {
        gap: 0.25rem;
    }

    .breadcrumbs a span svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .club-page-breadcrumbs {
        padding: 0.4rem 0;
    }

    .breadcrumbs {
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .kb_sep {
        display: none;
    }
}

.progress-bar,
.brand__logó .brand__ellenőrizni {
    display: none;
}

[src="/images/new_logo.png"] {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}