:root {

    --primary-orange: #ff923b;           /* Основной оранжевый */
    --primary-orange-dark: #ff6b1a;      /* Темный оранжевый (hover) */
    --primary-orange-light: #ffa85c;     /* Светлый оранжевый */
    
  
    --bg-primary: #100B07;               /* Основной темный фон (sidebar, main) */
    --bg-secondary: #2B180F;             /* Вторичный темный фон (body) */

    /* ═══════════════════════════════════════════════════════════
       ЦВЕТА ТЕКСТА
       ═══════════════════════════════════════════════════════════ */
    --text-primary: #faffe5;             /* Основной текст заголовков (h1-h6, cream) */
    --text-secondary: #f2f2f2;           /* Основной текст контента (light gray) */
    --text-light: rgba(255, 255, 255, 0.9);  /* Светлый текст с прозрачностью */
    --text-dark: #868686;                /* Темно-серый текст */
    
    /* Текст на кнопках */
    --btn-text: #FFF1D2;                 /* Кремовый цвет текста для кнопок */
    /* ═══════════════════════════════════════════════════════════
       АКЦЕНТНЫЕ ЦВЕТА
       ═══════════════════════════════════════════════════════════ */
    /* Ссылки */
    --link-color: #ff923b;               /* Цвет ссылок (оранжевый) */
    --link-hover: #ff6b1a;               /* Цвет ссылок при наведении (темный оранжевый) */
    
    /* CTA кнопки (можно удалить, если не используется) */
    --cta: #43df2d;                      /* Зеленый CTA */
    --cta-text: #ffffff;                 /* Белый текст на CTA */
    
    /* Дополнительные акценты */
    --gold: #ffd700;                     /* Золотой цвет (для звезд, акцентов) */
    --success: #78e08f;                  /* Зеленый (успех, подтверждения) */
    
    
    /* ═══════════════════════════════════════════════════════════
       ОРАНЖЕВЫЙ С ПРОЗРАЧНОСТЬЮ
       ═══════════════════════════════════════════════════════════
       Используется для градиентов, overlays, borders, shadows */
    
    --orange-alpha-90: rgba(255, 146, 59, 0.9);
    --orange-alpha-50: rgba(255, 146, 59, 0.5);
    --orange-alpha-40: rgba(255, 146, 59, 0.4);
    --orange-alpha-30: rgba(255, 146, 59, 0.3);
    --orange-alpha-20: rgba(255, 146, 59, 0.2);
    --orange-alpha-15: rgba(255, 146, 59, 0.15);
    --orange-alpha-10: rgba(255, 146, 59, 0.1);
    --orange-alpha-08: rgba(255, 146, 59, 0.08);
    --orange-alpha-05: rgba(255, 146, 59, 0.05);
    
    
    /* ═══════════════════════════════════════════════════════════
       ЧЕРНЫЙ С ПРОЗРАЧНОСТЬЮ
       ═══════════════════════════════════════════════════════════
       Используется для теней, overlays, затемнений */
    
    --black-alpha-40: rgba(0, 0, 0, 0.4);
    --black-alpha-30: rgba(0, 0, 0, 0.3);
    --black-alpha-20: rgba(0, 0, 0, 0.2);
    
    
    /* ═══════════════════════════════════════════════════════════
       БЕЛЫЙ С ПРОЗРАЧНОСТЬЮ
       ═══════════════════════════════════════════════════════════
       Используется для текста, borders, highlights */
    
    --white-alpha-95: rgba(255, 255, 255, 0.95);
    --white-alpha-90: rgba(255, 255, 255, 0.9);
    --white-alpha-80: rgba(255, 255, 255, 0.8);
    --white-alpha-20: rgba(255, 255, 255, 0.2);
    --white-alpha-10: rgba(255, 255, 255, 0.1);
    
    
    /* ═══════════════════════════════════════════════════════════
       ТЕМНЫЕ ФОНЫ С ПРОЗРАЧНОСТЬЮ
       ═══════════════════════════════════════════════════════════
       Используется для модальных окон, overlays, карточек */
    
    --dark-bg-alpha-95: rgba(16, 11, 7, 0.95);
    --dark-bg-alpha-80: rgba(16, 11, 7, 0.8);
    --brown-bg-alpha-95: rgba(43, 24, 15, 0.95);
    --brown-bg-alpha-80: rgba(43, 24, 15, 0.8);
    
    
    /* ═══════════════════════════════════════════════════════════
       КОРИЧНЕВЫЕ ОТТЕНКИ
       ═══════════════════════════════════════════════════════════
       Используется для теней текста, borders, акцентов */
    
    --brown-shadow: rgba(114, 80, 52, 0.4);    /* Тень для текста кнопок */
    --brown-dark: rgba(101, 67, 33, 0.5);      /* Темно-коричневый */
    --brown-darker: rgba(139, 69, 19, 0.5);    /* Очень темный коричневый */
    
    
    /* ═══════════════════════════════════════════════════════════
       LEGACY ПЕРЕМЕННЫЕ (ДЛЯ СОВМЕСТИМОСТИ)
       ═══════════════════════════════════════════════════════════
       Старые переменные переназначены на новые цвета системы.
       Это обеспечивает совместимость со старыми файлами. */
    
    --top_nav: var(--bg-primary);           /* #100B07 */
    --side_nav: var(--bg-primary);          /* #100B07 */
    --side_nav_text_bg: var(--orange-alpha-15);  /* rgba(255, 146, 59, 0.15) */
    --side_nav_text: var(--text-primary);   /* #faffe5 */
    --bg_color: var(--bg-primary);          /* #100B07 */
    --text_color: var(--text-secondary);    /* #f2f2f2 */
    --primary: var(--primary-orange);       /* #ff923b */
    --secondary: var(--primary-orange-dark); /* #ff6b1a */
    --head: #9F99CB;
    --links_color: var(--link-color);       /* #ff923b */
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

/**
 * Pistolo Casino Landing Page - Components CSS
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #9f99cb #100B07;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text_color, #f2f2f2);
    background-color: #0F0D1C;
    overflow-x: hidden;
}

/* Link Reset */
a {
    text-decoration: none;
    color: inherit;
}

/* Button Reset */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Image Utilities */
main img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    padding: 15px 0;
    margin: 0 auto;
}

