* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFF8DC;
}

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

/* Header Styles */
.tbrt-header {
    background: linear-gradient(270deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255,215,0,0.3);
}

.tbrt-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbrt-logo img {
    height: 50px;
}

.tbrt-main-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.tbrt-main-nav a {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tbrt-main-nav a:hover {
    color: #B8860B;
}

.tbrt-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2C2C2C;
    font-size: 20px;
    cursor: pointer;
}

/* Table of Contents - Исправленный блок */
.tbrt-toc-navigation {
    /* padding: 20px 0; */
    /* border-bottom: 1px solid #334155;
    border-top: 1px solid #334155; */
    border-bottom: 1px solid #FFD700;
    border-top: 1px solid #FFD700;
    position: sticky;
    /* top: 80px; */
    z-index: 999;
}

.tbrt-toc-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 10px 15px;
}

.tbrt-toc-title {
    font-weight: 600;
    color: #2C2C2C;
    min-width: 120px;
    font-size: 12px;
}

.tbrt-toc-items {
    display: flex;
    gap: 15px;
    flex: 1;
    display: flex;
    /*flex-wrap: wrap; */
    margin: 0;
    padding: 0;

    list-style: none;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tbrt-toc-item a {
    color: #5C5C5C;
    text-decoration: none;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: normal;
}

.tbrt-toc-item a:hover {
    background-color: #FFFACD;
    color: #B8860B;
    border-color: #FFD700;
}

.tbrt-toc-progress {
    width: 100%;
    height: 3px;
    background-color: #FFFACD;
    margin-top: 3px;
    border-radius: 2px;
}

.tbrt-toc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Main Content */
.tbrt-main-content {
    padding-top: 140px;
    min-height: 100vh;
}

/* Global Section Styles */
section {
    background: linear-gradient(270deg, #FFFFFF 0%, #FFFACD 50%, #FFFFFF 100%);
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255,215,0,0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid #FFD700;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, #FFFACD 50%, #FFFFFF 100%);
    opacity: 0.9;
    z-index: -1;
}

/* Цветные черты над заголовками */
section h2::before,
section h3::before,
section h4::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    margin-bottom: 15px;
    border-radius: 2px;
}

/* Welcome Section with Slot Info */
.tbrt-welcome-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    padding: 80px 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(255,215,0,0.3);
}

.tbrt-welcome-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tbrt-welcome-content h1 {
    font-size: 48px;
    color: #2C2C2C;
    margin-bottom: 20px;
    font-weight: 700;
}

.tbrt-welcome-content h1::before {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #B8860B 0%, #FFA500 100%);
    margin-bottom: 20px;
    border-radius: 3px;
}

.tbrt-welcome-description {
    font-size: 18px;
    color: #5C5C5C;
    margin-bottom: 30px;
    line-height: 1.7;
}

.tbrt-welcome-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.tbrt-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.tbrt-btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C2C2C;
}

.tbrt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.tbrt-welcome-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Slot Info Cards */
.tbrt-slot-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tbrt-slot-info-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFACD 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tbrt-slot-info-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
}

.tbrt-slot-info-card .tbrt-icon {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
}

