* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f5f1eb;
    background-color: #0b1f33;
}

.container-3853 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(270deg, #123b5f 0%, #1f4c7a 50%, #123b5f 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-container-3853 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #f5f1eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #93c5fd;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f5f1eb;
    font-size: 20px;
    cursor: pointer;
}

/* Table of Contents - Исправленный блок */
.toc-navigation-3853 {
    /* padding: 20px 0; */
    /* border-bottom: 1px solid #334155;
    border-top: 1px solid #334155; */
    border-bottom: 1px solid #1f4c7a;
    border-top: 1px solid #1f4c7a;
    position: sticky;
    /* top: 80px; */
    z-index: 999;
}

.toc-container-3853 {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 10px 15px;
}

.toc-title {
    font-weight: 600;
    color: #f5f1eb;
    min-width: 120px;
    font-size: 12px;
}

.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;
}

.toc-item-8210 a {
    color: #93c5fd;
    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;
}

.toc-item-8210 a:hover {
    background-color: #1f4c7a;
    color: #f5f1eb;
    border-color: #93c5fd;
}

.toc-progress {
    width: 100%;
    height: 3px;
    /* background-color: #334155; */
    margin-top: 3px;
    border-radius: 2px;
}

.toc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    padding-top: 140px;
    min-height: 100vh;
}

