* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0e0b22;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(270deg, #0a0a1f 0%, #5a2a8d 50%, #0a0a1f 100%);
    /* padding: 15px 0; */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.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: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #f1f3fb;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 20px;
    cursor: pointer;
}

/* Table of Contents - Исправленный блок */
.toc-navigation {
    /* padding: 20px 0; */
    border-bottom: 1px solid #334155;
    border-top: 1px solid #334155;
    position: sticky;
    /* top: 80px; */
    z-index: 999;
}

.toc-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;

    padding: 10px 15px;
}

.toc-title {
    font-weight: 600;
    color: #f1f3fb;
    min-width: 120px;
    font-size: 12px;
}

.toc-items {
    display: flex;
    gap: 15px;
    flex: 1;
    margin: 0;
    padding: 0;

    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    list-style: none;
}

.toc-item a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    line-height: normal;
    white-space: nowrap;
}

.toc-item a:hover {
    background-color: #cbd5e1;
    color: #9b00ff;
    border-color: #334155;
}

.toc-progress {
    width: 100%;
    height: 3px;
    /* background-color: #334155; */
    margin-top: 3px;
    border-radius: 2px;
}

.toc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #9b00ff 0%, #5a2a8d 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    padding-top: 140px;
    min-height: 100vh;
}

.main-content a.home-link {
    color: #9b00ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-content a.home-link:hover {
    color: #f1f3fb;
}

/* Global Section Styles */
section {
    background: linear-gradient(270deg, #0a0a1f 0%, #5a2a8d 50%, #0a0a1f 100%);
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, #0a0a1f 0%, #5a2a8d 50%, #0a0a1f 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, #9b00ff 0%, #5a2a8d 100%);
    margin-bottom: 15px;
    border-radius: 2px;
}

/* Welcome Section with Slot Info */
.welcome-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    padding: 80px 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.welcome-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-content h1 {
    font-size: 48px;
    color: #f1f5f9;
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-content h1::before {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #9b00ff 0%, #5a2a8d 100%);
    margin-bottom: 20px;
    border-radius: 3px;
}

.welcome-description {
    font-size: 18px;
    color: #cbd5e1;
    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, #f1f3fb 0%, #ff6b35 100%);
    color: #1e293b;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.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, #334155 0%, #475569 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.slot-info-card:hover {
    border-color: #f1f3fb;
    transform: translateY(-5px);
}

.slot-info-card .icon {
    font-size: 28px;
    color: #f1f3fb;
    margin-bottom: 15px;
}

.slot-info-card .title {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

.slot-info-card .value {
    font-size: 20px;
    color: #f1f5f9;
    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: linear-gradient(270deg, #0a0a1f 0%, #5a2a8d 50%, #0a0a1f 100%);
height: 100%;
color: #ffffff;
}

.casino-listing__preview {
width: 100%;
padding: 10px;
border-radius: 32px;
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,
#5a2a8d 0px,
#5a2a8d 10px,
transparent 10px,
transparent 15px
);
}

.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: 24px;
overflow: hidden;
position: relative;
max-width: 232px;
height: 132px;
display: flex;
justify-content: center;
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(5px);
}

.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: 32px;
}

.casino-listing__content-item {
padding: 0 24px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
}

.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,
#5a2a8d 0px,
#5a2a8d 10px,
transparent 10px,
transparent 15px
);
}

.casino-listing__bonus-title {
background-color: rgba(90, 42, 141, 0.3);
color: #ffffff;
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;
border: 1px solid #5a2a8d;
}

.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(90, 42, 141, 0.2);
border-radius: 12px;
overflow: hidden;
position: relative;
color: #ffffff;
}

.casino-listing__bonus-list::before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
height: 100%;
background-color: #5a2a8d;
opacity: 0.5;
}

.casino-listing__bonus-list p {
font-weight: 600;
font-size: 14px;
line-height: 1.5;
margin: 0 !important;
}

.casino-listing__bonus-list p b,
.casino-listing__bonus-list p strong {
font-weight: 700;
font-size: 16px;
color: #b57aff;
}

.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(10, 10, 31, 0.7);
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
color: #ffffff;
backdrop-filter: blur(5px);
}

.casino-listing__card--1 .casino-listing__feature-list {
background-color: rgba(90, 42, 141, 0.3);
}

.casino-listing__container--no-bg .casino-listing__card--1 .casino-listing__feature-list {
background-color: rgba(10, 10, 31, 0.7);
}

.casino-listing__feature-list::before {
position: absolute;
width: 4px;
left: 0;
content: "";
top: 0;
height: 100%;
background-color: #5a2a8d;
}

.casino-listing__feature-text {
position: relative;
padding-left: 36px;
line-height: 1.33;
padding-top: 2px;
padding-bottom: 2px;
}

.casino-listing__feature-icon {
display: block;
position: absolute;
left: 0;
top: 0;
color: #b57aff;
}

