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

:root {
    /* Swiss Flag Colors */
    --swiss-red: #DA291C;
    --swiss-white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --border-color: #e5e7eb;
    --shadow: 0 2px 10px rgba(218, 41, 28, 0.1);
    --shadow-hover: 0 4px 20px rgba(218, 41, 28, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f9fafb;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

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

/* ========================================
   Header Styles
   ======================================== */
.header {
    background-color: var(--swiss-red);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    min-height: 100px; /* Фиксированная минимальная высота для стабильности */
}

/* ========================================
   Logo Styles
   ======================================== */
.logo {
    display: flex;
    align-items: center;
    height: 100%; /* Занимает всю высоту nav */
}

.logo img {
    max-width: 250px;
    height: auto;
    display: block; /* Убирает лишние отступы */
    transition: opacity 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--swiss-white);
    font-size: 1.5rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
    height: 100%; /* Занимает всю высоту для выравнивания */
}

.logo a:hover {
    opacity: 0.9;
}

.logo svg {
    flex-shrink: 0;
}

.logo-text {
    font-weight: 400;
    font-size: 1.75rem;
    color: var(--swiss-white);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-text strong {
    font-weight: 700;
    color: var(--swiss-white);
}

/* ========================================
   Navigation Menu
   ======================================== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%; /* Соответствует высоте nav для выравнивания */
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--swiss-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border-radius: 6px;
    white-space: nowrap; /* Предотвращает перенос текста */
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Dropdown Menu
   ======================================== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--swiss-white);
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid var(--swiss-red);
}

.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--swiss-red);
    color: var(--swiss-white);
}

/* ========================================
   Mobile Menu Toggle
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-self: center; /* Выравнивание по центру */
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--swiss-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ========================================
   Main Content
   ======================================== */
.main-content {
    min-height: 70vh;
    padding: 1.2rem 0; /* Reduced by 60% from 3rem */
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem; /* Reduced by 60% from 2rem */
    font-weight: 700;
    text-align: left;
}

/* ========================================
   Author Info Block
   ======================================== */
.author-info {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: var(--swiss-white);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 67.5px;
    height: 67.5px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--swiss-red);
}

.author-details {
    flex: 0 1 auto;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.1rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 400;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.last-modified {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    background-color: #f3f4f6;
    padding: 0.4rem 0.75rem;
    border-radius: 15px;
    white-space: nowrap;
}

.last-modified svg {
    color: var(--swiss-red);
}

/* ========================================
   Hero Content
   ======================================== */
.hero-content {
    text-align: left;
    line-height: 1.8;
}

.hero-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-top: 1.5rem; /* Reduced by 40% from 2.5rem */
    margin-bottom: 1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    position: relative;
    display: block;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px; /* Fixed width for all H2 headings */
    height: 3px;
    background-color: var(--swiss-red);
}

.hero-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* ========================================
   Tip Headings (4 советов для начинающих)
   ======================================== */
.tip-heading {
    position: relative;
    padding: 1.25rem 1.5rem;
    padding-left: 4.5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 5px solid var(--swiss-red);
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tip-heading:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.15);
}

.tip-heading::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, #b91e15 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(218, 41, 28, 0.3);
}

.tip-heading-1::before {
    content: '🔍';
}

.tip-heading-2::before {
    content: '🎰';
}

.tip-heading-3::before {
    content: '₿';
}

.tip-heading-4::before {
    content: '📧';
}

/* ========================================
   Research Criteria Headings (5 критериев исследования)
   ======================================== */
.research-heading {
    position: relative;
    padding: 1.25rem 1.5rem;
    padding-left: 4.5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 5px solid var(--swiss-red);
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.research-heading:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.15);
}

.research-heading::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, #b91e15 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(218, 41, 28, 0.3);
}

.research-heading-1::before {
    content: '🔒'; /* Lizenzierung und Sicherheit - Замок */
}

.research-heading-2::before {
    content: '🎮'; /* Spielauswahl und Provider - Игровой контроллер */
}

.research-heading-3::before {
    content: '💯'; /* RTP und Auszahlungsquoten - 100 очков */
}

.research-heading-4::before {
    content: '💳'; /* Zahlungsmethoden und Geschwindigkeit - Кредитная карта */
}

.research-heading-5::before {
    content: '💬'; /* Kundensupport auf Deutsch - Чат поддержки */
}