/* Global Section Styles */
section {
    background: linear-gradient(270deg, #0b1f33 0%, #123b5f 50%, #0b1f33 100%);
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, #0b1f33 0%, #123b5f 50%, #0b1f33 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, #93c5fd 0%, #60a5fa 100%);
    margin-bottom: 15px;
    border-radius: 2px;
}

/* Welcome Section with Slot Info */
.welcome-section {
    background: linear-gradient(135deg, #123b5f 0%, #1f4c7a 50%, #123b5f 100%);
    padding: 80px 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.welcome-container-3853 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-content h1 {
    font-size: 48px;
    color: #ecfdf5;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-content h1::before {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
    margin-bottom: 20px;
    border-radius: 3px;
}

.welcome-description {
    font-size: 18px;
    color: #f5f1eb;
    margin-bottom: 30px;
    line-height: 1.7;
}

.welcome-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.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;
}

.btn-primary {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    color: #0b1f33;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 197, 253, 0.4);
}

.welcome-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Slot Info Cards */
.slot-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.slot-info-card {
    background: linear-gradient(135deg, #123b5f 0%, #1f4c7a 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.slot-info-card:hover {
    border-color: #93c5fd;
    transform: translateY(-5px);
}

.slot-info-card .icon {
    font-size: 28px;
    color: #93c5fd;
    margin-bottom: 15px;
}

.slot-info-card .title {
    font-size: 14px;
    color: #f5f1eb;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

.slot-info-card .value {
    font-size: 20px;
    color: #ecfdf5;
    font-weight: 600;
}

/* Casino List with Indian Colors */
.casino-listing-5752__container-3853 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.casino-listing-5752__container-3853 li {
    margin: 0;
    padding: 0;
}

.casino-listing-5752__container-3853 p {
    margin: 0;
}

.casino-listing-5752__container-3853 {
    margin-top: 2rem;
}

.casino-listing-5752__card {
    display: flex;
}

.casino-listing-5752__preview,
.casino-listing-5752__content {
    background-color: rgba(247, 249, 255, 1);
    height: 100%;
}

.casino-listing-5752__preview {
    width: 100%;
    padding: 10px;
    border-radius: 32px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.casino-listing-5752__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
    );
}

.casino-listing-5752__badge {
    position: absolute;
    left: 20px;
    top: -16px;
    z-index: 2;
}

.casino-listing-5752__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;
}

.casino-listing-5752__image {
    width: auto;
    height: auto;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-listing-5752__content {
    display: flex;
    padding: 18px 0;
}

.casino-listing-5752__bonus {
    width: 35.5%;
}

.casino-listing-5752__info {
    width: 37.5%;
}

.casino-listing-5752__actions {
    width: 27%;
}

.casino-listing-5752__content {
    border-radius: 32px;
}

.casino-listing-5752__content-item {
    padding: 0 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.casino-listing-5752__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
    );
}

.casino-listing-5752__bonus-title {
    background-color: rgba(212, 165, 116, 0.08);
    color: rgba(212, 165, 116, 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;
}

.casino-listing-5752__bonus-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.casino-listing-5752__bonus-list {
    margin-top: 8px;
    padding: 6px 16px;
    background-color: rgba(212, 165, 116, 0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.casino-listing-5752__bonus-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(212, 165, 116, 1);
    opacity: 0.1;
}

.casino-listing-5752__bonus-list p {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 !important;
}

.casino-listing-5752__bonus-list p b,
.casino-listing-5752__bonus-list p strong {
    font-weight: 700;
    font-size: 16px;
    color: rgba(212, 165, 116, 1);
}

.casino-listing-5752__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, 255, 255, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.casino-listing-5752__card--1 .casino-listing-5752__feature-list {
    background-color: rgba(0, 0, 0, 0.04);
}

.casino-listing-5752__container-3853--no-bg .casino-listing-5752__card--1 .casino-listing-5752__feature-list {
    background-color: rgba(255, 255, 255, 1);
}

.casino-listing-5752__feature-list::before {
    position: absolute;
    width: 4px;
    left: 0;
    content: "";
    top: 0;
    height: 100%;
    background-color: rgba(147, 197, 253, 1);
}

.casino-listing-5752__feature-text {
    position: relative;
    padding-left: 36px;
    line-height: 1.33;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #1e293b;
}

.casino-listing-5752__feature-icon {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.casino-listing-5752__feature-item:not(:first-child) {
    margin-top: 16px;
}

.casino-listing-5752__feature-item {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.casino-listing-5752__feature-item::before {
    content: none !important;
    display: none !important;
}

.casino-listing-5752__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;
}

.casino-listing-5752__button:not(:first-child) {
    margin-top: 8px;
}

.casino-listing-5752__button--primary {
    background-color: #60a5fa;
    color: #ffffff !important;
    border: 1px solid #60a5fa;
}

.casino-listing-5752__button--secondary {
    color: #000000 !important;
    background-color: transparent;
    border: 1px solid #60a5fa;
}

.casino-listing-5752__button:hover {
    color: #000000 !important;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 13px 3px rgba(147, 197, 253, 0.25);
}

.casino-listing-5752__button:active {
    transform: scale(0.95);
}

.casino-listing-5752__button-icon {
    margin-right: 12px;
}

.casino-listing-5752__number {
    position: absolute;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    left: 0;
    top: 6px;
    width: 37px;
    text-align: center;
}

.casino-listing-5752__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: #000000;
    font-size: 16px;
    padding: 5px;
    background-color: hsl(var(--hue), 100%, 85%);
}

.casino-listing-5752__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;
}

.rating-100 {
    --percent: 100;
    --bg: #aaf2cc;
}

.rating-95 {
    --percent: 95;
    --bg: #b1f2ce;
}

.rating-98 {
    --percent: 98;
    --bg: #b1f2ce;
}

.casino-listing-5752__card--1 .casino-listing-5752__preview,
.casino-listing-5752__card--1 .casino-listing-5752__content {
    background: linear-gradient(180deg, #eaf4ff 0%, #d9edff 100%);
}

.casino-listing-5752__card:not(:last-child) {
    margin-bottom: 24px;
}

.casino-listing-5752__border {
    border-radius: 36px;
    padding: 3px;
    background: linear-gradient(45deg, #93c5fd, #60a5fa);
}

.casino-listing-5752__border:nth-child(1) {
    width: 22%;
    max-width: 256px;
    margin-right: -8px;
}

.casino-listing-5752__border:nth-child(2) {
    width: 78%;
    width: calc(78% + 8px);
}

.casino-listing-5752__border {
    background: rgba(247, 249, 255, 1);
}

.casino-listing-5752__border:nth-child(2) {
    background: rgba(247, 247, 247, 1);
}

.casino-listing-5752__card--1 .casino-listing-5752__border {
    background: linear-gradient(45deg, #93c5fd, #60a5fa);
}

.casino-listing-5752__card--1 .casino-listing-5752__border:nth-child(2) {
    background: linear-gradient(-45deg, #93c5fd, #60a5fa);
}

.casino-listing-5752__border-inner {
    position: relative;
}

.casino-listing-5752__card-style-2 .casino-listing-5752__bonus-title {
    position: absolute;
    z-index: 2;
    right: 20px;
    transform: translateY(-40%);
    background-color: rgba(237, 247, 255, 1);
}

.casino-listing-5752__card-style-2.casino-listing-5752__card--1 .casino-listing-5752__bonus-title {
    color: #0b1f33;
    background: linear-gradient(180deg, #93c5fd 0%, #60a5fa 100%);
}

.casino-listing-5752__card-style-2 .casino-listing-5752__bonus.casino-listing-5752__content-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.casino-listing-5752__card-style-2 .casino-listing-5752__bonus-list {
    max-height: fit-content;
    width: 100%;
    margin-left: 24px;
    margin-top: 0;
}

.casino-listing-5752__card-style-2 .casino-listing-5752__rating-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
}

.casino-listing-5752__card-style-2 .casino-listing-5752__rating-circle span {
    min-width: 70px;
    min-height: 70px;
    font-size: 20px;
}

@media (min-width: 1025px) {
    .casino-listing-5752__card-style-2 .casino-listing-5752__bonus {
        width: 42%;
    }
    .casino-listing-5752__card-style-2 .casino-listing-5752__info {
        width: 31.5%;
    }
    .casino-listing-5752__card-style-2 .casino-listing-5752__actions {
        width: 26%;
    }
}

.casino-listing-5752__card-style-2 .casino-listing-5752__bonus-list p {
    font-size: 16px;
}

.casino-listing-5752__card-style-2 .casino-listing-5752__bonus-list p b,
.casino-listing-5752__card-style-2 .casino-listing-5752__bonus-list p strong {
    font-size: 18px;
}

.casino-listing-5752__card-style-2 .casino-listing-5752__feature-list::before {
    content: none;
    display: none;
}

.casino-listing-5752__feature-list {
    margin-bottom: 0 !important;
}

.casino-listing-5752__card-style-2 .casino-listing-5752__feature-list {
    background: transparent !important;
    padding: 0 !important;
}

@media (max-width: 1024px) {
    .casino-listing-5752__card {
        flex-direction: column;
    }
    .casino-listing-5752__border:nth-child(1) {
        margin-right: 0;
        margin-bottom: -8px;
        width: 100%;
        max-width: 100%;
    }
    .casino-listing-5752__border:nth-child(2) {
        width: 100%;
    }
    .casino-listing-5752__content {
        flex-direction: column;
    }
    .casino-listing-5752__preview {
        padding: 12px;
        padding-bottom: 21px;
    }
    .casino-listing-5752__content {
        padding: 0 18px;
    }
    .casino-listing-5752__content-item {
        padding: 20px 0;
        width: 100%;
    }
    .casino-listing-5752__actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .casino-listing-5752__button {
        width: 100%;
    }
    .casino-listing-5752__card {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .casino-listing-5752__card {
        width: 100%;
    }
}

/* Content Section Styles */
section h1 {
    font-size: 42px;
    color: #ecfdf5;
    margin-bottom: 30px;
    font-weight: 700;
}

section h2 {
    font-size: 36px;
    color: #ecfdf5;
    margin-bottom: 30px;
}

section h3 {
    font-size: 28px;
    color: #ecfdf5;
    margin-bottom: 20px;
    margin-top: 40px;
}

section h4 {
    font-size: 22px;
    color: #ecfdf5;
    margin-bottom: 15px;
    margin-top: 30px;
}

section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #f5f1eb;
    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: #f5f1eb;
    padding-left: 10px;
}

section ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #f5f1eb;
    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: #d4a574; */
    color: rgb(147, 197, 253);
    font-size: 14px;
}

.media-block-7291 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.media-block-7291 img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Улучшенные стили таблиц */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #123b5f 0%, #1f4c7a 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.data-table th,
.data-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #1f4c7a;
}

.data-table th {
    background: #123b5f;
    font-weight: 600;
    color: #93c5fd;
    font-size: 16px;
}

.data-table td {
    color: #f5f1eb;
    font-size: 15px;
}

.data-table tr:hover {
    background: rgba(147, 197, 253, 0.15);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Image Slider */
.image-slider {
    margin-bottom: 40px;
}

.slider-container-3853 {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 25px 0;
}

.slider-item-7319 {
    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;
}

.slider-item-7319:hover {
    transform: translateY(-5px);
}

.slider-item-7319 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section-9316 {
    margin-bottom: 40px;
}

.faq-item-9316 {
    background: linear-gradient(135deg, #123b5f 0%, #1f4c7a 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, #123b5f 0%, #1f4c7a 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ecfdf5;
    transition: all 0.3s ease;
    font-size: 16px;
}

.faq-question:hover {
    background: linear-gradient(135deg, #1f4c7a 0%, #1f4c7a 100%);
    color: #93c5fd;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #93c5fd;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 25px;
    max-height: 300px;
}

.faq-answer p {
    color: #f5f1eb;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Footer */
/* Footer */
.site-footer-4130 {
background: #0b1f33;
padding: 20px 0;
}
.site-footer-4130__wrapper {
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
text-align: center;
}
.site-footer-4130__nav {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.site-footer-4130__nav-link {
color: var(--color-text);
text-decoration: none;
font-size: 1rem;
}
.site-footer-4130__nav-link:hover {
text-decoration: underline;
}
.site-footer-4130__meta {
display: flex;
gap: 10px;
font-size: 0.9rem;
color: var(--color-text-secondary);
}
.site-footer-4130__note {
font-size: 0.9rem;
color: var(--color-text-secondary);
}


/* Кнопка "поднять вверх" */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    color: #0b1f33;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(147, 197, 253, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 197, 253, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .welcome-container-3853 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-content h1 {
        font-size: 32px;
    }

    .welcome-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slot-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .casino-features {
        justify-content: center;
    }

    .media-block-7291 {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    /* Table of Contents */
    .toc-container-3853 {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .toc-title {
        display: none;
    }

    .toc-items {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .toc-item-8210 {
        flex: 0 0 auto;
    }

    .toc-container-3853::-webkit-scrollbar {
        display: none;
    }
    
    .toc-container-3853 {
        scrollbar-width: none;
    }

    section {
        padding: 40px 25px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}
.hero-section-3853 {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #93c5fd;
    padding: 5px 25px;
    }


.hero-section-3853__content {
display: flex;
flex-direction: column;
border-radius: 15px;
padding: 20px;
z-index: 2;
}

.hero-section-3853__header {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.hero-section-3853__actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 10px;
border-radius: 10px;
background: #ececf1;
justify-content: center;
}

.hero-section-3853__logo {
max-width: 150px;
border-radius: 10px;
}

.hero-section-3853__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;
}

.hero-section-3853__btn--primary {
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
}
.hero-section-3853__btn--primary:hover {
background: linear-gradient(90deg, #60a5fa 0%, #93c5fd 100%);
}

.hero-section-3853__devices {
display: flex;
gap: 10px;
}
.hero-section-3853__device-icon {
width: 30px;
height: 30px;
}

.hero-section-3853__info {
flex: 2;
}

.hero-section-3853__title {
font-size: 32px;
margin-bottom: 15px;
color: #f1f5f9;
}

.hero-section-3853__table {
overflow-x: auto;
}
.hero-section-3853__table table {
width: 100%;
border-collapse: collapse;
}
.hero-section-3853__table td {
padding: 10px;
border-bottom: 1px solid #eaeaea;
}
.hero-section-3853__table-heading {
font-weight: bold;
color: #e0e7ff;
margin: 2.5px 0;
}
.hero-section-3853__table-text {
color: #e0e7ff;
margin: 2.5px 0;
}

.hero-section-3853__description p {
line-height: 1.8;
color: #e0e7ff;
font-size: 16px;
margin-top: 10px;
}

@media (max-width: 768px) {
.hero-section-3853__content {
margin-top: 100px;
padding: 15px;
}

.hero-section-3853__header {
flex-direction: column;
gap: 15px;
}

.hero-section-3853__title {
font-size: 1.5rem;
}

.hero-section-3853__table table {
font-size: 0.9rem;
}
}

@media (max-width: 560px) {
.hero-section-3853__logo {
max-width: 100px;
}

.hero-section-3853__btn {
font-size: 0.9rem;
}

.hero-section-3853__content {
padding: 10px;
}

.hero-section-3853__table table {
display: flex;
flex-wrap: wrap;
}

.hero-section-3853__table tbody,
.hero-section-3853__table tr {
display: contents;
}

.hero-section-3853__table td {
width: 50%;
box-sizing: border-box;
padding: 10px;
border-bottom: 1px solid #eaeaea;
}

.hero-section-3853__table td:nth-child(odd) {
clear: both;
}
}

/* =================================================================
    HOW-TO GUIDE STYLES (OPTIMIZED)
================================================================= */
.howto-guide-8149 {
    background: linear-gradient(270deg, #0b1f33 0%, #123b5f 50%, #0b1f33 100%);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    position: relative;
}

.howto-guide-8149 h2::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #93c5fd 0%, #60a5fa 100%);
    margin-bottom: 15px;
    border-radius: 2px;
}

.howto-guide-8149 h2 {
    font-size: 36px;
    color: #ecfdf5;
    margin-bottom: 30px;
    text-align: center;
}

.howto-steps-8149 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.howto-step-8149-content {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid #1f4c7a;
}

.howto-step-8149-content h3 {
    font-size: 20px;
    color: #ecfdf5;
    margin-bottom: 10px;
}

.howto-step-8149-content p {
    color: #f5f1eb;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.howto-step-8149-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    color: #0b1f33;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    position: relative;
}

.howto-step-8149-number:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, #93c5fd, #60a5fa);
}

.howto-step-8149-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.howto-step-8149-image img {
    width: 100%;
    /* max-width: 300px; */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 2px solid #d4a574;
}

@media (max-width: 768px) {

.howto-steps-8149 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .howto-step-8149-number::after {
        display: none;
    }
}