.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: 24px;
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: #5a2a8d;
color: #ffffff !important;
border: 1px solid #b57aff;
}

.casino-listing__button--secondary {
color: #ffffff !important;
background-color: transparent;
border: 1px solid #5a2a8d;
}

.casino-listing__button:hover {
color: #ffffff !important;
background-color: rgba(90, 42, 141, 0.7);
box-shadow: 0px 0px 13px 3px rgba(181, 122, 255, 0.3);
}

.casino-listing__button:active {
transform: scale(0.95);
}

.casino-listing__button-icon {
margin-right: 12px;
}

.casino-listing__number {
position: absolute;
color: #ffffff;
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(
#b57aff calc(var(--percent) * 1%),
var(--bg) 0
);
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: #ffffff;
font-size: 16px;
padding: 5px;
background-color: rgba(90, 42, 141, 0.5);
}

.casino-listing__rating-circle span {
min-width: 40px;
min-height: 40px;
background-color: rgba(10, 10, 31, 0.7);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.rating-100 {
--percent: 100;
--bg: rgba(90, 42, 141, 0.5);
}

.rating-95 {
--percent: 95;
--bg: rgba(90, 42, 141, 0.5);
}

.casino-listing__card--1 .casino-listing__preview,
.casino-listing__card--1 .casino-listing__content {
background: linear-gradient(270deg, #0a0a1f 0%, #5a2a8d 50%, #0a0a1f 100%);
}

.casino-listing__card:not(:last-child) {
margin-bottom: 24px;
}

.casino-listing__border {
border-radius: 36px;
padding: 3px;
background: linear-gradient(45deg, #5a2a8d, #0a0a1f);
}

.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 {
background: #5a2a8d;
}

.casino-listing__border:nth-child(2) {
background: #5a2a8d;
}

.casino-listing__card--1 .casino-listing__border {
background: #5a2a8d;
}

.casino-listing__card--1 .casino-listing__border:nth-child(2) {
background: #5a2a8d;
}

.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: rgba(90, 42, 141, 0.5);
}

.casino-listing__card-style-2.casino-listing__card--1 .casino-listing__bonus-title {
color: #ffffff;
background: rgba(90, 42, 141, 0.5);
}

.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: 40px;
    color: #f1f5f9;
    margin-bottom: 30px;
    font-weight: 700;
}

section h2 {
    font-size: 36px;
    color: #f1f5f9;
    margin-bottom: 30px;
}

section h3 {
    font-size: 28px;
    color: #f1f5f9;
    margin-bottom: 20px;
    margin-top: 40px;
}

section h4 {
    font-size: 22px;
    color: #f1f5f9;
    margin-bottom: 15px;
    margin-top: 30px;
}

section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #cbd5e1;
    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: #cbd5e1;
    padding-left: 10px;
}

section ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #cbd5e1;
    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: #f1f3fb;
    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: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Улучшенные стили таблиц */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #2d1850;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.data-table th,
.data-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #475569;
}

.data-table th {
    background: #1e293b;
    font-weight: 600;
    color: #f1f3fb;
    font-size: 16px;
}

.data-table td {
    color: #cbd5e1;
    font-size: 15px;
}

.data-table tr:hover {
    background: rgba(245, 158, 11, 0.1);
}

.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: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    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, #334155 0%, #475569 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #f1f5f9;
    transition: all 0.3s ease;
    font-size: 16px;
}

.faq-question:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: #f1f3fb;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #f1f3fb;
    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: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Footer */
/* Footer */
.site-footer {
background: 141822;
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: var(--color-text);
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: var(--color-text-secondary);
}
.site-footer__note {
font-size: 0.9rem;
color: var(--color-text-secondary);
}


/* Кнопка "поднять вверх" */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #f1f3fb;
    color: #1e293b;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    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);
}

/* 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 */
    /* 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: 12px;
    border: 2px solid #5a2a8d;
    padding: 5px 25px;
}


.hero-section__content {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    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: #0e0b22;
    justify-content: center;
}

.hero-section__logo {
    max-width: 150px;
    border-radius: 10px;
}

.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;
}

.hero-section__btn--primary {
    background: linear-gradient(90deg, #5a2a8d 0%, #b300ff 100%);
}
.hero-section__btn--primary:hover {
    background: linear-gradient(90deg, #b300ff 0%, #5a2a8d 100%);
}

.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: #f1f5f9;
}

.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 #eaeaea;
}
.hero-section__table-heading {
    font-weight: bold;
    color: #cbd5e1;
    margin: 2.5px 0;
    }
.hero-section__table-text {
    color: #cbd5e1;
    margin: 2.5px 0;
}

.hero-section__description p {
    line-height: 1.8;
    color: #cbd5e1;
    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 #eaeaea;
    }

    .hero-section__table td:nth-child(odd) {
    clear: both;
    }
}