/* ========================================
   Feature Headings with Icons
   ======================================== */
.feature-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.feature-heading span:not(.feature-icon) {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.feature-heading:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Games Theme - Purple */
.feature-heading.games {
    background: linear-gradient(135deg, #f3e7ff 0%, #e9d5ff 100%);
    border-left: 5px solid #9333ea;
}

.feature-heading.games .feature-icon {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Bonus Theme - Gold */
.feature-heading.bonus {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid #f59e0b;
}

.feature-heading.bonus .feature-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Freedom Theme - Green */
.feature-heading.freedom {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 5px solid #059669;
}

.feature-heading.freedom .feature-icon {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Crypto Theme - Orange */
.feature-heading.crypto {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-left: 5px solid #ea580c;
}

.feature-heading.crypto .feature-icon {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    color: white;
    font-weight: 700;
}

/* License Theme - Blue */
.feature-heading.license {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 5px solid #2563eb;
}

.feature-heading.license .feature-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Software Theme - Indigo */
.feature-heading.software {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-left: 5px solid #6366f1;
}

.feature-heading.software .feature-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Support Theme - Cyan */
.feature-heading.support {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
    border-left: 5px solid #06b6d4;
}

.feature-heading.support .feature-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Safety Theme - Teal */
.feature-heading.safety {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    border-left: 5px solid #14b8a6;
}

.feature-heading.safety .feature-icon {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

/* Terms Theme - Slate */
.feature-heading.terms {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-left: 5px solid #475569;
}

.feature-heading.terms .feature-icon {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.3);
}

/* ========================================
   License Themes - Unified Gray
   ======================================== */

/* Curacao License */
.feature-heading.curacao {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-left: 5px solid #6b7280;
}

/* Malta Gaming Authority */
.feature-heading.malta {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-left: 5px solid #6b7280;
}

/* Anjouan License */
.feature-heading.anjouan {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-left: 5px solid #6b7280;
}

/* UKGC */
.feature-heading.ukgc {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-left: 5px solid #6b7280;
}

/* Gibraltar */
.feature-heading.gibraltar {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-left: 5px solid #6b7280;
}

/* ========================================
   Comparison Table (Real Table)
   ======================================== */
.table-wrapper {
    margin: 2.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Custom scrollbar for table wrapper */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--swiss-red);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #b91e15;
}

.comparison-table {
    width: 100%;
    min-width: 600px; /* Минимальная ширина для корректного отображения */
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--swiss-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-table thead th {
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 3px solid #e5e7eb;
}

.table-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

.pros-header {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.pros-header .table-icon {
    background-color: #059669;
    color: white;
}

.cons-header {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.cons-header .table-icon {
    background-color: #dc2626;
    color: white;
}

.comparison-table tbody tr {
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f9fafb;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.comparison-table tbody tr:nth-child(even):hover {
    background-color: #f3f4f6;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

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

/* Links in tables */
.comparison-table a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.comparison-table a:hover {
    color: #047857;
    border-bottom-color: #047857;
}

/* Highlight for favorable conditions */
.highlight-green {
    color: #059669;
    font-weight: 700;
    background-color: #d1fae5;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.cell-icon {
    font-weight: 700;
    margin-right: 0.75rem;
}

.pros-cell .cell-icon {
    color: #059669;
}

.cons-cell .cell-icon {
    color: #dc2626;
}

.pros-cell {
    border-right: 1px solid #e5e7eb;
}

.cons-cell.empty {
    background-color: #f9fafb;
}

/* ========================================
   License Comparison Table
   ======================================== */
.license-table thead th {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: var(--swiss-white);
    font-size: 0.95rem;
    padding: 1rem;
    text-align: left;
    vertical-align: top;
}

.license-table thead th:first-child {
    border-top-left-radius: 12px;
}

.license-table thead th:last-child {
    border-top-right-radius: 12px;
}

.license-name {
    font-weight: 700;
    color: var(--text-dark);
    background-color: #f9fafb;
}

.suitability {
    font-weight: 600;
    text-align: center;
}

.suitability.positive {
    color: #059669;
    background-color: #d1fae5;
}

.suitability.negative {
    color: #dc2626;
    background-color: #fee2e2;
}

.suitability.neutral {
    color: #f59e0b;
    background-color: #fef3c7;
}

/* ========================================
   Slots Table
   ======================================== */
.slots-table thead th {
    background: linear-gradient(135deg, var(--swiss-red) 0%, #b91e15 100%);
    color: var(--swiss-white);
}

.slot-name {
    font-weight: 700;
    color: var(--text-dark);
}

.rtp-high {
    font-weight: 700;
    color: #059669;
    background-color: #d1fae5;
    text-align: center;
}

.volatility-low,
.volatility-medium,
.volatility-high {
    color: var(--text-dark);
    text-align: center;
    font-weight: 400;
}

.casino-link {
    color: var(--swiss-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.casino-link:hover {
    color: #b91e15;
    text-decoration: underline;
}

/* ========================================
   Pros and Cons Cards (for casino reviews)
   ======================================== */
.pros-cons-wrapper {
    margin: 2rem 0;
}

.pros-cons-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: var(--swiss-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pros-cons-table thead {
    background-color: #f8f9fa;
}

.pros-cons-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
}

.pros-header {
    color: #059669;
}

.cons-header {
    color: #dc2626;
}

.pros-cons-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.6;
    vertical-align: top;
}

.pros-cons-table tr:last-child td {
    border-bottom: none;
}

.pros-cons-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

/* .pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.cons-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
} */

/* ========================================
   Game Categories List
   ======================================== */
.game-categories {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.game-categories li {
    background-color: var(--swiss-white);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 3rem;
    border-left: 4px solid var(--swiss-red);
}

.game-categories li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(218, 41, 28, 0.15);
}

/* .game-categories li::before {
    content: '🎰';
    position: absolute;
    left: 1rem;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.game-categories li:nth-child(1)::before {
    content: '🚀';
}

.game-categories li:nth-child(2)::before {
    content: '⚽';
}

.game-categories li:nth-child(3)::before {
    content: '🏇';
}

.game-categories li:nth-child(4)::before {
    content: '🎫';
}

.game-categories li:nth-child(5)::before {
    content: '🃏';
}

.game-categories li:nth-child(6)::before {
    content: '🎲';
}

.game-categories li:nth-child(7)::before {
    content: '💰';
} */

.game-categories li strong {
    color: var(--swiss-red);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* ========================================
   Bonus List (Numbered)
   ======================================== */
.bonus-list {
    list-style: none;
    counter-reset: bonus-counter;
    padding: 0;
    margin: 2rem 0;
}

.bonus-list li {
    background-color: var(--swiss-white);
    padding: 1.5rem 1.75rem;
    padding-left: 4.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--swiss-red);
    counter-increment: bonus-counter;
}

.bonus-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(218, 41, 28, 0.15);
}

.bonus-list li::before {
    content: counter(bonus-counter);
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--swiss-red) 0%, #b91e15 100%);
    color: var(--swiss-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(218, 41, 28, 0.3);
}

.bonus-list li strong {
    color: var(--swiss-red);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* ========================================
   Casino Details Lists (маркированные списки)
   ======================================== */
.hero-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.hero-content ul li {
    position: relative;
    padding: 0.75rem 0;
    /* padding-left: 2rem; */
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.hero-content ul li:last-child {
    border-bottom: none;
}

/* .hero-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, #b91e15 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(218, 41, 28, 0.3);
} */

/* .hero-content ul li:hover {
    padding-left: 2.25rem;
    background-color: rgba(218, 41, 28, 0.03);
} */

.hero-content ul li strong {
    color: var(--swiss-red);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-container {
    margin: 2rem 0;
}

.faq-item {
    background-color: var(--swiss-white);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--swiss-red);
}

/* .faq-item:hover {
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.15);
    transform: translateY(-2px);
} */

.faq-question {
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-answer {
    padding: 1.5rem 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--swiss-white);
    border-top: 1px solid #e5e7eb;
}

/* ========================================
   Responsible Gaming Section
   ======================================== */
.responsible-gaming-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.help-resource {
    background-color: var(--swiss-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #059669;
    transition: all 0.3s ease;
}

/* .help-resource:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
} */

.resource-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* ========================================
   Tip Box (Советы в рамке)
   ======================================== */
.tip-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-left: 5px solid #f97316;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
}

.tip-box::before {
    content: '💡';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.tip-box strong {
    color: #c2410c;
    font-weight: 700;
    font-size: 1.15rem;
}

/* ========================================
   Responsible Gaming Tools List (блоки для инструментов)
   ======================================== */
.tools-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tools-list li {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 12px;
    padding: 1.5rem !important;
    padding-left: 1.5rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #059669;
    border-bottom: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tools-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
    border-left-color: #047857;
}

.tools-list li::before {
    display: none !important;
}

.tools-list li strong {
    display: block;
    color: #059669;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tools-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #059669 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tools-list li:hover::after {
    opacity: 1;
}

.resource-title a {
    color: #059669;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-title a:hover {
    color: #047857;
    text-decoration: underline;
}

.help-resource p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   Casino Showcase
   ======================================== */
.casino-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background-color: var(--swiss-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(218, 41, 28, 0.15);
    border-color: var(--swiss-red);
}

.casino-rank {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, #b91e15 100%);
    color: var(--swiss-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(218, 41, 28, 0.3);
}

.casino-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: black;
    border-radius: 8px;
    padding: 1rem;
}

.casino-logo img {
    width: 158px;
    height: auto;
    min-height: 40px;
    max-height: 100px;
    object-fit: contain;
}

.casino-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.casino-bonus {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    text-align: center;
    border: 1px solid #fcd34d;
}

.bonus-label {
    font-size: 0.85rem;
    color: #92400e;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #78350f;
}

.casino-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--swiss-red) 0%, #b91e15 100%);
    color: var(--swiss-white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(218, 41, 28, 0.2);
    margin-top: auto;
}

.casino-btn:hover {
    background: linear-gradient(135deg, #b91e15 0%, var(--swiss-red) 100%);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.35);
    transform: translateY(-2px);
}

/* ========================================
   Horizontal Casino Card (для обзоров брендов)
   ======================================== */
.casino-card-horizontal {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    background-color: var(--swiss-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    max-width: 100%;
    margin: 1.5rem 0;
}

.casino-card-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 41, 28, 0.15);
    border-color: var(--swiss-red);
}

.casino-card-horizontal .casino-rank {
    display: none;
}

.casino-card-horizontal .casino-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #f9fafb;*/
    background-color: black;
    border-radius: 12px;
    padding: 1rem;
}

.casino-card-horizontal .casino-logo img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.casino-card-horizontal .casino-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.casino-card-horizontal .casino-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.casino-card-horizontal .casino-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.casino-card-horizontal .casino-bonus {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 280px;
}

.casino-card-horizontal .casino-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.casino-card-horizontal .casino-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.casino-card-horizontal .casino-feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.casino-card-horizontal .casino-cta {
    display: flex;
    align-items: center;
}

.casino-card-horizontal .casino-btn {
    padding: 0.875rem 2rem;
    white-space: nowrap;
    margin: 0;
    width: auto;
}

/* Lists styling */
ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
    list-style-position: inside;
}

ol li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    padding-left: 0.5rem;
}

ol li strong {
    display: inline;
}

/* Info Banner */
.info-banner {
    margin: 3rem auto;
    max-width: 70%; /* Уменьшение на 30% */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(218, 41, 28, 0.08);
}

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

/* ========================================
   Breadcrumbs Styles
   ======================================== */
.breadcrumbs {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.breadcrumb-list li a {
    color: var(--swiss-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.breadcrumb-list li:last-child span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Legal Pages Styling */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-content .last-modified-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--swiss-red);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Мобильная версия - вертикальная карточка */
@media (max-width: 768px) {
    .nav {
        min-height: 70px; /* Меньше на мобильных */
        padding: 0.75rem 0;
    }
    
    .logo img {
        max-width: 180px; /* Уменьшение логотипа на мобильных */
    }
    
    .logo-text {
        font-size: 1.25rem; /* Уменьшение текста логотипа на мобильных */
    }
    
    .breadcrumb-list {
        font-size: 0.85rem; /* Уменьшение шрифта на мобильных */
    }
    
    .breadcrumb-list li:not(:last-child)::after {
        font-size: 1rem; /* Меньше разделитель на мобильных */
    }
    
    .info-banner {
        max-width: 100%; /* На мобильных - полная ширина */
    }
    
    /* Pros-Cons Table Mobile */
    .pros-cons-table {
        font-size: 0.9rem;
    }
    
    .pros-cons-table th {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .pros-cons-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .casino-card-horizontal {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .casino-card-horizontal .casino-rank {
        display: none;
    }

    .casino-card-horizontal .casino-logo {
        width: 100%;
        height: 120px;
        margin-top: 20px;
    }

    .casino-card-horizontal .casino-info {
        text-align: center;
    }

    .casino-card-horizontal .casino-name {
        font-size: 1.3rem;
    }

    .casino-card-horizontal .casino-rating {
        justify-content: center;
    }

    .casino-card-horizontal .casino-bonus {
        max-width: 100%;
    }

    .casino-card-horizontal .casino-features {
        padding: 0 1rem;
    }

    .casino-card-horizontal .casino-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* ========================================
   Footer
   ======================================== */
/* ========================================
   Footer Styles
   ======================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--swiss-white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--swiss-white);
    margin: 0 0 0.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--swiss-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--swiss-white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    opacity: 0.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        margin-top: 3rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }
    
    /* Pros-Cons Table - Stack on very small screens */
    .pros-cons-table,
    .pros-cons-table thead,
    .pros-cons-table tbody,
    .pros-cons-table tr,
    .pros-cons-table th,
    .pros-cons-table td {
        display: block;
        width: 100%;
    }
    
    .pros-cons-table thead {
        display: none;
    }
    
    .pros-cons-table tr {
        margin-bottom: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .pros-cons-table td {
        position: relative;
        padding: 0.75rem 1rem 0.75rem 6rem;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .pros-cons-table td:last-child {
        border-bottom: none;
    }
    
    .pros-cons-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        top: 0.75rem;
        font-weight: 700;
        font-size: 0.85rem;
    }
    
    .pros-cons-table tr td:first-child:before {
        content: "Pluspunkte";
        color: #059669;
    }
    
    .pros-cons-table tr td:last-child:before {
        content: "Schwachstellen";
        color: #dc2626;
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--swiss-red);
        padding: 1rem 0;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 2rem;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-link {
        color: var(--swiss-white);
        padding-left: 3rem;
    }

    .dropdown-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        margin-top: 1.2rem;
    }

    .hero-content h3 {
        font-size: 1.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-heading {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
        font-size: 1.1rem;
    }

    .feature-heading span:not(.feature-icon) {
        font-size: 1rem;
        line-height: 1.4;
    }

    .feature-icon {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
    }

    .tip-heading {
        padding: 1rem 1.25rem;
        padding-left: 4rem;
        font-size: 1.25rem;
    }

    .tip-heading::before {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        left: 1rem;
    }

    .casino-showcase {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .casino-card {
        padding: 1.25rem;
    }

    .casino-name {
        font-size: 1.3rem;
    }

    .bonus-value {
        font-size: 1rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table thead th {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .license-table thead th {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }

    .license-table td {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }

    .table-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .pros-cons-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-categories {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .game-categories li {
        padding: 1rem 1.25rem;
        padding-left: 2.75rem;
    }

    .game-categories li::before {
        font-size: 1.3rem;
        left: 0.875rem;
    }

    .bonus-list li {
        padding: 1.25rem 1.5rem;
        padding-left: 4rem;
        margin-bottom: 0.875rem;
    }

    .bonus-list li::before {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
        left: 1rem;
    }

    .bonus-list li strong {
        font-size: 1.05rem;
    }

    .author-info {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .author-meta {
        width: 100%;
        margin-left: 0;
    }

    .last-modified {
        width: 100%;
        justify-content: center;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .responsible-gaming-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .help-resource {
        padding: 1.5rem;
    }

    .resource-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-content h2 {
        font-size: 1.35rem;
        margin-top: 0.9rem;
    }

    .hero-content h3 {
        font-size: 1.15rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .feature-heading {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .feature-heading span:not(.feature-icon) {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .feature-icon {
        font-size: 1.5rem;
        width: 38px;
        height: 38px;
    }

    .tip-heading {
        padding: 0.875rem 1rem;
        padding-left: 3.5rem;
        font-size: 1.05rem;
    }

    .tip-heading::before {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
        left: 0.875rem;
    }

    .table-wrapper {
        margin: 2rem -1rem;
        padding: 0 1rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .comparison-table td {
        padding: 0.875rem;
        font-size: 0.85rem;
    }

    .license-table thead th {
        font-size: 0.75rem;
        padding: 0.625rem 0.4rem;
    }

    .license-table td {
        font-size: 0.75rem;
        padding: 0.625rem 0.4rem;
    }

    .cell-icon {
        margin-right: 0.5rem;
    }

    .casino-showcase {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .casino-card {
        padding: 1rem;
    }

    .casino-name {
        font-size: 1.2rem;
    }

    .bonus-value {
        font-size: 0.95rem;
    }

    .casino-btn {
        font-size: 1rem;
        padding: 0.875rem;
    }

    .author-avatar img {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-title {
        font-size: 0.75rem;
    }

    .game-categories li {
        padding: 0.875rem 1rem;
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }

    .game-categories li::before {
        font-size: 1.15rem;
        left: 0.75rem;
    }

    .game-categories li strong {
        font-size: 0.95rem;
    }

    .bonus-list li {
        padding: 1rem 1.25rem;
        padding-left: 3.5rem;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    .bonus-list li::before {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        left: 0.875rem;
    }

    .bonus-list li strong {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .responsible-gaming-links {
        gap: 1.25rem;
    }

    .help-resource {
        padding: 1.25rem;
    }

    .resource-title {
        font-size: 1.1rem;
    }

    .help-resource p {
        font-size: 0.95rem;
    }
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, #b91e15 100%);
    color: var(--swiss-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Author Bio Section (Bottom of Page)
   ======================================== */
.author-bio-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-top: 1px solid #e5e7eb;
}

.author-bio-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--swiss-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

/* .author-bio-card:hover {
    box-shadow: 0 6px 30px rgba(218, 41, 28, 0.12);
    border-color: rgba(218, 41, 28, 0.2);
} */

.author-bio-avatar {
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--swiss-red);
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.2);
}

.author-bio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author-bio-header {
    margin-bottom: 0.5rem;
}

.author-bio-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.author-bio-title {
    font-size: 1rem;
    color: var(--swiss-red);
    font-weight: 600;
    margin: 0;
}

.author-bio-description {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.author-bio-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive Design for Author Bio */
@media (max-width: 768px) {
    .author-bio-section {
        padding: 2rem 0;
    }

    .author-bio-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }

    .author-bio-avatar img {
        width: 100px;
        height: 100px;
    }

    .author-bio-name {
        font-size: 1.5rem;
    }

    .author-bio-title {
        font-size: 0.95rem;
    }

    .author-bio-description p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .author-bio-card {
        padding: 1.25rem;
    }

    .author-bio-avatar img {
        width: 90px;
        height: 90px;
        border-width: 3px;
    }

    .author-bio-name {
        font-size: 1.35rem;
    }

    .author-bio-title {
        font-size: 0.9rem;
    }

    .author-bio-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ========================================
   Expandable Text (Read More/Less)
   ======================================== */
.expandable-text {
    position: relative;
}

.expandable-paragraph {
    margin: 0;
}

/* Desktop: показываем весь текст, скрываем кнопку */
.expand-btn {
    display: none;
}

/* Mobile: включаем сворачивание */
@media (max-width: 768px) {
    .expandable-paragraph {
        position: relative;
        overflow: hidden;
        max-height: 7.5em; /* Примерно 5 строк */
        line-height: 1.5em;
        transition: max-height 0.3s ease;
    }

    .expandable-paragraph::after {
        content: '...';
        position: absolute;
        bottom: 0;
        right: 0;
        padding-left: 3rem;
        background: linear-gradient(to right, transparent, var(--swiss-white) 50%);
    }

    .expandable-text.expanded .expandable-paragraph {
        max-height: none;
    }

    .expandable-text.expanded .expandable-paragraph::after {
        display: none;
    }

    .expand-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, var(--swiss-red) 0%, #b82318 100%);
        color: var(--swiss-white);
        border: none;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(218, 41, 28, 0.2);
        margin-top: 1rem;
    }

    .expand-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(218, 41, 28, 0.3);
    }

    .expand-btn:active {
        transform: translateY(0);
    }

    .expand-btn .expand-icon {
        transition: transform 0.3s ease;
    }

    .expand-btn.expanded .expand-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .expand-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   Breadcrumbs
   ======================================== */
.breadcrumbs {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumbs-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-item a:hover {
    color: var(--swiss-red);
}

.breadcrumbs-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumbs-separator {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Breadcrumbs Responsive */
@media (max-width: 480px) {
    .breadcrumbs {
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }

    .breadcrumbs-item {
        font-size: 0.85rem;
    }

    .breadcrumbs-separator {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}