.tbrt-slot-info-card .tbrt-title {
    font-size: 14px;
    color: #5C5C5C;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

.tbrt-slot-info-card .tbrt-value {
    font-size: 20px;
    color: #2C2C2C;
    font-weight: 600;
}

/* Casino List with Indian Colors */
.tbrt-casino-listing__container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tbrt-casino-listing__container li {
    margin: 0;
    padding: 0;
}

.tbrt-casino-listing__container p {
    margin: 0;
}

.tbrt-casino-listing__container {
    margin-top: 2rem;
}

.tbrt-casino-listing__card {
    display: flex;
}

.tbrt-casino-listing__preview,
.tbrt-casino-listing__content {
    background-color: rgba(255, 255, 255, 1);
    height: 100%;
}

.tbrt-casino-listing__preview {
    width: 100%;
    padding: 10px;
    border-radius: 32px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tbrt-casino-listing__preview::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-image: repeating-linear-gradient(
        to bottom,
        #ffffff 0px,
        #ffffff 10px,
        transparent 10px,
        transparent 15px
    );
}

.tbrt-casino-listing__badge {
    position: absolute;
    left: 20px;
    top: -16px;
    z-index: 2;
}

.tbrt-casino-listing__image-wrap {
    padding: 12px;
    min-width: 100%;
    max-width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-width: 232px;
    height: 132px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.tbrt-casino-listing__image {
    width: auto;
    height: auto;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tbrt-casino-listing__content {
    display: flex;
    padding: 18px 0;
}

.tbrt-casino-listing__bonus {
    width: 35.5%;
}

.tbrt-casino-listing__info {
    width: 37.5%;
}

.tbrt-casino-listing__actions {
    width: 27%;
}

.tbrt-casino-listing__content {
    border-radius: 32px;
}

.tbrt-casino-listing__content-item {
    padding: 0 24px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.tbrt-casino-listing__content-item:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-image: repeating-linear-gradient(
        to bottom,
        #ffffff 0px,
        #ffffff 10px,
        transparent 10px,
        transparent 15px
    );
}

.tbrt-casino-listing__bonus-title {
    background-color: rgba(255, 215, 0, 0.2);
    color: rgba(184, 134, 11, 1);
    max-width: fit-content;
    padding: 2px 12px;
    line-height: 1.5;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    max-height: fit-content;
    margin-bottom: 0 !important;
}

.tbrt-casino-listing__bonus-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbrt-casino-listing__bonus-list {
    margin-top: 8px;
    padding: 6px 16px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.tbrt-casino-listing__bonus-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(255, 215, 0, 1);
    opacity: 0.3;
}

.tbrt-casino-listing__bonus-list p {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 !important;
}

.tbrt-casino-listing__bonus-list p b,
.tbrt-casino-listing__bonus-list p strong {
    font-weight: 700;
    font-size: 16px;
    color: rgba(184, 134, 11, 1);
}

.tbrt-casino-listing__feature-list {
    padding: 16px 24px !important;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: rgba(255, 250, 205, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tbrt-casino-listing__card--1 .tbrt-casino-listing__feature-list {
    background-color: rgba(255, 250, 205, 0.8);
}

.tbrt-casino-listing__container--no-bg .tbrt-casino-listing__card--1 .tbrt-casino-listing__feature-list {
    background-color: rgba(255, 250, 205, 1);
}

.tbrt-casino-listing__feature-list::before {
    position: absolute;
    width: 4px;
    left: 0;
    content: "";
    top: 0;
    height: 100%;
    background-color: rgba(255, 215, 0, 1);
}

.tbrt-casino-listing__feature-text {
    position: relative;
    padding-left: 36px;
    line-height: 1.33;
    padding-top: 2px;
    padding-bottom: 2px;
}

.tbrt-casino-listing__feature-icon {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.tbrt-casino-listing__feature-item:not(:first-child) {
    margin-top: 16px;
}

.tbrt-casino-listing__feature-item {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.tbrt-casino-listing__feature-item::before {
    content: none !important;
    display: none !important;
}

.tbrt-casino-listing__button {
    text-decoration: none !important;
    outline: none;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    padding: 13px 13px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    white-space: nowrap;
}

.tbrt-casino-listing__button:not(:first-child) {
    margin-top: 8px;
}

.tbrt-casino-listing__button--primary {
    background-color: #FFD700;
    color: #2C2C2C !important;
    border: 1px solid #FFD700;
}

.tbrt-casino-listing__button--secondary {
    color: #2C2C2C !important;
    background-color: transparent;
    border: 1px solid #FFD700;
}

.tbrt-casino-listing__button:hover {
    color: #2C2C2C !important;
    background-color: rgba(255, 250, 205, 1);
    box-shadow: 0px 0px 13px 3px rgba(255, 215, 0, 0.3);
}

.tbrt-casino-listing__button:active {
    transform: scale(0.95);
}

.tbrt-casino-listing__button-icon {
    margin-right: 12px;
}

.tbrt-casino-listing__number {
    position: absolute;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    left: 0;
    top: 6px;
    width: 37px;
    text-align: center;
}

.tbrt-casino-listing__rating-circle {
    --percent: 80;
    --hue: calc((var(--percent) / 10) * 12);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: conic-gradient(
        hsl(var(--hue), 100%, 40%) calc(var(--percent) * 1%),
        var(--bg) 0
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2C2C2C;
    font-size: 16px;
    padding: 5px;
    background-color: hsl(var(--hue), 100%, 85%);
}

.tbrt-casino-listing__rating-circle span {
    min-width: 40px;
    min-height: 40px;
    background-color: var(--bg, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tbrt-rating-100 {
    --percent: 100;
    --bg: #FFFACD;
}

.tbrt-rating-95 {
    --percent: 95;
    --bg: #FFFACD;
}

.tbrt-casino-listing__card--1 .tbrt-casino-listing__preview,
.tbrt-casino-listing__card--1 .tbrt-casino-listing__content {
    background: linear-gradient(180deg, #FFFACD 0%, #FFD700 100%);
}

.tbrt-casino-listing__card:not(:last-child) {
    margin-bottom: 24px;
}

/* Add borders to cards 2 and 3 to match the existing style */
.tbrt-casino-listing__card--2 .tbrt-casino-listing__border,
.tbrt-casino-listing__card--3 .tbrt-casino-listing__border {
    background: rgba(255, 255, 255, 1);
    border: 2px solid #FFD700;
}

.tbrt-casino-listing__card--2 .tbrt-casino-listing__border:nth-child(2),
.tbrt-casino-listing__card--3 .tbrt-casino-listing__border:nth-child(2) {
    background: rgba(255, 255, 255, 1);
    border: 2px solid #FFD700;
}

.tbrt-casino-listing__border {
    border-radius: 36px;
    padding: 3px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.tbrt-casino-listing__border:nth-child(1) {
    width: 22%;
    max-width: 256px;
    margin-right: -8px;
}

.tbrt-casino-listing__border:nth-child(2) {
    width: 78%;
    width: calc(78% + 8px);
}

.tbrt-casino-listing__border {
    background: rgba(255, 255, 255, 1);
}

.tbrt-casino-listing__border:nth-child(2) {
    background: rgba(255, 255, 255, 1);
}

.tbrt-casino-listing__card--1 .tbrt-casino-listing__border {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.tbrt-casino-listing__card--1 .tbrt-casino-listing__border:nth-child(2) {
    background: linear-gradient(-45deg, #FFD700, #FFA500);
}

.tbrt-casino-listing__border-inner {
    position: relative;
}

.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__bonus-title {
    position: absolute;
    z-index: 2;
    right: 20px;
    transform: translateY(-40%);
    background-color: rgba(255, 250, 205, 1);
}

.tbrt-casino-listing__card-style-2.casino-listing__card--1 .tbrt-casino-listing__bonus-title {
    color: #2C2C2C;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
}

.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__bonus.casino-listing__content-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__bonus-list {
    max-height: fit-content;
    width: 100%;
    margin-left: 24px;
    margin-top: 0;
}

.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__rating-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
}

.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__rating-circle span {
    min-width: 70px;
    min-height: 70px;
    font-size: 20px;
}

@media (min-width: 1025px) {
    .tbrt-casino-listing__card-style-2 .tbrt-casino-listing__bonus {
        width: 42%;
    }
    .tbrt-casino-listing__card-style-2 .tbrt-casino-listing__info {
        width: 31.5%;
    }
    .tbrt-casino-listing__card-style-2 .tbrt-casino-listing__actions {
        width: 26%;
    }
}

.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__bonus-list p {
    font-size: 16px;
}

.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__bonus-list p b,
.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__bonus-list p strong {
    font-size: 18px;
}

.tbrt-casino-listing__card-style-2 .tbrt-casino-listing__feature-list::before {
    content: none;
    display: none;
}

.tbrt-casino-listing__feature-list {
    margin-bottom: 0 !important;
}


@media (max-width: 1024px) {
    .tbrt-casino-listing__card {
        flex-direction: column;
    }
    .tbrt-casino-listing__border:nth-child(1) {
        margin-right: 0;
        margin-bottom: -8px;
        width: 100%;
        max-width: 100%;
    }
    .tbrt-casino-listing__border:nth-child(2) {
        width: 100%;
    }
    .tbrt-casino-listing__content {
        flex-direction: column;
    }
    .tbrt-casino-listing__preview {
        padding: 12px;
        padding-bottom: 21px;
    }
    .tbrt-casino-listing__content {
        padding: 0 18px;
    }
    .tbrt-casino-listing__content-item {
        padding: 20px 0;
        width: 100%;
    }
    .tbrt-casino-listing__actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .tbrt-casino-listing__button {
        width: 100%;
    }
    .tbrt-casino-listing__card {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .tbrt-casino-listing__card {
        width: 100%;
    }
}

/* Content Section Styles */
section h1 {
    font-size: 42px;
    color: #2C2C2C;
    margin-bottom: 30px;
    font-weight: 700;
}

section h2 {
    font-size: 36px;
    color: #2C2C2C;
    margin-bottom: 30px;
}

section h3 {
    font-size: 28px;
    color: #2C2C2C;
    margin-bottom: 20px;
    margin-top: 40px;
}

section h4 {
    font-size: 22px;
    color: #2C2C2C;
    margin-bottom: 15px;
    margin-top: 30px;
}

section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5C5C5C;
    font-size: 16px;
}

/* Маркированные списки с галочками */
section ul,
section ol {
    margin-bottom: 25px;
    padding-left: 0;
}
section ol {
    padding-left: 20px;
}

section ol li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #5C5C5C;
    padding-left: 10px;
}

section ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #5C5C5C;
    position: relative;
    padding-left: 30px;
    list-style: none;
}

section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
    font-size: 14px;
}

.tbrt-media-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.tbrt-media-block img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Улучшенные стили таблиц */
.tbrt-data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFACD 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255,215,0,0.2);
    border: 2px solid #FFD700;
}

.tbrt-data-table th,
.tbrt-data-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #FFD700;
}

.tbrt-data-table th {
    background: #FFFACD;
    font-weight: 600;
    color: #B8860B;
    font-size: 16px;
}

.tbrt-data-table td {
    color: #5C5C5C;
    font-size: 15px;
}

.tbrt-data-table tr:hover {
    background: rgba(255, 215, 0, 0.15);
}

.tbrt-data-table tr:last-child td {
    border-bottom: none;
}

/* Image Slider */
.tbrt-image-slider {
    margin-bottom: 40px;
}

.tbrt-slider-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 25px 0;
}

.tbrt-slider-item {
    flex: 0 0 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.tbrt-slider-item:hover {
    transform: translateY(-5px);
}

.tbrt-slider-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* FAQ Section */
.tbrt-faq-section {
    margin-bottom: 40px;
}

.tbrt-faq-item {
    background: linear-gradient(135deg, #4a2c1a 0%, #6b3e2a 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    overflow: hidden;
}

.tbrt-faq-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFACD 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(255,215,0,0.2);
    overflow: hidden;
    border: 2px solid #FFD700;
}

.tbrt-faq-question {
    padding: 25px;
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2C2C2C;
    transition: all 0.3s ease;
    font-size: 16px;
}

.tbrt-faq-question:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C2C2C;
}

.tbrt-faq-question::after {
    content: '+';
    font-size: 24px;
    color: #B8860B;
    transition: transform 0.3s ease;
}

.tbrt-faq-question.active::after {
    transform: rotate(45deg);
}

.tbrt-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tbrt-faq-answer.active {
    padding: 25px;
    max-height: 300px;
}

.tbrt-faq-answer p {
    color: #5C5C5C;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Footer */
/* Footer */
.tbrt-site-footer {
    background: #FFFACD;
    padding: 20px 0;
}
.tbrt-site-footer__wrapper {
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
text-align: center;
}
.tbrt-site-footer__nav {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.tbrt-site-footer__nav-link {
    color: #5C5C5C;
    text-decoration: none;
    font-size: 1rem;
}
.tbrt-site-footer__nav-link:hover {
    text-decoration: underline;
    color: #B8860B;
}
.tbrt-site-footer__meta {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: #5C5C5C;
}
.tbrt-site-footer__note {
    font-size: 0.9rem;
    color: #5C5C5C;
}


/* Кнопка "поднять вверх" */
.tbrt-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C2C2C;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tbrt-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.tbrt-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tbrt-main-nav {
        display: none;
    }

    .tbrt-mobile-menu-btn {
        display: block;
    }

    .tbrt-welcome-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tbrt-welcome-content h1 {
        font-size: 32px;
    }

    .tbrt-welcome-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tbrt-slot-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    .tbrt-data-table {
        overflow:auto;
        overflow-x: auto;
        display: block;
    }

    .tbrt-casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .tbrt-casino-features {
        justify-content: center;
    }

    .tbrt-media-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    /* Table of Contents */
    .tbrt-toc-container {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .tbrt-toc-title {
        display: none;
    }

    .tbrt-toc-items {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .tbrt-toc-item {
        flex: 0 0 auto;
    }

    .tbrt-toc-container::-webkit-scrollbar {
        display: none;
    }
    
    .tbrt-toc-container {
        scrollbar-width: none;
    }

    section {
        padding: 40px 25px;
    }

    .tbrt-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}
.tbrt-hero-section {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #FFD700;
    padding: 5px 25px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFACD 100%);
}


.tbrt-hero-section__content {
display: flex;
flex-direction: column;
border-radius: 15px;
padding: 20px;
z-index: 2;
}

.tbrt-hero-section__header {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.tbrt-hero-section__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #FFFACD;
    justify-content: center;
    border: 2px solid #FFD700;
}

.tbrt-hero-section__logo {
max-width: 150px;
border-radius: 10px;
}

.tbrt-hero-section__btn {
padding: 10px 20px;
border: none;
border-radius: 10px;
color: #fff;
font-weight: bold;
text-decoration: none;
transition: background 0.3s ease-in-out;
width: 100%;
box-sizing: border-box;
text-align: center;
}

.tbrt-hero-section__btn--primary {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}
.tbrt-hero-section__btn--primary:hover {
    background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%);
}

.tbrt-hero-section__devices {
display: flex;
gap: 10px;
}
.tbrt-hero-section__device-icon {
width: 30px;
height: 30px;
}

.tbrt-hero-section__info {
flex: 2;
}

.tbrt-hero-section__title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.tbrt-hero-section__table {
overflow-x: auto;
}
.tbrt-hero-section__table table {
width: 100%;
border-collapse: collapse;
}
.tbrt-hero-section__table td {
padding: 10px;
border-bottom: 1px solid #eaeaea;
}
.tbrt-hero-section__table-heading {
    font-weight: bold;
    color: #B8860B;
    margin: 2.5px 0;
}
.tbrt-hero-section__table-text {
    color: #5C5C5C;
    margin: 2.5px 0;
}

.tbrt-hero-section__description p {
    line-height: 1.8;
    color: #5C5C5C;
    font-size: 16px;
    margin-top: 10px;
}

@media (max-width: 768px) {
.tbrt-hero-section__content {
margin-top: 100px;
padding: 15px;
}

.tbrt-hero-section__header {
flex-direction: column;
gap: 15px;
}

.tbrt-hero-section__title {
font-size: 1.5rem;
}

.tbrt-hero-section__table table {
font-size: 0.9rem;
}
}

@media (max-width: 560px) {
.tbrt-hero-section__logo {
max-width: 100px;
}

.tbrt-hero-section__btn {
font-size: 0.9rem;
}

.tbrt-hero-section__content {
padding: 10px;
}

.tbrt-hero-section__table table {
display: flex;
flex-wrap: wrap;
}

.tbrt-hero-section__table tbody,
.tbrt-hero-section__table tr {
display: contents;
}

.tbrt-hero-section__table td {
width: 50%;
box-sizing: border-box;
padding: 10px;
border-bottom: 1px solid #eaeaea;
}

.tbrt-hero-section__table td:nth-child(odd) {
clear: both;
}
}

/* =================================================================
    HOW-TO GUIDE STYLES (OPTIMIZED)
================================================================= */
.tbrt-howto-guide {
    background: linear-gradient(270deg, #FFFFFF 0%, #FFFACD 50%, #FFFFFF 100%);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255,215,0,0.2);
    position: relative;
    border: 2px solid #FFD700;
}

.tbrt-howto-guide h2::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    margin-bottom: 15px;
    border-radius: 2px;
}

.tbrt-howto-guide h2 {
    font-size: 36px;
    color: #2C2C2C;
    margin-bottom: 30px;
    text-align: center;
}

.tbrt-howto-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.tbrt-howto-step-content {
    padding: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.tbrt-howto-step-content h3 {
    font-size: 20px;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.tbrt-howto-step-content p {
    color: #5C5C5C;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.tbrt-howto-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C2C2C;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    position: relative;
}

.tbrt-howto-step-number:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, #FFD700, #FFA500);
}

.tbrt-howto-step-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.tbrt-howto-step-image img {
    width: 100%;
    /* max-width: 300px; */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
    border: 2px solid #FFD700;
}

@media (max-width: 768px) {

.tbrt-howto-steps {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tbrt-howto-step-number::after {
        display: none;
    }
}