/* List Reset */
ul, ol {
    list-style: none;
}

/* Figure Reset */
figure {
    margin: 0;
}

/* Flexbox */
.flex {
    display: flex;
}

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

.flex-row {
    flex-direction: row;
}

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

.justify-center {
    justify-content: center;
}

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

.gap-6 {
    gap: 6px;
}

.gap-8 {
    gap: 8px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

@media (min-width: 768px) {
    .md\:gap-20 {
        gap: 20px;
    }
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) {
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}


/* ========================================================================
   3. POSITION UTILITIES (from app.css)
   ======================================================================== */

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.-bottom-5 {
    bottom: -5px;
}

.-right-5 {
    right: -5px;
}


/* ========================================================================
   4. SPACING & DIMENSIONS (from app.css)
   ======================================================================== */

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

/* Width/Height */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.w-12 {
    width: 12px;
}

.w-19 {
    width: 19px;
}

.h-12 {
    height: 12px;
}

.h-19 {
    height: 19px;
}

.h-65 {
    height: 65px;
}

.h-105 {
    height: 105px;
}

@media (min-width: 768px) {
    .md\:h-105 {
        height: 105px;
    }
    
    .md\:w-19 {
        width: 19px;
    }
    
    .md\:h-19 {
        height: 19px;
    }
}

/* Padding */
.px-7 {
    padding-left: 7px;
    padding-right: 7px;
}

.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.py-9 {
    padding-top: 9px;
    padding-bottom: 9px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

@media (min-width: 768px) {
    .md\:px-12 {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .md\:py-15 {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .md\:px-40 {
        padding-left: 40px;
        padding-right: 40px;
    }
}


/* ========================================================================
   5. Z-INDEX UTILITIES (from app.css)
   ======================================================================== */

.z-2 {
    z-index: 2;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-21 {
    z-index: 21;
}


/* ========================================================================
   6. BORDER & BACKGROUND (from app.css)
   ======================================================================== */

.rounded-8 {
    border-radius: 8px;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-12 {
    border-radius: 12px;
}

.bg-black\/20 {
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-transparent {
    background-color: transparent;
}


/* ========================================================================
   7. TYPOGRAPHY (from app.css)
   ======================================================================== */

.uppercase {
    text-transform: uppercase;
}

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

.text-10 {
    font-size: 10px;
}

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text-16 {
    font-size: 16px;
}

.text-18 {
    font-size: 18px;
}

.text-22 {
    font-size: 22px;
}

.font-b {
    font-weight: 700;
}

.font-sb {
    font-weight: 600;
}

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

.text-white {
    color: white;
}

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

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

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

@media (min-width: 768px) {
    .md\:text-16 {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .lg\:text-32 {
        font-size: 32px;
    }
}

@media (min-width: 1280px) {
    .xl\:text-37 {
        font-size: 37px;
    }
}


/* ========================================================================
   8. TRANSITIONS (from app.css)
   ======================================================================== */

.transition-all {
    transition: all 0.3s ease;
}


/* ========================================================================
   9. SIDEBAR STYLES (from sidebar.css)
   ======================================================================== */

.aside {
    pointer-events: none;
    position: fixed;
    top: -20px;
    bottom: 0;
    z-index: 10;
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
    --tw-translate-y: 10%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    overflow: auto;
    background-color: var(--side_nav);
    padding: 20px 15px;
    color: var(--side_nav_text);
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    transition: transform .2s, width .2s ease-in-out, opacity .2s ease-in-out;
}

.aside::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .aside {
        pointer-events: auto;
        bottom: auto;
        top: 70px;
        left: 0;
        right: auto;
        margin-top: 0;
        margin-bottom: 0;
        height: calc(100vh - 70px);
        width: auto;
        max-width: 240px;
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        opacity: 1;
    }
    
    /* RTL support - sidebar on right side */
    [dir="rtl"] .aside {
        left: auto;
        right: 0;
    }
}

@media (max-width: 768px) {
    .aside {
        height: calc(100dvh - 140px);
    }
}

.aside span {
    visibility: visible;
    white-space: nowrap;
    transition: all .3s ease-in-out;
    max-width: 500px;
    opacity: 1;
}

.aside ul {
    overflow: hidden;
}

.aside ul li a {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    font-weight: 700;
    font-style: italic;
}


.aside ul li a span {
    position: relative;
    z-index: 10;
    width: 240px;
}

.aside ul li a figure {
    position: relative;
    z-index: 10;
}

.aside ul li a img {
    height: 20px;
    min-width: 20px;
}

.aside.active {
    pointer-events: auto;
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1;
    z-index: 999;
    border-radius: 0;
}

@media (min-width: 768px) {
    .aside.collapsed {
        max-width: 0;
        width: 0;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        transition: all .3s ease-in-out;
    }
    
    .aside.collapsed span {
        visibility: hidden;
        padding-right: 0;
        max-width: 0;
        transition: all .3s ease-in-out;
        opacity: 0;
    }
    
    .aside.collapsed .hero-section-sidebar {
        display: none;
    }
    
    .aside.collapsed .sidebar-item {
        display: none;
    }
    
    .aside.collapsed ul li a {
        justify-content: center;
        padding-left: 8px;
        padding-right: 8px;
    }
}


/* ========================================================================
   10. HEADER STYLES (from header.css)
   ======================================================================== */

.header {
    background-color: var(--top_nav);
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.header_hamburger {
    border-width: 2px;
    border-color: #faffe5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    position: relative;
    background: transparent;
    cursor: pointer;
}

.header_hamburger svg {
    width: 32px;
    height: 32px;
}

.header_hamburger svg path,
.header_hamburger svg rect {
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.header_hamburger svg .arrow {
    opacity: 1;
    transform-origin: center;
}

.header_hamburger.collapsed svg .bar1,
.header_hamburger.active svg .bar1 {
    transform: translateX(0);
}

.header_hamburger.collapsed svg .bar2,
.header_hamburger.active svg .bar2 {
    opacity: 2;
    transform: translateX(25%);
}

.header_hamburger.collapsed svg .bar3,
.header_hamburger.active svg .bar3 {
    transform: translateX(0);
}

.header_hamburger.collapsed svg .arrow,
.header_hamburger.active svg .arrow {
    transform: translateX(0px) scaleX(-1);
    opacity: 1;
}

.header_popupbtns {
    display: none;
    gap: 10px;
}

@media (min-width: 768px) {
    .header_popupbtns {
        display: flex;
        align-items: center;
    }
}


/* === HEADINGS (H1-H6) === */
h1, h2, h3, h4, h5, h6 {
    color: #9F99CB;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
}

/* Desktop sizes */
h1, h1.section-title {
    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;
    }
}

/* Main content: Poppins Regular (headings/buttons override with 700) */
.main-content,
.main-content *,
main,
main * {
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    color: #9F99CB;
    font-weight: 700;
    font-style: italic;
}

p{
    margin: 10px 0;
}



.main-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 70px;
}

/* Когда sidebar (aside.js-popup) свернут — у main нет отступа */
.aside.js-popup.collapsed + .main-content {
    margin-left: 0;
    margin-right: 0;
}

/* === 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;
}

.header-buttons .btn {
    background: radial-gradient(95.91% 58.63% at 50% 100%, #FCA04F 1.43%, #433A79 50.71%, #272147 100%) padding-box,
                radial-gradient(100% 100% at 56.59% 100%, #FDB981 0%, #4D438A 100%) border-box;
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
    border-radius: 16px;
    box-shadow: 0px 10px 10px -8px #1D1936B8, 0px 2px 0px 0px var(--neutral700, #272147);
    padding: 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgb(0 0 0), 1px 1px 1px rgb(0 0 0);

}

/* 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: #0f0d1c;
        padding: 15px;
    }
    
    .header-buttons .btn {
        width: 50%;
        flex: 1;
        padding: 10px 0;
        font-size: 12px;
        text-transform: uppercase;
        margin: 0;
        overflow-wrap: break-word;
    }
    
    .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: 160px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Inline SVG logo (when no logo.filename from CMS) */
.header-logo-section .logo-svg,
.header-logo-section a {
    color: var(--side_nav_text, #faffe5);
}
.logo-svg {
    width: 160px;
    height: 40px;
    max-height: 40px;
    vertical-align: middle;
}
.header-logo-section .logo-svg {
    flex-shrink: 0;
}

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

/* === SIDEBAR === */
.sidebar,
.sidebar *,
aside,
aside * {
    font-family: 'Poppins', sans-serif;
}

.aside span,
.aside ul li a span,
.sidebar-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    font-size: 18px;
}

.sidebar {
    background-color: rgb(29 25 54);
    
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgb(39 33 71);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #4d438a80;
}

.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;
    max-width: 100%;
    overflow: hidden;
    background-image: url('../img/hero-mob.webp');
    background-size: cover;
    background-position: top 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;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
    background: rgb(16 11 7 / 78%);
    border-radius: 12px;
}

.hero-section-sidebar .hero-subtitle {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    font-weight: 700;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 5px;
    text-shadow: 1px 1px 2px rgb(0 0 0), 1px 1px 1px rgb(0 0 0);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
}

.hero-section-sidebar .hero-title {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

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

.hero-section-sidebar .hero-btn,
.hero-btn {
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    background: url('../img/bnt-bg.webp') no-repeat center, radial-gradient(100% 100% at 56.59% 100%, #FCEDCD 0%, #F8D181 34%, #FC8003 92%);
    background-size: cover, 100% 100%;
    box-shadow: 0px 10px 10px -8px #1D1936B8, 0px 2px 0px 0px var(--red700, #973C35);
    border-radius: 16px;
    transition: all 0.3s ease;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #1C1000;
}

.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: 5px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* === SECTIONS === */
.hero-section *:not(.hero-title),
.hero-content *:not(.hero-title) {
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 350px;
    width: 100%;
    max-width: 100%;

    overflow: hidden;
    background-image: linear-gradient(0deg, #0F0D1C, transparent), url('../img/hero-mob.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .hero-section {
        background-image: linear-gradient(0deg, #0F0D1C, transparent), url('../img/hero.webp');
        min-height: 350px;
        padding: 20px 30px;
        align-items: top center;
    }
}

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

.main-content {
    padding-top: 60px;
}

.hero-content {
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 767px){
    .hero-section {
        align-items: flex-end;
        justify-content: center;
    }
    .hero-content {
        text-align: center;
        background: none;
        position: relative;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 15px;
    }
    .hero-content .hero-subtitle,
    .hero-content .hero-title,
    .hero-content .hero-bonus {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    .hero-section-sidebar .hero-btn, .hero-btn {
        margin: 0 auto;
        width: 100%;
        padding: 15px;
        font-size: 20px;
    }
}
@media (min-width: 768px) {
    .hero-content {
        padding: 40px 50px;
        max-width: 550px;
        left: 0;
        right: auto;
    }
}

/* RTL - keep hero-content on the left side */
[dir="rtl"] .hero-content {
    left: 0;
    right: auto;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 5px;
    text-shadow: 1px 1px 2px rgb(0 0 0), 1px 1px 1px rgb(0 0 0);
    max-width: 100%;
}

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

.hero-title {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 5px;
    text-shadow: 1px 1px 2px rgb(0 0 0), 1px 1px 1px rgb(0 0 0);
    max-width: 100%;
}

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

.hero-bonus {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    color: #FFDE93;
    text-shadow: 1px 1px 2px rgb(0 0 0), 1px 1px 1px rgb(0 0 0);
    max-width: 100%;
}

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


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

@media (min-width: 768px) {
    .hero-btn {
        padding: 1rem 4rem;
        font-size: 1.2rem;
    }
}

.section {
    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: 700;
    font-style: italic;
    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: 17px;
        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: 700;
    font-style: italic;
    position: relative;
    z-index: 2;
    color: #9F99CB;
    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: 700;
    font-style: italic;
    color: #9F99CB;
    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: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9F99CB;
    margin-bottom: 0;
    font-family: 'Poppins', 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-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 {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.footer-payments img {
    padding: 5px 0;
}

@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;
    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;
}

.footer-logo-link .logo-svg {
    color: var(--text_color, #f2f2f2);
    height: 28px;
    width: auto;
    max-width: 108px;
}

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

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

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

.footer-payments {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-payments-methods {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 28, 48, 0.9);
    border-radius: 12px;
}

.footer-payments-compliance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}



@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: 700;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .info-text-block {
        padding: 20px;
    }
}

.info-text-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: #9F99CB;
    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: 'Poppins', 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: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: #9F99CB;
    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: 'Poppins', 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: 'Poppins', 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: 'Poppins', 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: 'Poppins', 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: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: #9F99CB;
    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: 'Poppins', 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: 700;
    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, #0f0d1c, #1e1a3a);
    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: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    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: 'Poppins', 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: 'Poppins', sans-serif;
    font-weight: 700;
    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: 400;
    font-style: normal;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff6b1a;
}

a:active {
    color: #ff923b;
}

/* Links inside text content */
.info-text-paragraph a,
.info-list a,
.info-list-ordered a,
.testimonial-content a {
    color: #ff923b;
    font-weight: 400;
    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;
}

.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;
}

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

/* === 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: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: #9F99CB;
    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: 'Poppins', 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: 700;
}

/* === 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);
}

/* === 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;
    }
}

/* === SEMANTIC-SPECIFIC (wood, lexical table) === */
.wood-background {
    background: linear-gradient(to top, rgb(43 37 80), rgb(12 11 23));
    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;
    }
}


/* ========================================================================
   RTL SUPPORT
   ======================================================================== */

/* Section description RTL */
[dir="rtl"] .section-description {
    text-align: right;
}

/* Info text block RTL */
[dir="rtl"] .info-text-block {
    text-align: right;
}

[dir="rtl"] .info-text-paragraph {
    text-align: right;
}

/* Unordered Lists RTL */
[dir="rtl"] .info-text-block ul {
    padding-right: 0;
    padding-left: 0;
}

[dir="rtl"] .info-text-block ul li {
    padding-left: 0;
    padding-right: 30px;
}

@media (min-width: 768px) {
    [dir="rtl"] .info-text-block ul li {
        padding-right: 35px;
        padding-left: 0;
    }
}

[dir="rtl"] .info-text-block ul li::before {
    left: auto;
    right: 0;
}

/* Ordered Lists RTL */
[dir="rtl"] .info-text-block ol {
    padding-right: 0;
    padding-left: 0;
}

[dir="rtl"] .info-text-block ol li {
    padding-left: 0;
    padding-right: 40px;
}

@media (min-width: 768px) {
    [dir="rtl"] .info-text-block ol li {
        padding-right: 45px;
        padding-left: 0;
    }
}

[dir="rtl"] .info-text-block ol li::before {
    left: auto;
    right: 0;
}
/* RTL-блоке */
[dir="rtl"] [style*="text-align: left"] {
    text-align: inherit !important;
}

strong,b {
    font-weight: 700;
}

/* --- Slots Block Styles --- */
.slots-wrapper {
  margin: 30px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.slot-card {
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1;
}
.slot-image {
  border-radius: 6px;
  overflow: hidden;
}
.slot-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.slot-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(100% - 16px);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: #450C88;
  color: #FFFFFF;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.slot-card:hover .slot-name{
  opacity: 1;
}
.slot-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
@media (max-width: 600px) {
  .slots-grid {
    gap: 10px;
  }
  .slot-name {
    font-size: 12px;
  }
}
