/* Inter Font - для контента main */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBoldItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: #100b07;
}
/* === HEADINGS (H1-H6) === */
h1, h2, h3, h4, h5, h6 {
    color: #faffe5;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Desktop sizes */
h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

/* Mobile sizes */
@media (max-width: 767px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    h5 {
        font-size: 18px;
    }
    
    h6 {
        font-size: 16px;
    }
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

@media (min-width: 768px) {
    .page-wrapper {
        flex-direction: row;
    }
}

/* Inter для всего контента в main */
.main-content,
.main-content *,
main,
main * {
    font-family: 'Inter', sans-serif !important;
}

p{
    margin: 10px 0;
}



.main-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #100B07;
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 100px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* === HEADER === */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 10px 15px;
    display: flex;
}

@media (min-width: 768px) {
    .site-header {
        padding-left: 20px;
        padding-right: 40px;
    }
}

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

.header-logo-section {
    display: flex;
    align-items: center;
    gap: 10px;

}

@media (max-width: 767px) {
    .header-logo-section {
        width: 100%;
    }
    .header-logo-section a {
        margin: 0 auto;
        display: block;
      
    }
}

@media (min-width: 768px) {
    .header-logo-section {
        gap: 25px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile: Fixed buttons at bottom */
@media (max-width: 767px) {
    .header-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        gap: 20px;
        z-index: 1000;
        background-color: rgb(43 24 15);
        padding: 15px;
    }
    
    .header-buttons .btn {
        width: 50%;
        flex: 1;
        border-radius: 0 !important;
        padding: 10px 10px !important;
        font-size: 20px !important;
        margin: 0;
    }
    
    .header-buttons .btn-secondary {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.hamburger-menu {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 10px;
    padding: 8px;
}

.logo-image {
    max-height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-image {
        max-height: 50px;
    }
}

/* === SIDEBAR === */
/* Inter для навигации */
.sidebar,
.sidebar *,
aside,
aside * {
    font-family: 'Inter', sans-serif;
}

.aside span,
.aside ul li a span,
.sidebar-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #FFF1D2;
    font-size: 18px;
}

.sidebar {
    background-color: #100B07;
    border-radius: 8px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-item {
    background-color: transparent;
    border-radius: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding-right: 40px;
}

/* Hero Section in Sidebar */
.hero-section-sidebar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 300px;
    background-image: url('../img/bg-mob.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 10px;
    border-radius: 12px;
    margin-top: 10px;
}

.hero-section-sidebar .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 100%;
    background: rgb(16 11 7 / 78%);
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-section-sidebar .hero-subtitle {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-section-sidebar .hero-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-family: 'Inter', sans-serif !important;
}

.hero-section-sidebar .hero-bonus {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-section-sidebar .hero-btn {
    display: inline-block;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFF1D2;
    background-image: url('../img/hero-bg-btn.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    -webkit-text-stroke: 1px rgba(114, 80, 52, 0.4);
    text-shadow: 1px 1px 2px rgb(0 0 0), 1px 1px 1px rgb(0 0 0);
}

.hero-section-sidebar .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Когда sidebar свернут (collapsed), убираем padding справа */
.sidebar.collapsed {
    max-width: 70px;
    transition: all .3s ease-in-out;
}

.sidebar.collapsed .sidebar-link {
    padding-right: 0;
}

.sidebar-icon {
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Иконки внутри sidebar должны использовать цвет из переменной */
.sidebar-icon path {
    fill: var(--side_nav_text);
}

.sidebar-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    padding-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* === SECTIONS === */
/* Inter для hero section */
.hero-section *:not(.hero-title),
.hero-content *:not(.hero-title) {
    font-family: 'Inter', sans-serif !important;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 350px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-image: url('../img/bg-mob.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .hero-section {
        background-image: url('../img/bg.webp');
        min-height: 350px;
        padding: 20px 30px;
        align-items: center;
    }
}

.hero-background {
    position: absolute;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: #faffe5;
    padding: 15px;
    max-width: 600px;
    background: rgb(16 11 7 / 78%);
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 767px){
    .hero-content {
        text-align: center;
    }
    .btn-cta {
        margin: 0 auto;
    }
}
@media (min-width: 768px) {
    .hero-content {
        padding: 40px 50px;
        max-width: 700px;
    }
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0.9;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-family: 'Inter', sans-serif !important;
    padding-bottom: 5px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 45px;
    }
}

.hero-bonus {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .hero-bonus {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFF1D2;
    background-image: url('../img/hero-bg-btn.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    -webkit-text-stroke: 1px rgba(114, 80, 52, 0.4);
    text-shadow: 
        0px 0.5px 2px rgba(0, 0, 0, 0.4),
        0px 1px 0px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-btn {
        padding: 18px 50px;
        font-size: 20px;
    }
}

.section {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .section {
        padding-top: 20px;
    }
}

.section-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .section-container {
        padding: 0 30px;
    }
}

.section-title {
    font-size: 30px;
    font-weight: bold;
    color: var(--head);
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 18px;
        line-height: 1.8;
    }
}

.section-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.section-centered {
    text-align: center;
}

/* === GAMES GRID === */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Categories Grid - 6 items */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

.category-card {
    position: relative;
    background-color: rgb(101 67 33 / 30%);
    overflow: hidden;
    height: 65px;
    border-radius: 10px;
    padding: 9px 7px;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .category-card {
        height: 105px;
        padding: 15px 12px;
    }
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-content {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    position: relative;
    height: 100%;
}

.category-icon {
    width: 12px;
    height: 12px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .category-icon {
        width: 19px;
        height: 19px;
    }
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-title {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .category-title {
        font-size: 16px;
    }
}

.category-bg {
    position: absolute;
    bottom: -5px;
    right: -5px;
    height: 100%;
    width: auto;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.game-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.game-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon-text {
    font-size: 24px;
}

.game-title {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.game-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Sport Cards */
.sport-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(101, 67, 33, 0.3));
    border: 2px solid rgba(255, 165, 0, 0.2);
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.5);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.5), rgba(101, 67, 33, 0.5));
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

.sport-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(210, 105, 30, 0.2));
    border: 2px solid rgba(255, 165, 0, 0.3);
}

@media (min-width: 768px) {
    .sport-icon {
        width: 100px;
        height: 100px;
    }
}

.sport-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFF1D2;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .sport-title {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .sport-title {
        font-size: 13px;
    }
}

/* === BONUS BANNER === */
.bonus-banner {
    padding: 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: center;
    color: white;
    justify-content: space-between;
    border-radius: 10px;
    padding: 15px 20px;
    background-color: var(--secondary);
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .bonus-grid {
        gap: 0;
        padding: 15px 45px;
    }
}

.bonus-logo {
    grid-column: span 6;
}

@media (min-width: 1024px) {
    .bonus-logo {
        grid-column: span 4;
    }
}

.bonus-logo-image {
    max-width: 130px;
}

@media (min-width: 768px) {
    .bonus-logo-image {
        max-width: 200px;
    }
}

.bonus-info {
    grid-column: span 12;
    order: 3;
}

@media (min-width: 1024px) {
    .bonus-info {
        grid-column: span 4;
        order: 2;
    }
}

.bonus-box {
    display: flex;
    flex-direction: column;
    background-color: rgba(36, 38, 38, 0.3);
    border-radius: 12px;
    padding: 13px 20px;
    line-height: 1.2;
}

.bonus-label {
    font-size: 15px;
}

@media (min-width: 1024px) {
    .bonus-label {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {
    .bonus-label {
        font-size: 20px;
    }
}

.bonus-amount {
    font-weight: bold;
    font-size: 22px;
}

@media (min-width: 1024px) {
    .bonus-amount {
        font-size: 32px;
    }
}

@media (min-width: 1280px) {
    .bonus-amount {
        font-size: 37px;
    }
}

.bonus-amount strong {
    color: var(--links_color);
}

.bonus-button-wrapper {
    grid-column: span 6;
    order: 2;
    text-align: end;
}

@media (min-width: 1024px) {
    .bonus-button-wrapper {
        grid-column: span 4;
        order: 3;
    }
}

/* === FOOTER === */
.site-footer {
    background-color: #100B07;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 50px 40px;
    }
}

.footer-providers {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: 1px solid var(--text_color);
}

.provider-link {
    display: block;
    height: 15px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

@media (min-width: 768px) {
    .provider-link {
        height: 30px;
    }
}

.provider-link:hover {
    opacity: 1;
}

.provider-icon {
    height: 100%;
    width: auto;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-link {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
}

.social-icon {
    margin-right: 10px;
}

.footer-logo-link {
    display: block;
}

.footer-logo {
    max-width: 108px;
}

@media (min-width: 768px) {
    .footer-logo {
        max-width: 155px;
    }
}

.footer-text {
    color: #868686;
    font-size: 14px;
    line-height: 1.2;
}

.footer-text p {
    margin-bottom: 25px;
    text-align: center;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-contacts a {
    color: var(--text_color);
    position: relative;
    font-size: 14px;
    line-height: 1.2;
    transition: all 0.3s;
}

.footer-contacts a:hover {
    text-decoration: underline;
    color: var(--links_color);
}

@media (min-width: 768px) {
    .footer-contacts a::after {
        content: '|';
        position: absolute;
        right: -12px;
    }
    
    .footer-contacts a:last-child::after {
        content: '';
    }
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

/* Кнопки в header с background-image */
.header-buttons .btn {
    position: relative;
    padding: 5px 10px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 2px rgb(0 0 0), 1px 1px 1px rgb(0 0 0);
    font-size: 22px;
    font-weight: 800;
    color: #FFF1D2;
}

.header-buttons .btn_secondary {
    background-image: url("../img/small.png");
}

.header-buttons .btn_cta {
    background-image: url("../img/hero-bg-btn.png");
}

@media (min-width: 768px) {
    .header-buttons .btn {
        padding: 10px 25px;
        font-size: 20px;
    }
}

.btn-secondary {
    background-color: var(--secondary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFF1D2;
    -webkit-text-stroke: 1px rgba(114, 80, 52, 0.4);
    text-shadow: 
        0px 0.5px 2px rgba(0, 0, 0, 0.4),
        0px 1px 0px rgba(0, 0, 0, 0.3);
}

/* Убираем background-color для кнопок в header */
.header-buttons .btn-secondary,
.header-buttons .btn-cta {
    background-color: transparent;
}

.btn-cta {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFF1D2;
    background-image: url('../img/hero-bg-btn.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 3px;
    position: relative;
    z-index: 2;
    -webkit-text-stroke: 1px rgba(114, 80, 52, 0.4);
    text-shadow: 1px 1px 2px rgb(0 0 0), 1px 1px 1px rgb(0 0 0);
}

@media (min-width: 768px) {
    .btn-cta {
        font-size: 25px;
    }
}

.btn-cta-large {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFF1D2;
    background-image: url('../img/hero-bg-btn.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    -webkit-text-stroke: 1px rgba(114, 80, 52, 0.4);
    text-shadow: 
        0px 0.5px 2px rgba(0, 0, 0, 0.4),
        0px 1px 0px rgba(0, 0, 0, 0.3);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .btn-cta-large {
        padding: 18px 50px;
        font-size: 20px;
    }
}

.btn-cta-banner {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFF1D2;
    background-image: url('../img/hero-bg-btn.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    -webkit-text-stroke: 1px rgba(114, 80, 52, 0.4);
    text-shadow: 
        0px 0.5px 2px rgba(0, 0, 0, 0.4),
        0px 1px 0px rgba(0, 0, 0, 0.3);
}

.btn-cta-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .btn-cta-banner {
        padding: 18px 50px;
        font-size: 20px;
    }
}

/* === INFO TEXT BLOCK === */
.info-text-block {
    padding: 20px;
    margin: 0px 0;
    background: rgba(255, 146, 59, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 146, 59, 0.15);
    text-align: left;
}

@media (min-width: 768px) {
    .info-text-block {
        margin-top: 50px;
        padding: 40px 50px;
    }
}

.info-text-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ff923b;
    margin-bottom: 20px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .info-text-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

.info-text-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-align: justify;
}

.info-text-paragraph:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .info-text-paragraph {
        font-size: 16px;
        line-height: 1.9;
    }
}

.info-text-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ff923b;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .info-text-subtitle {
        font-size: 22px;
        margin-top: 35px;
        margin-bottom: 20px;
    }
}

/* Unordered Lists (ul) */
.info-text-block ul{
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

@media (min-width: 768px) {
    .info-text-block ul {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 30px;
    }
}

.info-text-block ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.info-text-block  ul li:last-child {
    margin-bottom: 0;
}

.info-text-block  ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff923b, #ff6b1a);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 146, 59, 0.5);
}

@media (min-width: 768px) {
    .info-text-block ul li {
        padding-left: 35px;
        margin-bottom: 15px;
    }
    
    .info-text-block ul li::before {
        width: 10px;
        height: 10px;
        top: 9px;
    }
}

/* Ordered Lists (ol) */
.info-text-block ol {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: ordered-counter;
}

@media (min-width: 768px) {
    .info-text-block ol {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 30px;
    }
}

.info-text-block ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    counter-increment: ordered-counter;
}

.info-text-block ol li:last-child {
    margin-bottom: 0;
}

.info-text-block ol li::before {
    content: counter(ordered-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #ff923b, #ff6b1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 146, 59, 0.4);
}

@media (min-width: 768px) {
    .info-text-block ol li {
        padding-left: 45px;
        margin-bottom: 15px;
    }
    
    .info-text-block ol li::before {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: linear-gradient(135deg, rgba(16, 11, 7, 0.8), rgba(43, 24, 15, 0.8));
    padding: 60px 0;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
}

.testimonials-slider {
    position: relative;
    margin-top: 40px;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .testimonials-track {
        gap: 30px;
    }
}

.testimonial-card {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
    background: rgba(255, 146, 59, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 146, 59, 0.15);
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        padding: 35px;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 40px;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 146, 59, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6ab04c, #78e08f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .testimonial-avatar {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
}

@media (min-width: 768px) {
    .testimonial-name {
        font-size: 20px;
    }
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars .star {
    color: #ffd700;
    font-size: 18px;
}

@media (min-width: 768px) {
    .testimonial-stars .star {
        font-size: 20px;
    }
}

.testimonial-content {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

@media (min-width: 768px) {
    .testimonial-content {
        font-size: 15px;
        line-height: 1.8;
    }
}

.testimonial-content p {
    margin: 0;
}

.testimonial-content strong {
    color: #ff923b;
    font-weight: 600;
    font-style: normal;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 146, 59, 0.9);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonials-nav:hover {
    background: #ff923b;
    transform: translateY(-50%) scale(1.1);
}

.testimonials-prev {
    left: -25px;
}

.testimonials-next {
    right: -25px;
}

@media (min-width: 768px) {
    .testimonials-prev {
        left: -60px;
    }
    
    .testimonials-next {
        right: -60px;
    }
}

@media (max-width: 767px) {
    .testimonials-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-prev {
        left: 10px;
    }
    
    .testimonials-next {
        right: 10px;
    }
}

/* Mobile: Show one card at a time */
@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* === INFO TABLE === */
table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(16, 11, 7, 0.95), rgba(43, 24, 15, 0.95));
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 30px 0;
}

table thead {
    background: linear-gradient(135deg, #ff923b, #ff6b1a);
}

table thead th {
    padding: 18px 15px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFF1D2;
    border-bottom: 2px solid rgba(255, 146, 59, 0.3);
    -webkit-text-stroke: 0.5px rgba(114, 80, 52, 0.4);
    text-shadow: 
        0px 1px 2px rgba(0, 0, 0, 0.4),
        0px 1px 0px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    table thead th {
        padding: 10px 15px;
        font-size: 16px;
    }
}

table tbody tr {
    border-bottom: 1px solid rgba(255, 146, 59, 0.1);
}

table tbody tr:last-child {
    border-bottom: none;
}

table tbody td {
    padding: 15px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    vertical-align: top;
}

@media (min-width: 768px) {
    table tbody td {
        padding: 18px 20px;
        font-size: 15px;
    }
}

table tbody td:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ff923b;
    white-space: nowrap;
}

@media (min-width: 768px) {
    table tbody td:first-child {
        font-size: 16px;
    }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    table {
        margin: 20px 0;
        border-radius: 0;
    }
    
    table thead th {
        font-size: 11px;
        padding: 12px 8px;
        white-space: nowrap;
    }
    
    table tbody td {
        font-size: 11px;
        padding: 12px 8px;
    }
    
    table tbody td:first-child {
        font-size: 12px;
    }
}

/* Tablet view - optimize column widths */
@media (min-width: 768px) and (max-width: 1023px) {
    table thead th:first-child,
    table tbody td:first-child {
        width: 15%;
    }
    
    table thead th:nth-child(2),
    table tbody td:nth-child(2) {
        width: 25%;
    }
    
    table thead th:nth-child(3),
    table tbody td:nth-child(3) {
        width: 30%;
    }
    
    table thead th:nth-child(4),
    table tbody td:nth-child(4) {
        width: 30%;
    }
}

/* Desktop view - optimize column widths */
@media (min-width: 1024px) {
    table thead th:first-child,
    table tbody td:first-child {
        width: 12%;
    }
    
    table thead th:nth-child(2),
    table tbody td:nth-child(2) {
        width: 23%;
    }
    
    table thead th:nth-child(3),
    table tbody td:nth-child(3) {
        width: 32%;
    }
    
    table thead th:nth-child(4),
    table tbody td:nth-child(4) {
        width: 33%;
    }
}

/* === LINKS (GLOBAL) === */
a {
    color: #ff923b;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff6b1a;
}

a:active {
    color: #ff923b;
}

a:visited {
    color: #ff923b;
}

/* Links inside text content */
.info-text-paragraph a,
.info-list a,
.info-list-ordered a,
.testimonial-content a {
    color: #ff923b;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 146, 59, 0.3);
    transition: all 0.3s ease;
}

.info-text-paragraph a:hover,
.info-list a:hover,
.info-list-ordered a:hover,
.testimonial-content a:hover {
    color: #ff6b1a;
    border-bottom-color: #ff6b1a;
}

/* Remove text-decoration from buttons and navigation links */
.header-buttons a,
.header-buttons .btn,
.btn-cta,
.btn-secondary,
.btn-cta-large,
.btn-cta-banner,
.hero-btn,
.sidebar-link,
.aside a,
nav a,
button a {
    text-decoration: none !important;
}

.header-buttons a:hover,
.header-buttons .btn:hover,
.btn-cta:hover,
.btn-secondary:hover,
.btn-cta-large:hover,
.btn-cta-banner:hover,
.hero-btn:hover,
.aside a:hover,
nav a:hover,
button a:hover {
    text-decoration: none !important;
}

.sidebar-link:hover {
    background: rgba(255, 146, 59, 0.05);
   
    text-decoration: none !important;
}

/* === FAQ ACCORDION === */
.faq-section {
    background: linear-gradient(135deg, rgba(16, 11, 7, 0.8), rgba(43, 24, 15, 0.8));
    padding: 60px 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: rgba(255, 146, 59, 0.05);
    border: 1px solid rgba(255, 146, 59, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255, 146, 59, 0.5);
    background: rgba(255, 146, 59, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 15px 20px;
    }
}

.faq-question:hover {
    background: rgba(255, 146, 59, 0.05);
}

.faq-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #faffe5;
    line-height: 1.4;
    flex: 1;
}

@media (max-width: 767px) {
    .faq-question-text {
        font-size: 16px;
    }
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 146, 59, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    color: #ff923b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: rgba(255, 146, 59, 0.4);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
    .faq-answer-content {
        padding: 0 20px 15px;
        font-size: 14px;
    }
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-answer-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.faq-answer-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff923b, #ff6b1a);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 146, 59, 0.5);
}

.faq-answer-content strong {
    color: #ff923b;
    font-weight: 600;
}

/* === SCROLLBAR STYLES === */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #100B07;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 146, 59, 0.3);
    border-radius: 6px;
    border: 2px solid #100B07;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 146, 59, 0.5);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 146, 59, 0.3) #100B07;
}

/* === SEMANTIC REPLACEMENT CLASSES === */
/* Replaced complex Tailwind classes with semantic ones */

.sidebar-content {
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

@media (min-width: 640px) {
    .footer-bottom-content {
        flex-direction: row;
        text-align: left;
        gap: 50px;
    }
}

/* === UTILITY CLASSES === */
.overflow-hidden {
    overflow-x: hidden;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.w-full {
    width: 100%;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.font-bold {
    font-weight: bold;
}

.wood-background {
    background-color: rgb(255 146 59 / 15%);
    background-image:
      /* тень и глубина */
      linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6)),
      /* лёгкий диагональный рисунок */
      repeating-linear-gradient(
        -10deg,                /* угол наклона “досок” */
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 2px,
        rgba(0, 0, 0, 0.2) 4px,
        rgba(0, 0, 0, 0.2) 6px
      ),
      /* градиент для объёма */
      linear-gradient(to bottom, #4c2b15 0%, #2c1508 100%);
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    z-index: 21;
  }

.lexical-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 25px 0;
}

.lexical-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .lexical-table td,
    .lexical-table th {
        padding: 6px;
        font-size: 14px;
    }
}


