* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    /*color: #2C3E50;*/
    color: #2f2d3b;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(270deg, #FFFFFF 0%, #ECF0F1 50%, #FFFFFF 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(44, 62, 80, 0.1);
}

.header-container {
    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: #2C3E50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #871457;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2C3E50;
    font-size: 20px;
    cursor: pointer;
}

/* Table of Contents - Исправленный блок */
.toc-navigation {
    border-bottom: 1px solid #BDC3C7;
    border-top: 1px solid #BDC3C7;
    position: sticky;
    z-index: 999;
    background-color: #FFFFFF;
}

.toc-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 10px 15px;
}

.toc-title {
    font-weight: 600;
    color: #871457;
    min-width: 120px;
    font-size: 12px;
}

.toc-items {
    display: flex;
    gap: 15px;
    flex: 1;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.toc-item a {
    color: #2C3E50;
    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 a:hover {
    background-color: #871457;
    color: #FFFFFF;
    border-color: #871457;
}

.toc-progress {
    width: 100%;
    height: 3px;
    margin-top: 3px;
    border-radius: 2px;
}

.toc-progress-bar {
    height: 100%;
    /*background: linear-gradient(90deg, #871457 0%, #69123e 100%);*/
    background: linear-gradient(90deg, #871457 0%, #69123e 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, #FFFFFF 0%, #ECF0F1 50%, #FFFFFF 100%);*/
    background: #fefefe;
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.08);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, #ECF0F1 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, #871457 0%, #69123e 100%);*/
    background: linear-gradient(90deg, #cb158e 0%, #871457 100%);
    margin-bottom: 15px;
    border-radius: 2px;
}

/* Welcome Section with Slot Info */
.welcome-section {
    background: linear-gradient(135deg, #ECF0F1 0%, #BDC3C7 50%, #ECF0F1 100%);
    padding: 80px 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(44, 62, 80, 0.1);
}

.welcome-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-content h1 {
    font-size: 48px;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-content h1::before {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #871457 0%, #69123e 100%);
    margin-bottom: 20px;
    border-radius: 3px;
}

.welcome-description {
    font-size: 18px;
    color: #2C3E50;
    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, #871457 0%, #69123e 100%);
    color: #FFFFFF;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.welcome-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(44, 62, 80, 0.1);
}

/* 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, #BDC3C7 0%, #ECF0F1 100%);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.slot-info-card:hover {
    border-color: #871457;
    transform: translateY(-5px);
}

.slot-info-card .icon {
    font-size: 28px;
    color: #871457;
    margin-bottom: 15px;
}

.slot-info-card .title {
    font-size: 14px;
    color: #2C3E50;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

.slot-info-card .value {
    font-size: 20px;
    color: #2C3E50;
    font-weight: 600;
}

/* Casino List with Indian Colors */
.casino-listing__container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.casino-listing__container li {
    margin: 0;
    padding: 0;
}

.casino-listing__container p {
    margin: 0;
}

.casino-listing__container {
    margin-top: 2rem;
}

.casino-listing__card {
    display: flex;
}

.casino-listing__preview,
.casino-listing__content {
    background-color: #ECF0F1;
    height: 100%;
}

.casino-listing__preview {
    width: 100%;
    padding: 10px;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.casino-listing__preview::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-image: repeating-linear-gradient(
        to bottom,
        #871457 0px,
        #871457 10px,
        transparent 10px,
        transparent 15px
    );
}
@media (max-width: 768px) {
    .casino-listing__preview::after, .casino-listing__number {
        display: none;
    }
}

.casino-listing__badge {
    position: absolute;
    left: 20px;
    top: -16px;
    z-index: 2;
}

.casino-listing__image-wrap {
    padding: 12px;
    min-width: 100%;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-width: 232px;
    height: 132px;
    display: flex;
    justify-content: center;
}

.casino-listing__image {
    width: auto;
    height: auto;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-listing__content {
    display: flex;
    padding: 18px 0;
}

.casino-listing__bonus {
    width: 35.5%;
}

.casino-listing__info {
    width: 37.5%;
}

.casino-listing__actions {
    width: 27%;
}

.casino-listing__content {
    border-radius: 0;
}

.casino-listing__content-item {
    padding: 0 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.casino-listing__bonus-title {
    background-color: rgba(243, 156, 18, 0.15);
    color: #871457;
    max-width: fit-content;
    padding: 2px 12px;
    line-height: 1.5;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    max-height: fit-content;
    margin-bottom: 0 !important;
}

.casino-listing__bonus-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.casino-listing__bonus-list {
    margin-top: 8px;
    padding: 6px 16px;
    background-color: rgba(243, 156, 18, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.casino-listing__bonus-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
    background-color: #871457;
    opacity: 0.3;
}

.casino-listing__bonus-list p {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 !important;
    color: #2C3E50;
}

.casino-listing__bonus-list p b,
.casino-listing__bonus-list p strong {
    font-weight: 700;
    font-size: 16px;
    color: #2C3E50;
}

.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: #FFFFFF;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.casino-listing__card--1 .casino-listing__feature-list {
    background-color: rgba(189, 195, 199, 0.1);
}

.casino-listing__container--no-bg .casino-listing__card--1 .casino-listing__feature-list {
    background-color: #FFFFFF;
}

.casino-listing__feature-list::before {
    position: absolute;
    width: 4px;
    left: 0;
    content: "";
    top: 0;
    height: 100%;
    background-color: #871457;
}

.casino-listing__feature-text {
    position: relative;
    padding-left: 36px;
    line-height: 1.33;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #2C3E50;
}

.casino-listing__feature-icon {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.casino-listing__feature-item:not(:first-child) {
    margin-top: 16px;
}

.casino-listing__feature-item {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.casino-listing__feature-item::before {
    content: none !important;
    display: none !important;
}

.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: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    white-space: nowrap;
}

.casino-listing__button:not(:first-child) {
    margin-top: 8px;
}

.casino-listing__button--primary {
    background-color: #871457;
    color: #FFFFFF !important;
    border: 1px solid #871457;
}

.casino-listing__button--secondary {
    color: #2C3E50 !important;
    background-color: transparent;
    border: 1px solid #7F8C8D;
}

.casino-listing__button:hover {
    color: #FFFFFF !important;
    background-color: #69123e;
    box-shadow: 0px 0px 13px 3px rgba(243, 156, 18, 0.2);
}

.casino-listing__button:active {
    transform: scale(0.95);
}

.casino-listing__button-icon {
    margin-right: 12px;
}

.casino-listing__number {
    position: absolute;
    color: #2C3E50;
    font-size: 17px;
    font-weight: 700;
    left: 0;
    top: 6px;
    width: 37px;
    text-align: center;
}

.casino-listing__rating-circle {
    --percent: 80;
    --hue: calc((var(--percent) / 10) * 12);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: conic-gradient(#BDC3C7 calc(var(--percent) * 1%),var(--bg) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2C3E50;
    font-size: 16px;
    padding: 5px;
    background-color: #ECF0F1;
}

.casino-listing__rating-circle span {
    min-width: 40px;
    min-height: 40px;
    background-color: var(--bg, #FFFFFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-100 {
    --percent: 100;
    --bg: #ECF0F1;
}

.rating-95 {
    --percent: 95;
    --bg: #BDC3C7;
}

.casino-listing__card--1 .casino-listing__preview,
.casino-listing__card--1 .casino-listing__content {
    background: linear-gradient(180deg, #ECF0F1 0%, #BDC3C7 100%);
}

.casino-listing__card:not(:last-child) {
    margin-bottom: 24px;
}

.casino-listing__border {
    border-radius: 0;
    padding: 1px;
    background: linear-gradient(45deg, #BDC3C7, #ECF0F1);
}

.casino-listing__border:nth-child(1) {
    width: 22%;
    max-width: 256px;
    margin-right: -8px;
}

.casino-listing__border:nth-child(2) {
    width: 78%;
    width: calc(78% + 8px);
}

.casino-listing__border:nth-child(2) {
    background: #e1dfdf;
}

.casino-listing__card--1 .casino-listing__border {
    background: linear-gradient(45deg, #BDC3C7, #ECF0F1);
}

.casino-listing__card--1 .casino-listing__border:nth-child(2) {
    background: linear-gradient(-45deg, #BDC3C7, #ECF0F1);
}

.casino-listing__border-inner {
    position: relative;
}

.casino-listing__card-style-2 .casino-listing__bonus-title {
    position: absolute;
    z-index: 2;
    right: 20px;
    transform: translateY(-40%);
    background-color: #FFFFFF;
}

.casino-listing__card-style-2.casino-listing__card--1 .casino-listing__bonus-title {
    color: #2C3E50;
    background: linear-gradient(180deg, #ECF0F1 0%, #BDC3C7 100%);
}

.casino-listing__card-style-2 .casino-listing__bonus.casino-listing__content-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.casino-listing__card-style-2 .casino-listing__bonus-list {
    max-height: fit-content;
    width: 100%;
    margin-left: 24px;
    margin-top: 0;
}

.casino-listing__card-style-2 .casino-listing__rating-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
}

.casino-listing__card-style-2 .casino-listing__rating-circle span {
    min-width: 70px;
    min-height: 70px;
    font-size: 20px;
}

@media (min-width: 1025px) {
    .casino-listing__card-style-2 .casino-listing__bonus {
        width: 42%;
    }
    .casino-listing__card-style-2 .casino-listing__info {
        width: 31.5%;
    }
    .casino-listing__card-style-2 .casino-listing__actions {
        width: 26%;
    }
}

.casino-listing__card-style-2 .casino-listing__bonus-list p {
    font-size: 16px;
}

.casino-listing__card-style-2 .casino-listing__bonus-list p b,
.casino-listing__card-style-2 .casino-listing__bonus-list p strong {
    font-size: 18px;
}

.casino-listing__card-style-2 .casino-listing__feature-list::before {
    content: none;
    display: none;
}

.casino-listing__feature-list {
    margin-bottom: 0 !important;
}

.casino-listing__card-style-2 .casino-listing__feature-list {
    background: transparent !important;
    padding: 0 !important;
}

@media (max-width: 1024px) {
    .casino-listing__card {
        flex-direction: column;
    }
    .casino-listing__border:nth-child(1) {
        margin-right: 0;
        margin-bottom: -8px;
        width: 100%;
        max-width: 100%;
    }
    .casino-listing__border:nth-child(2) {
        width: 100%;
    }
    .casino-listing__content {
        flex-direction: column;
    }
    .casino-listing__preview {
        padding: 12px;
        padding-bottom: 21px;
    }
    .casino-listing__content {
        padding: 0 18px;
    }
    .casino-listing__content-item {
        padding: 20px 0;
        width: 100%;
    }
    .casino-listing__actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .casino-listing__button {
        width: 100%;
    }
    .casino-listing__card {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .casino-listing__card {
        width: 100%;
    }
}

/* Content Section Styles */
section h1 {
    font-size: 42px;
    color: #2C3E50;
    margin-bottom: 30px;
    font-weight: 700;
}

section h2 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 30px;
}

section h3 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 20px;
    margin-top: 40px;
}

section h4 {
    font-size: 22px;
    color: #2C3E50;
    margin-bottom: 15px;
    margin-top: 30px;
}

section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #2C3E50;
    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: #2C3E50;
    padding-left: 10px;
}

section ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #2C3E50;
    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: #871457;
    font-size: 14px;
}

.media-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.media-block img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(44, 62, 80, 0.1);
}

/* Улучшенные стили таблиц */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    /*background: linear-gradient(135deg, #BDC3C7 0%, #ECF0F1 100%);*/
    background: linear-gradient(135deg, #eaedf6 0%, #f5f9fa 100%);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.1);
}

.data-table th,
.data-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #BDC3C7;
}

.data-table th {
    /*background: #ECF0F1;*/
    background: #871457;
    font-weight: 600;
    /*color: #871457;*/
    color: #ffffff;
    font-size: 16px;
}

.data-table td {
    color: #2C3E50;
    font-size: 15px;
}

.data-table tr:hover {
    /*background: rgba(243, 156, 18, 0.1);*/
    background: rgba(160, 4, 242, 0.06);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Image Slider */
.image-slider {
    margin-bottom: 40px;
}

.slider-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 25px 0;
}

.slider-item {
    flex: 0 0 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.1);
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-5px);
}

.slider-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-item {
    /*background: linear-gradient(135deg, #BDC3C7 0%, #ECF0F1 100%);*/
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    /*background: linear-gradient(135deg, #ECF0F1 0%, #BDC3C7 100%);*/
    background: #0c0c18;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    /*color: #2C3E50;*/
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 16px;
}

.faq-question:hover {
    /*background: linear-gradient(135deg, #BDC3C7 0%, #ECF0F1 100%);*/
    background: #2f2d3b;
    color: #f9f9f9;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: rgb(249, 249, 249);
    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: #2C3E50;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    /*background: #ECF0F1;*/
    background: #0c0c18;
    padding: 20px 0;
}
.site-footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}
.site-footer__nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.site-footer__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}
.site-footer__nav-link:hover {
    text-decoration: underline;
}
.site-footer__meta {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: #afbcbd;
}
.site-footer__note {
    font-size: 0.9rem;
    color: #afbcbd;
}


/* Кнопка "поднять вверх" */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #871457 0%, #69123e 50%, #871457 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(105, 18, 62, 0.3);
    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(105, 18, 62, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .welcome-container {
        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 {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    /* Table of Contents */
    .toc-container {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .toc-title {
        display: none;
    }

    .toc-items {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .toc-item {
        flex: 0 0 auto;
    }

    .toc-container::-webkit-scrollbar {
        display: none;
    }
    
    .toc-container {
        scrollbar-width: none;
    }

    section {
        padding: 40px 25px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}
.hero-section {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #BDC3C7;
    padding: 5px 25px;
    }


.hero-section__content {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 20px;
    z-index: 2;
}

.hero-section__header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-section__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #FFFFFF;
    justify-content: center;
}

.hero-section__logo {
    max-width: 150px;
    border-radius: 10px;
}

.hero-section__btn {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.hero-section__btn--primary {
    background: linear-gradient(90deg, #871457 0%, #69123e 100%);
}
.hero-section__btn--primary:hover {
    background: linear-gradient(90deg, #69123e 0%, #871457 100%);
    color: #FFFFFF;
}

.hero-section__devices {
    display: flex;
    gap: 10px;
}
.hero-section__device-icon {
    width: 30px;
    height: 30px;
}

.hero-section__info {
    flex: 2;
}

.hero-section__title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.hero-section__table {
    overflow-x: auto;
}
.hero-section__table table {
    width: 100%;
    border-collapse: collapse;
}
.hero-section__table td {
    padding: 10px;
    border-bottom: 1px solid #BDC3C7;
}
.hero-section__table-heading {
    font-weight: bold;
    color: #2C3E50;
    margin: 2.5px 0;
}
.hero-section__table-text {
    color: #2C3E50;
    margin: 2.5px 0;
}

.hero-section__description p {
    line-height: 1.8;
    color: #2C3E50;
    font-size: 16px;
    margin-top: 10px;
}

@media (max-width: 768px) {
.hero-section__content {
    margin-top: 100px;
    padding: 15px;
}

.hero-section__header {
    flex-direction: column;
    gap: 15px;
}

.hero-section__title {
    font-size: 1.5rem;
}

.hero-section__table table {
    font-size: 0.9rem;
}
}

@media (max-width: 560px) {
.hero-section__logo {
    max-width: 100px;
}

.hero-section__btn {
    font-size: 0.9rem;
}

.hero-section__content {
    padding: 10px;
}

.hero-section__table table {
    display: flex;
    flex-wrap: wrap;
}

.hero-section__table tbody,
.hero-section__table tr {
    display: contents;
}

.hero-section__table td {
    width: 50%;
    box-sizing: border-box;
    padding: 10px;
    border-bottom: 1px solid #BDC3C7;
}

.hero-section__table td:nth-child(odd) {
    clear: both;
}
}

/* =================================================================
    HOW-TO GUIDE STYLES (OPTIMIZED)
================================================================= */
.howto-guide {
    background: linear-gradient(270deg, #FFFFFF 0%, #ECF0F1 50%, #FFFFFF 100%);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.1);
    position: relative;
}

.howto-guide h2::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #871457 0%, #69123e 100%);
    margin-bottom: 15px;
    border-radius: 2px;
}

.howto-guide h2 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
}

.howto-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.howto-step-content {
    padding: 20px;
    background: rgba(189, 195, 199, 0.1);
    border-radius: 10px;
    border: 1px solid #BDC3C7;
}

.howto-step-content h3 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.howto-step-content p {
    color: #2C3E50;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.howto-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #871457 0%, #69123e 100%);
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    position: relative;
}

.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, #871457, #69123e);
}

.howto-step-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.howto-step-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
    border: 2px solid #871457;
}

@media (max-width: 768px) {

.howto-steps {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .howto-step-number::after {
        display: none;
    }
}
a {
    color: #871457;
    text-decoration: none;
}
a:hover {
    color: #69123e;
    text-decoration: none;
}
