        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #e94560;
            --accent-hover: #c93750;
            --gold-color: #ffd700;
            --text-light: #ffffff;
            --text-dark: #333333;
            --bg-light: #f5f5f5;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        header {
            background: var(--primary-color);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .logo-link:hover {
            transform: scale(1.05);
        }

        .logo {
            width: 170px;
            height: 60px;
            border-radius: 8px;
            border: 1px solid #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            color: white;
            text-decoration: none;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-items {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .nav-items li a {
            color: var(--text-light);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background 0.3s ease;
            display: block;
            white-space: nowrap;
        }

        .nav-items li a:hover {
            background: var(--secondary-color);
        }

        .burger-menu {
            display: none;
            position: relative;
        }

        .burger-icon {
            cursor: pointer;
            padding: 10px;
            color: var(--text-light);
            font-size: 24px;
            background: var(--secondary-color);
            border-radius: 5px;
            user-select: none;
        }

        .burger-items {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background: var(--primary-color);
            border-radius: 8px;
            box-shadow: var(--shadow-hover);
            min-width: 200px;
            margin-top: 10px;
            list-style: none;
            padding: 10px 0;
            max-height: 400px;
            overflow-y: auto;
        }

        .burger-items.active {
            display: block;
        }

        .burger-items li a {
            color: var(--text-light);
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            transition: background 0.3s ease;
        }

        .burger-items li a:hover {
            background: var(--secondary-color);
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .introduction {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow-hover);
            margin-bottom: 40px;
            border-left: 5px solid var(--accent-color);
        }

        .introduction h1 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 2.5em;
        }

        .introduction p {
            font-size: 1.1em;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .casino-showcase {
            margin-bottom: 40px;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .casino-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .casino-rank {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #19098b;
            color: #ffffff;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
            box-shadow: var(--shadow);
            z-index: 10;
        }

        .casino-logo-link {
            display: block;
            padding: 30px 20px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .casino-logo {
            object-fit: contain;
            margin: 0 auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .casino-info {
            padding: 25px;
        }

        .casino-name {
            font-size: 1.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            text-align: center;
        }

        .casino-bonus {
            background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            font-weight: bold;
            font-size: 1.1em;
            text-align: center;
        }

        .bonus-type {
            color: #666;
            font-size: 0.9em;
            margin-bottom: 20px;
            text-align: center;
        }

        .casino-cta {
            display: block;
            background: var(--accent-color);
            color: white;
            text-align: center;
            padding: 15px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .casino-cta:hover {
            background: var(--accent-hover);
            transform: scale(1.05);
        }

        .table-of-contents {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            overflow: hidden;
        }

        .toc-header {
            background: var(--primary-color);
            color: white;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .toc-header:hover {
            background: var(--secondary-color);
        }

        .toc-header h2 {
            font-size: 1.5em;
        }

        .toc-toggle {
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .toc-toggle.active {
            transform: rotate(180deg);
        }

        .toc-content {
            display: none;
            padding: 25px;
        }

        .toc-content.active {
            display: block;
        }

        .toc-content ul {
            list-style: none;
        }

        .toc-content li {
            margin-bottom: 12px;
        }

        .toc-content a {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 1.1em;
            transition: color 0.3s ease;
        }

        .toc-content a:hover {
            color: var(--accent-hover);
            text-decoration: underline;
        }

        .content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }

        .content h2 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 20px;
            font-size: 2em;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 10px;
        }

        .content h3 {
            color: var(--secondary-color);
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        .content p {
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .content ul,
        .content ol {
            margin-bottom: 25px;
            padding-left: 30px;
        }

        .content ul {
            list-style: none;
        }

        .content ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
        }

        .content ul li:before {
            content: "▸";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .content ol {
            counter-reset: item;
            list-style: none;
        }

        .content ol li {
            counter-increment: item;
            margin-bottom: 12px;
            position: relative;
            padding-left: 35px;
        }

        .content ol li:before {
            content: counter(item);
            background: var(--accent-color);
            color: white;
            font-weight: bold;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: 0;
        }

        .content img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: var(--shadow);
            margin: 20px 0;
            display: block;
        }

        .content table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
        }
  table {
    display: block; 
    overflow-x: auto; 
    white-space: nowrap; 
  }
        }

        .content table thead {
            background: var(--primary-color);
            color: white;
        }

        .content table th {
            padding: 15px;
            text-align: left;
            font-weight: bold;
        }

        .content table td {
            padding: 15px;
            border-bottom: 1px solid #ddd;
        }

        .content table tbody tr:hover {
            background: #f5f5f5;
        }

        .content table tbody tr:last-child td {
            border-bottom: none;
        }

        footer {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 40px 20px 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            gap: 40px;
        }

        .footer-logo-link {
            display: inline-block;
        }

        .footer-logo {
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
            color: white;
            text-decoration: none;
            border: 1px solid #ffffff;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .footer-nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--gold-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-hover);
            transition: background 0.3s ease, transform 0.3s ease;
            z-index: 999;
            font-size: 24px;
        }

        .scroll-top:hover {
            background: var(--accent-hover);
            transform: scale(1.1);
        }

        .scroll-top.visible {
            display: flex;
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 10px 15px;
            }

            .nav-items {
                display: none !important;
            }

            .burger-menu {
                display: block;
            }

            .introduction {
                padding: 25px;
            }

            .introduction h1 {
                font-size: 1.8em;
            }

            .showcase-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .content {
                padding: 25px;
            }

            .content h2 {
                font-size: 1.5em;
            }

            .content table {
                font-size: 0.9em;
            }

            .content table th,
            .content table td {
                padding: 10px 8px;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 15px;
            }

            .scroll-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .showcase-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1025px) {
            .nav-items li:nth-child(n+6) {
                display: none;
            }

            .burger-menu {
                display: block;
            }

            .nav-items:has(li:nth-child(6))~.burger-menu {
                display: block;
            }

            .nav-items:not(:has(li:nth-child(6)))~.burger-menu {
                display: none;
            }
        }
/* * СТИЛІ ДЛЯ ХЛІБНИХ КРИХТ 
 * breadcrumb-list та breadcrumb-item
 */

.custom-breadcrumb {
    font-family: Arial, sans-serif;
    padding: 10px 0;
    margin: 15px 0;
}

.breadcrumb-list {
    list-style: none; /* Видаляємо маркери списку */
    padding: 0;
    margin: 0;
    display: flex; /* Розміщуємо елементи в один рядок */
    flex-wrap: wrap; /* Дозволяємо перенесення на менших екранах */
}

.breadcrumb-item {
    display: inline-flex; /* Для точного контролю розташування */
    align-items: center;
    font-size: 14px;
    color: #6c757d; /* Сірий колір тексту за замовчуванням */
}

/* Стиль роздільника */
.breadcrumb-item:not(:last-child)::after {
    content: "/"; /* Або інший символ, наприклад, '»' */
    display: inline-block;
    padding: 0 8px; /* Відступи навколо роздільника */
    color: #ced4da; /* Світло-сірий колір роздільника */
}

/* Стилі для посилань */
.breadcrumb-link {
    color: #fbfbfb; /* Синій колір для активних посилань */
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #0f19db; /* Темніший синій при наведенні */
    text-decoration: underline; /* Підкреслення при наведенні */
}

/* Стилі для поточної сторінки (останній елемент) */
.current-page {
    font-weight: 600; /* Жирний шрифт */
    color: #ffffff; /* Темний колір, щоб виділити */
}