@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Anton&display=swap');

:root {
    --default-color: #1a5f3f;
    --default-lighten-color: #2ecc71;
    --default-catifsh-color: rgb(0, 0, 0);
    --default-header-color: #0d3d26;
    --default-footer-color: #0a2f1f;
    --btn-text: #fff;
    --dark-bg-color: #0a2f1f;
    --cms-page-dir-sign: 1;
    
    /* Казино цвета */
    --casino-gold: #ffd700;
    --casino-gold-dark: #ffb700;
    --casino-gold-light: #ffed4e;
    --casino-red: #ff4444;
    --casino-red-dark: #cc0000;
    --casino-purple: #9d4edd;
    --casino-purple-dark: #7b2cbf;
    --casino-neon-green: #00ff88;
    --casino-neon-blue: #00d4ff;
    --casino-bg-dark: #0a0a0f;
    --casino-bg-gradient: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
}

*, :after, :before {
    box-sizing: border-box
}

/* Цвет выделения текста */
::selection {
    background-color: var(--casino-purple);
    color: #ffffff;
}

::-moz-selection {
    background-color: var(--casino-purple);
    color: #ffffff;
}

li, ol, ol[class], ul, ul[class] {
    margin: 0;
    padding: 0
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
    margin: 0
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    background-color: #161c24;
}

/* Стили блокировки скролла удалены */

li, ol[class], ul[class] {
    list-style: none
}

a {
    text-decoration: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    display: block;
    max-width: 100%
}

button, input, select, textarea {
    border: none;
    font: inherit
}

[role=button], button {
    cursor: pointer
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

body {
    background: var(--casino-bg-gradient);
    background-attachment: fixed;
    color: rgb(255, 255, 255);
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 1.4;
    position: relative;
}

/* Упрощенный эффект мерцания - только статичные частицы без анимации */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(255, 215, 0, 0.15), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(255, 68, 68, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(157, 78, 221, 0.1), transparent);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    will-change: auto;
}

@media (max-width:768px) {
    body {
        font-size: 14px;
        overflow-x: hidden
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1220px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.header > .container {
    max-width: 100%;
}

.header {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 10, 46, 0.95) 100%);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--casino-gold), transparent) 1;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.header-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    min-height: 50px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo__link {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.header-logo__img {
    height: auto;
    width: 110px;
    max-width: 200px;
    display: block;
    vertical-align: middle;
}

.header-logo__text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-light) 50%, var(--casino-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.header-logo__leaf {
    color: #2ecc71;
    position: relative;
}

.header-search {
    flex: 1;
    max-width: 400px;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.header-search__input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.header-search__input::placeholder {
    color: #888;
}

.header-search__input:focus {
    border-color: #2ecc71;
    background: #2f2f2f;
}

.header-search__icon {
    position: absolute;
    right: 12px;
    color: #888;
    pointer-events: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.menu-mob-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-mob-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-mob-btn::before,
.menu-mob-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-mob-btn::before {
    top: 10px;
}

.menu-mob-btn::after {
    bottom: 10px;
}

.menu-mob-btn.-toggle span {
    opacity: 0;
}

.menu-mob-btn.-toggle::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-mob-btn.-toggle::after {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

.btn {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    margin: 0;
}

.btn-register {
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    will-change: transform;
    transform: translateZ(0);
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--casino-gold-light) 0%, var(--casino-gold) 100%);
    transform: translateY(-2px) scale(1.05) translateZ(0);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.5);
    will-change: transform;
}

.btn-login {
    background: transparent;
    color: var(--casino-gold);
    border: 2px solid var(--casino-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    will-change: transform;
    transform: translateZ(0);
}

.btn-login:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 183, 0, 0.2) 100%);
    border-color: var(--casino-gold-light);
    color: var(--casino-gold-light);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.btn a {
    color: inherit;
    text-decoration: none;
    display: block;
}


.main {
    background: transparent;
    color: #e5e6ec;
    position: relative;
    z-index: 1;
    contain: layout style paint;
    will-change: scroll-position;
}

/*POST*/
.post-entry p:not(:last-child) {
    margin-bottom: 24px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    line-height: 1.2;
    margin-bottom: 14px
}

.post-entry h1 {
    font-size: 32px
}

.post-entry h2 {
    font-size: 28px
}

.post-entry h3 {
    font-size: 24px
}

.post-entry h4 {
    font-size: 20px
}


.post-entry table {
    font-size: 14px;
    margin-bottom: 24px;
    width: 100%;
	display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    border: 1px solid rgba(255,255,255,0.08);
    background: #12171f; /* минималистичный тёмный фон */
    border-radius: 8px;
    box-shadow: none;
}

.post-entry table th {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(157, 78, 221, 0.25) 100%);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--casino-gold);
    position: relative;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.4), inset 0 0 20px rgba(255, 215, 0, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.post-entry table th::after { content: none; }

.post-entry table td {
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #cfd5e3;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    transition: background .2s ease;
}

.post-entry table tr:nth-child(even) { background: rgba(255,255,255,0.02); }

.post-entry table tr:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(157, 78, 221, 0.1) 100%);
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
}

.post-entry table tr:last-child td {
    border-bottom: none;
}

@media (min-width: 769px) {
    .post-entry table {
        display: table;
        margin-left: auto;
        margin-right: auto;
        width: auto;
        max-width: 100%;
    }
}

.post-entry table tr:first-child {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(157, 78, 221, 0.2) 100%) !important;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3) !important;
}

.post-entry table tr:first-child td {
    color: #fff;
    font-weight: 700;
    border: none;
    background: transparent;
    box-shadow: none;
}

.post-entry table tr:nth-child(odd) { background: transparent; }

.post-entry table tr td {
    padding: 16px 20px
}

.post-entry .wp-block-image {
    margin-bottom: 24px
}

.post-entry .wp-block-image img {
	border-radius:15px;
    margin: 0 auto;
}

.post-entry img {
    height: auto !important;
}

.post-entry ol {
    counter-reset: num;
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px
}

.post-entry ol li {
    margin: 0 0 16px;
    padding: 0;
    position: relative
}

.post-entry ol li:before {
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
    border-radius: 50%;
    color: #000;
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
    will-change: transform;
    transform: translateZ(0);
}

.post-entry ul {
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px;
    padding: 0;
}

.post-entry ul li {
    margin: 0 0 16px;
    padding: 0;
    position: relative;
}

.post-entry ul li:before {
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 8px;
    left: -20px;
    position: absolute;
    top: 8px;
    width: 8px;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
    transform: translateZ(0);
}

/* WPFront Scroll Top Styles */
#wpfront-scroll-top-container {
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    width: 56px !important;
    height: 56px !important;
    background-color: #22c55e !important; /* fallback фон, если нет .text-holder */
    border-radius: 999px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 99999 !important;
    cursor: pointer !important;
}



#wpfront-scroll-top-container div.text-holder {
    width: 56px !important;
    height: 56px !important;
    border-radius: 999px !important;
    background-color: #22c55e !important; /* зелёная кнопка чата */
    border: none !important;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35) !important;
    color: transparent !important; /* скрываем текст, если есть */
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#wpfront-scroll-top-container div.text-holder:hover {
    background-color: #16a34a !important;
    box-shadow: 0 8px 22px rgba(34, 197, 94, 0.45) !important;
}

#wpfront-scroll-top-container div.text-holder::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 26px 26px !important;
    /* белая иконка чата внутри зелёного круга */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M20 2H4a2 2 0 0 0-2 2v14l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z'/%3E%3C/svg%3E") !important;
}

/* Псевдо-элемент непосредственно на контейнере — на случай иной разметки плагина */
#wpfront-scroll-top-container::before {
    content: "" !important;
    position: absolute !important;
    width: 56px !important;
    height: 56px !important;
    left: 0; top: 0;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 26px 26px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M20 2H4a2 2 0 0 0-2 2v14l4-4h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z'/%3E%3C/svg%3E") !important;
}


#wpfront-scroll-top-container i { display: none !important; }
#wpfront-scroll-top-container i:hover { color: inherit !important; }

.wp-block-quote{
    margin-bottom:1.2rem;
    background-color: var(--default-color);
    color: #FFFFFF;
    padding:40px;
    padding-left:80px;
    position: relative;
        border-radius: 8px;
}
.wp-block-quote::before{
    position: absolute;
    left:20px;
    top:20px;
    width:40px;
    height:40px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='40px' height='40px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
}

@media(max-width:580px){
    .wp-block-quote{
        padding:24px;
        padding-left:56px;
    }
    .wp-block-quote::before{
        top:16px;
        left:16px;
        width:24px;
        height:24px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='24px' height='24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
    }
}

/*AUTHOR*/
.author-block {
    grid-gap: 30px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .078);
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-bottom: 32px;
    padding: 32px
}

@media (max-width:768px) {
    .author-block {
        grid-gap: 20px;
        grid-template-columns: 1fr;
        padding: 20px 16px
    }
}

.author-block .author-block__photo img {
    border-radius: 50%;
    height: 168px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 168px
}

.author-block .author-block__top-grid {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: 1fr max-content;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .author-block .author-block__top-grid {
        grid-gap: 20px;
        grid-template-columns: 1fr
    }
}

.author-block .author-block__line {
    color: #828282;
    font-size: 18px
}

.author-block .author-block__name {
    color: #2d2d2c;
    font-size: 24px;
    font-weight: 700
}

.author-block .author-block__socials {
    display: flex;
    gap: 10px
}

.author-block .author-block__socials .author-block__socials__item {
    background: #f2f2f2;
    border-radius: 4px;
    display: inline-block;
    height: 32px;
    overflow: hidden;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item:hover {
    opacity: .86
}

.author-block .author-block__socials .author-block__socials__item i {
    display: inline-block;
    height: 32px;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item i.icon-fb {
    background: url(../assets/img/icon-fb.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-tw {
    background: url(../assets/img/icon-tw.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-email {
    background: url(../assets/img/icon-email.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__text {
    color: #2d2d2c;
    font-size: 18px
}

.author-block .author-block__text p:not(:last-child) {
    margin-bottom: 20px
}

/*FAQ*/
.faq-block {
    padding: 60px 0;
    margin-top: 40px;
    background: #161c24;
    border-radius: 16px;
}

.faq-block .faq-block--title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-light) 50%, var(--casino-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    position: relative;
    will-change: auto;
}

.faq-block .faq-block--subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
    margin-top: -8px;
    text-align: center;
    font-weight: 400;
}

.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 12px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.8) 0%, rgba(15, 34, 96, 0.8) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--casino-gold), var(--casino-purple)) 1;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    padding: 24px 32px;
    position: relative;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header:hover::before {
    left: 100%;
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5), 0 0 40px rgba(157, 78, 221, 0.3);
    transform: translateY(-3px) scale(1.02);
    border-image: linear-gradient(135deg, var(--casino-gold-light), var(--casino-purple)) 1;
}

.faq-block .faq-block--items .faq-block--items__item .title-faq {
    max-width: 85%;
    width: 85%
}

.faq-block .faq-block--items .faq-block--items__item .title-faq:after {
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
    border-radius: 8px;
    content: "+";
    height: 36px;
    width: 36px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    border: 2px solid var(--casino-gold-light);
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
    will-change: transform, box-shadow;
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
    display: none
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(157, 78, 221, 0.2) 100%);
    color: #ffffff;
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6), 0 0 50px rgba(157, 78, 221, 0.4);
    transform: translateY(-2px);
    border-image: linear-gradient(135deg, var(--casino-gold-light), var(--casino-purple)) 1;
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header .title-faq:after {
    content: "−";
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-red) 100%);
    color: #fff;
    border: 2px solid var(--casino-gold-light);
    transform: translateY(-50%) rotate(180deg) translateZ(0);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 68, 68, 0.5);
    will-change: transform;
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
    display: block;
    padding: 32px;
    background: #1d2839;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 12px 12px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    backdrop-filter: none;
    box-shadow: none;
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content p:not(:last-child) {
    margin-bottom: 16px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a {
    color: #04db14;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    font-weight: 600;
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a:hover {
    color: #3f03b2;
    border-bottom-color: #3f03b2;
    text-shadow: 0 0 8px rgba(63, 3, 178, 0.5);
}

/*WP STYLE*/
.wp-block-media-text .wp-block-media-text__media {
    float: right;
    max-width: 50%;
    margin-left: 20px;
    margin-bottom: 20px;
}

.alignright{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .menu-mob-btn {
        display: flex !important;
        position: relative;
        right: auto;
        top: auto;
    }
    
    .header-wrap {
        position: relative;
    }
}

.alignright {
    max-width: 100%;
    margin: 16px auto 24px auto;
    float: none;
    order: 2;
}

.alignleft{
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
/*footer*/
footer {
    background: #090f1e;
    color: #fff;
	padding: 0 20px;
}
.logocontainer {
	display: flex;
    align-items: center;
    margin-bottom: 45px;
}
.logo-container {
	display: flex;
    width: 48px;
    height: 19px;
}
.logocontainer-line {
	margin-left: 20px;
    margin-right: 18px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .2) 9.92%, rgba(0, 0, 0, 0) 100%);
}

.footermain {
	display: flex;
    align-items: flex-start;
    width: 100%;
}
@media (max-width: 1200px) {
    .footermain {
        flex-wrap: wrap;
    }
}
.footersupport {
	width: 100px;
}
.footersupport strong {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.footersupport small {
	color: #8692aca6;
    font-size: 10px;
}

.footer-clmn {
	margin-left: 80px;
}
@media (max-width: 1299px) {
    .footer-clmn {
        margin-left: 35px;
    }
}
.footer_clmn-left {
	max-width: 320px;
    width: 100%;
}

.footer-clmn strong {
	font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #5a647a;
    margin-bottom: 40px;
    display: block;
}

.footer-link ul{
	margin-top: 10px;
}

.footer-link ul li {
	margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-link ul li small {
	color: #8692aca6;
    font-size: 13px;
    font-weight: 400;
    display: block;
    max-width: 207px;
    width: 100%;
}

.footer-link ul li a {
	color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 300;
    position: relative;
    transition: .3s;
}

.footer-app {
	display: flex;
    align-items: flex-start;
    margin-left: auto;
}
.footer-app-row {
	position: relative;
}
.footer_app {
	align-items: center;
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 4px 15px;
    transition: .3s;
}

.footer_app_for_apple {
	width: 158px;
}
.footer_app_fl {
	display: flex;
    align-items: center;
}

.icon_apple svg {
    fill: #fff;
    width: 24px;
}

.footer_app_wrap {
    margin-left: 10px;
}

.footer_app_wrap small {
    color: hsla(0, 0%, 100%, .5);
    font-size: 10px;
    display: block;
}

.footer_app_wrap span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.footer_app_arrow {
    align-items: center;
    background-color: #464646;
    border-radius: 100%;
    display: flex;
    height: 14px;
    justify-content: center;
    width: 14px;
}

.footer_app_arrow svg {
    fill: #fff;
    max-width: 6px;
    transform: rotate(-90deg);
}

.footer_app_for_android {
    margin-top: 8px;
}
.icon_android svg, .icon_windows svg {
    width: 28px;
}

.footer_for_windows {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    margin-left: 8px;
    padding: 10px;
    justify-content: flex-start;
}

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

.footer_item {
    margin-top: 50px;
}

.separator {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .2) 9.92%, transparent);
    height: 1px;
    width: 100%;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    width: 100%;
}
.footer_socials {
    display: flex;
    align-items: center;
}

.footer_socials a {
    border-radius: 10px;
    height: 35px;
    justify-content: center;
    margin-left: 10px;
    transition: .3s ease-out;
    width: 35px;
    display: flex;
    align-items: center;
}

.footer_socials a svg {
    max-width: 65%;
}

.telegram_link {
    background: linear-gradient(240.2deg, #0fb1d6, #08c 61.34%);
}

.x_link {
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.facebook_link {
    background: linear-gradient(135deg, #82a4e9, #4267b2);
}

.instagram_link {
    background: linear-gradient(214.99deg, #7e2bf4 7.65%, #ed146e 51.93%, #ffc90c 95.29%);
}

.footer_brands {
    display: flex;
    align-items: center;
}

.footer_brand {
    margin: 0 25px;
}

@media (max-width: 1200px) {
    .footer_brand {
        margin: 0 10px;
    }
}

.footer_brands svg {
    height: 25px;
}

.footer-lang_fl {
    display: flex;
    align-items: center;
}

.head-lang {
    position: relative;
    display: flex;
    z-index: 99;
}

.head-lang_block {
    cursor: pointer;
    align-items: center;
    background-color: rgba(26, 95, 63, .3);
    border-radius: 6px;
    display: flex;
    height: 24px;
    justify-content: space-between;
    padding: 0 8px;
    transition: .3s;
    width: 64px;
    position: relative;
}

footer .head-lang_block {
    height: 35px;
    padding: 0 8px;
}

footer .header-button {
    width: 35px;
    height: 35px;
    background: linear-gradient(92.58deg, #0d3d26 0%, rgba(13, 61, 38, .6) 99.71%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 0 10px;
}

.partners {
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    justify-content: space-between;
    padding: 30px 0;
    gap: 13px;
}

@media (max-width: 1200px) {
    .footer__partners {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 5px;
    }
}

.partners svg {
    height: 22px;
    transition: 0.3s;
}

.partners svg .svg__color {
    opacity: 0;
    transition: 0.3s;
}

.partners svg:hover .svg__color {
    opacity: 1;
}

.partners svg:hover .svg__mono {
    opacity: 0;
}

.partners svg .svg__mono {
    transition: 0.3s;
}

.footer_descr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer_descr p {
    color: #34405e;
    font-size: 10px;
    font-weight: 700;
    text-align: left;
}

.footer_plus {
    display: flex;
    align-items: center;
}

.eighteen {
    color: #77829b66;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
}
/*footer mobile styles*/

@media (max-width: 970px) {
    .footer_content {
        flex-wrap: wrap;
        position: relative;
		justify-content: center;
    }
}

@media (max-width: 570px) {
    .footer_brands {
        flex-wrap: wrap;
        grid-gap: 10px;
		justify-content: center;
        width: 100%;
        margin-top: 35px;
        margin-bottom: 25px;
    }
	.footer_brand {
		margin: 0 5px;
	}
	.footer_brand svg {
		height: 18px;
	}
	    .partners {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 15px;
    }
	.footersupport {
    width: 13%;
}
	.footer-clmn {
		display: none;
	}
}



/*MOBILE*/
@media (max-width:768px) {
    .menu-mob-btn {
        display: block;
    }

    .header-logo__img {
        max-height: 42px;
        max-width: 180px;
        width: auto;
    }

    .menu-wrap {
        grid-gap: 16px;
        background: #000;
        display: none;
        grid-template-columns: 86px 1fr;
        height: calc(100vh - 82px);
        left: 0;
        padding: 20px;
        place-content: flex-start;
        position: fixed;
        top: 82px;
        width: 100%;
        z-index: 9998;
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .menu-wrap.-toggle {
        display: grid;
        visibility: visible;
        opacity: 1;
    }

    .main-nav {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-bottom: 64px;
        padding: 0;
        text-align: left;
        width: 100%;
    }

    .main-nav__list {
        display: block;
    }

    .main-nav__list li:not(:last-child) {
        border-bottom: 1px solid hsla(0, 0%, 100%, .1);
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .header .btn {
        grid-row: 2;
        text-align: center;
    }

    .header .btn a {
        padding: 0 10px;
    }
}

/* banner */

        .banner-container {
            width: 100%;            
            margin: 0 auto;
            height: 320px;
            overflow: hidden;
            position: relative;
            background-image: linear-gradient(calc(var(--cms-page-dir-sign, 1) * 90deg), var(--dark-bg-color) 30%, transparent 93%);
        }

        .banner-item {
            width: 100%;
            height: 320px;
            background-size: cover;
            background-position: center;
            border-radius: 0;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            flex-direction: column;
            color: white;
            text-align: left;
            padding: 20px;
        }



        .banner-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 0;
            background: linear-gradient(calc(var(--cms-page-dir-sign, 1) * 90deg),var(--dark-bg-color) 30%,transparent 93%);
            z-index: 0;
        }

        .banner-content {
            position: relative;
            z-index: 2;
			text-align: left;
   			width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            height: 100%;
        }

        .banner-title {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.7);
        }

        .banner-text {
            font-size: 14px;
            font-weight: 400;
            margin: 0 0 15px 0;
            color: #fff;
            text-shadow: 0 1px 2px rgba(0,0,0,0.7);
            line-height: 1.4;
        }

.banner-button {
	margin: 0;
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
	color: #000;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.banner-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s;
}

.banner-button:hover::before {
	left: 100%;
}

.banner-button:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.6);
}

/* Unify main content widths on desktop */
@media (min-width: 1025px) {
    .main .post-entry,
    .main .table-of-contents {
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    /* Hero-секция на всю ширину экрана */
    .main .hero-section {
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
}


/* Горизонтальное оглавление в казиношном стиле */
.table-of-contents {
    display: none;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9) 0%, rgba(15, 34, 96, 0.9) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--casino-gold), var(--casino-purple)) 1;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(157, 78, 221, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.table-of-contents .toc-summary {
    list-style: none;
    cursor: pointer;
    padding: 0;
    background: transparent;
    color: var(--casino-gold);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.table-of-contents .toc-summary:hover {
    background: transparent;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.table-of-contents .toc-summary::-webkit-details-marker { 
    display: none; 
}

.table-of-contents .toc-summary:after {
    content: '▾';
    position: relative;
    font-size: 20px;
    color: var(--casino-gold);
    transform: rotate(0deg) translateZ(0);
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    will-change: transform;
}

.table-of-contents[open] .toc-summary:after {
    transform: rotate(180deg) translateZ(0);
}

.table-of-contents .toc-list {
    list-style: none;
    margin: 0;
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--casino-gold) rgba(255, 215, 0, 0.1);
}

.table-of-contents .toc-list::-webkit-scrollbar {
    height: 6px;
}

.table-of-contents .toc-list::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
}

.table-of-contents .toc-list::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.table-of-contents .toc-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--casino-gold-light) 0%, var(--casino-gold) 100%);
}

.table-of-contents .toc-list li {
    margin: 0;
    flex: 0 0 auto;
    white-space: nowrap;
}

.table-of-contents .toc-list a {
    display: inline-block;
    padding: 10px 18px;
    color: #e5e6ec;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(157, 78, 221, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    will-change: transform;
}

.table-of-contents .toc-list a:hover {
    color: var(--casino-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(157, 78, 221, 0.15) 100%);
    border-color: var(--casino-gold);
    transform: translateY(-2px) scale(1.05) translateZ(0);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {
    .table-of-contents {
        margin: 15px 0;
        border-radius: 10px;
    }
    
    .table-of-contents .toc-summary {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .table-of-contents .toc-list {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .table-of-contents .toc-list a {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.banner-button {
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(5, 242, 107, 0.3);
    width: auto;
    display: inline-block;
    transition: all 0.3s ease;
}

.banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 242, 107, 0.4);
}

/* Мобильные стили для banner-item */
@media (max-width: 768px) {
    .banner-item {
        background-position: right !important;
        position: relative;
    }
    
    .banner-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    
    .banner-content {
        position: relative;
        z-index: 2;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 500px;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: cover;
    background-position: center;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), inset 0 0 100px rgba(255, 215, 0, 0.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.85) 0%, rgba(15, 34, 96, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
    padding: 60px 40px;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 2;
}

.hero-content {
    flex: 0 1 auto;
    max-width: 650px;
    text-align: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px 0;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--casino-gold) 0%, var(--casino-gold-dark) 100%);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, var(--casino-gold-light) 0%, var(--casino-gold) 100%);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6);
    transform: translateY(-3px) scale(1.05) translateZ(0);
    will-change: transform;
}

.hero-btn-secondary {
    background: linear-gradient(135deg, var(--casino-purple) 0%, var(--casino-purple-dark) 100%);
    color: #fff;
    border: 2px solid var(--casino-purple);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.5), 0 0 30px rgba(157, 78, 221, 0.3);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-btn-secondary:hover {
    background: linear-gradient(135deg, var(--casino-purple-dark) 0%, var(--casino-red) 100%);
    border-color: var(--casino-red);
    box-shadow: 0 6px 30px rgba(255, 68, 68, 0.6), 0 0 50px rgba(157, 78, 221, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* Tablet view */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
        padding: 50px 30px;
        justify-content: flex-end;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-text {
        font-size: 17px;
        margin-bottom: 28px;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        border-radius: 12px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Providers row (under banner) */
.providers-row {
    background: transparent;
    margin: 8px 0 6px;
}
.providers-track {
    display: flex;
    gap: 6px; /* минимальный отступ между логотипами */
    overflow-x: auto;
    padding: 10px 20px;
    align-items: center;
    width: 100%;
    min-width: 100%;
    justify-content: space-between; /* растягиваем на всю ширину контейнера */
    flex-wrap: nowrap;
    box-sizing: border-box; /* учитываем внутренние отступы при 100% ширине */
}
.providers-track::-webkit-scrollbar { height: 6px; }
.providers-track::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.25);
    border-radius: 4px;
}
.provider-chip {
    display: inline-flex;
    align-items: center;
    background: transparent; /* без фона */
    color: #e5e6ec;
    text-decoration: none;
    border: none; /* без границы */
    padding: 0; /* убираем внутренние отступы, чтобы логотип был в полный размер */
    border-radius: 40px;
    white-space: nowrap;
    transition: background .2s ease, transform .15s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
    cursor: pointer;
    height: 48px;
    box-shadow: none; /* без тени */
    flex: 0 0 auto; /* чтобы плашки не растягивались, а занимали свою ширину */
    justify-content: center; /* центрируем логотип внутри */
    min-width: 0; /* ширина определяется самим логотипом */
}
.provider-chip:hover { 
    background: transparent; 
    transform: translateY(-1px);
    border-color: transparent;
    box-shadow: none;
}
.provider-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* полноразмерная зона под логотип */
    line-height: 0; /* убираем лишние межстрочные зазоры */
    min-width: 0; /* не ограничиваем ширину логотипа */
    width: auto;
}
.provider-logo img {
    display: block;
    height: 100%; /* логотип во всю высоту чипа */
    max-height: none;
    width: auto; /* сохраняем пропорции, ширина заполняется min-width контейнера */
    opacity: .95;
    /* делаем логотипы более «белыми», как на скрине */
    filter: grayscale(1) brightness(1.55) contrast(1.15);
    transition: filter .2s ease, opacity .2s ease;
}
.provider-chip:hover .provider-logo img { opacity: 1; filter: grayscale(.1) brightness(1.35) contrast(1.08); }
.provider-name {
    display: none; /* как на скрине — только логотипы */
}
.more-chip {
    background: transparent;
    border: none;
    color: #d5dae7;
    font-weight: 700;
}

/* Баннер джекпота */
.jackpot-banner {
    margin: 20px 0;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.jackpot-banner:hover {
    transform: translateY(-2px);
}

.jackpot-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(90deg, #ffd700 0%, #ffa500 100%);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 165, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 80px;
    transition: box-shadow 0.3s ease;
}

.jackpot-banner:hover .jackpot-banner-container {
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 165, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.3);
}

.jackpot-banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.jackpot-banner-text {
    font-size: 42px;
    text-shadow: 3px 2px 0px rgba(0, 0, 0, 0.3);
    color: #fff;
    line-height: 1.1;
    font-weight: 400;
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    cursor: auto;
    letter-spacing: 0px;
    padding-top: 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.jackpot-banner-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.jackpot-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 65px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 8px;
    color: var(--casino-purple);
    font-weight: 800;
    font-size: 3em;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    transform: translateZ(0);
}



@media (max-width: 1024px) {
    .jackpot-banner-container {
        padding: 18px 25px;
        gap: 20px;
        min-height: 70px;
    }
    
    .jackpot-banner-text {
        font-size: 32px;
        line-height: 1.1;
        padding-top: 0;
    }
    
    .jackpot-digit {
        min-width: 42px;
        height: 55px;
        font-size: 28px;
    }
    
    .jackpot-digit:last-child {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .jackpot-banner {
        padding: 0 15px;
        margin: 15px 0;
    }
    
    .jackpot-banner-container {
        flex-direction: column;
        padding: 16px 20px;
        gap: 16px;
        text-align: center;
        min-height: auto;
    }
    
    .jackpot-banner-text {
        font-size: 24px;
        line-height: 1.3;
        padding-top: 0;
        white-space: normal;
        word-break: break-word;
        display: block;
    }
    
    .jackpot-banner-amount {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .jackpot-digit {
        min-width: 36px;
        height: 44px;
        font-size: 22px;
    }
    
    .jackpot-digit:last-child {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .jackpot-banner-text {
        font-size: 20px;
        line-height: 1.3;
        padding-top: 0;
    }
    
    .jackpot-digit {
        min-width: 32px;
        height: 40px;
        font-size: 20px;
    }
    
    .jackpot-digit:last-child {
        font-size: 24px;
    }
}

/* Блок "Как начать?" */
.how-to-start-section {
    margin: 40px 0;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.how-to-start-container {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.95) 0%, rgba(15, 34, 96, 0.95) 100%);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.1);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--casino-gold), var(--casino-purple)) 1;
}

.how-to-start-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--casino-gold);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    font-family: "Anton", sans-serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 3px 2px 0px rgba(0, 0, 0, 0.3);
}

.how-to-start-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--casino-gold), transparent);
    margin: 0 auto 40px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    max-width: 600px;
}

.how-to-start-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.how-to-start-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    transform: translateZ(0);
    text-decoration: none;
    color: inherit;
}

.how-to-start-step:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--casino-gold);
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.how-to-start-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--casino-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #9d4edd;
}

.how-to-start-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.how-to-start-content {
    flex: 1;
}

.how-to-start-step-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .how-to-start-steps {
        gap: 20px;
    }
    
    .how-to-start-step {
        padding: 18px;
        gap: 16px;
    }
    
    .how-to-start-icon {
        width: 60px;
        height: 60px;
    }
    
    .how-to-start-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .how-to-start-step-title {
        font-size: 18px;
    }
    
    .how-to-start-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .how-to-start-section {
        margin: 30px 0;
        padding: 0 15px;
    }
    
    .how-to-start-container {
        padding: 30px 20px;
    }
    
    .how-to-start-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .how-to-start-separator {
        margin-bottom: 30px;
    }
    
    .how-to-start-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-to-start-step {
        padding: 20px;
        gap: 18px;
    }
    
    .how-to-start-icon {
        width: 65px;
        height: 65px;
    }
    
    .how-to-start-icon svg {
        width: 38px;
        height: 38px;
    }
    
    .how-to-start-step-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .how-to-start-title {
        font-size: 28px;
    }
    
    .how-to-start-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .how-to-start-icon {
        width: 60px;
        height: 60px;
    }
}



.banner-header {
			color: #fff;
			box-sizing: inherit;
			font-family: -apple-system,SF Pro Display,-apple-system,SF Pro Text,sans-serif;
			font-weight: 800;
			letter-spacing: .33px;
			text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 4px 8px rgba(0,0,0,0.5);
			max-width: 100%;
			width: 100%;
			font-size: 30px;
			line-height: 106%;
			white-space: pre-line;
		}

        @media (max-width: 768px) {
    .banner-container {
        height: 200px;
    }
    
    .banner-item {
        height: 200px;
    }
}

/*grid*/

        .grid-container {
            display: flex;
            gap: 15px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
			justify-content: space-between;
			margin: 15px 0 15px 0;
        }

        .grid-item {
            display: flex;
            align-items: center;
            background-image: linear-gradient(110deg,#1e283f,rgba(20,27,46,.6) 100%);
            padding: 15px;
            border-radius: 8px;
            text-decoration: none;
            color: #fff;
            width: 30%;
            min-width: 200px;
			justify-content: space-between;
        }
		
		.grid-item:hover {
			scale: 1.1;
}

        .grid-icon {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
			font-size: 35px;
        }

        .grid-text {
            display: flex;
            flex-direction: column;
        }

        .grid-title {
            font-size: 18px;
            font-weight: bold;
        }

        .grid-subtitle {
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .grid-container {
                flex-direction: column;
                align-items: center;
            }
            .grid-item {
                width: 100%;
            }
        }

body > header > div {
    max-width: 100%;
}

#wpfront-scroll-top-container img {
    display: none !important; /* скрываем штатную стрелку-пиктограмму */
}

/* ============================================
   SIDEBAR STYLES
   ============================================ */

/* Основной контейнер сайдбара - только для ПК */
@media (min-width: 1025px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        background: #1d2839;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
        width: 70px;
        padding: 20px 0;
        align-items: center;
        gap: 0;
    }
    
    .sidebar-mobile-only {
        display: none !important;
        visibility: hidden !important;
    }
    
    .sidebar-nav--desktop {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .sidebar-nav--desktop .sidebar-nav__item {
        width: 100%;
        padding: 15px;
        justify-content: center;
        background: transparent;
        border-radius: 0;
        margin: 0;
        transition: all 0.3s ease;
    }
    
    .sidebar-nav--desktop .sidebar-nav__item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .sidebar-nav__icon-svg {
        display: block !important;
        width: 24px;
        height: 24px;
        color: #ffffff;
        fill: currentColor;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-nav--desktop .sidebar-nav__item:hover .sidebar-nav__icon-svg {
        opacity: 1;
    }
    
}

/* Хедер мобильного меню */
.sidebar-header {
    display: none;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header__logo-link {
    text-decoration: none;
}

.sidebar-header__logo-img {
    height: 32px;
    width: auto;
}

.sidebar-header__logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
}

.sidebar-header__logo-leaf {
    color: #ffffff;
}

.sidebar-close-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.sidebar-close-btn:hover {
    color: #2ecc71;
}

/* Навигационное меню */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav--desktop {
    display: none;
}

.sidebar-nav__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #2a2a2a;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-nav__item:hover {
    background: #333;
    transform: translateX(4px);
}

.sidebar-nav__icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidebar-nav__text {
    flex: 1;
}

.sidebar-nav__icon-svg {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Цветные иконки для мобильного меню */
.sidebar-nav__icon-svg--green {
    color: #2ecc71;
}

.sidebar-nav__icon-svg--purple {
    color: #9b59b6;
}

.sidebar-nav__icon-svg--yellow {
    color: #f1c40f;
}

.sidebar-nav__icon-svg--blue {
    color: #3498db;
}

.sidebar-nav__icon-svg--gold {
    color: #f39c12;
}

.sidebar-nav__icon-svg--red {
    color: #e74c3c;
}

.sidebar-nav__icon-svg--white {
    color: #ffffff;
}

@media (min-width: 1025px) {
    .sidebar-nav__icon-svg {
        color: #ffffff;
        opacity: 0.7;
    }
    
    .sidebar-nav__icon-svg--green,
    .sidebar-nav__icon-svg--purple,
    .sidebar-nav__icon-svg--yellow,
    .sidebar-nav__icon-svg--blue,
    .sidebar-nav__icon-svg--gold,
    .sidebar-nav__icon-svg--red,
    .sidebar-nav__icon-svg--white {
        color: #ffffff;
        opacity: 0.7;
    }
}

/* Кнопки действий */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.sidebar-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-action--telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #ffffff;
}

.sidebar-action--telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.sidebar-action--download {
    background: transparent;
    border: 2px solid #2ecc71;
    color: #2ecc71;
    justify-content: space-between;
}

.sidebar-action__icon--cactus {
    color: #2ecc71;
    flex-shrink: 0;
}

.sidebar-action__icon--cactus img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.sidebar-action--download:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.sidebar-action__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-action__text {
    flex: 1;
}

.sidebar-action__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Информационные ссылки */
.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: #2ecc71;
    padding-left: 5px;
}

.sidebar-link__text {
    flex: 1;
}

.sidebar-link__arrow {
    width: 12px;
    height: 12px;
    color: #888;
    transition: all 0.3s ease;
}

.sidebar-link:hover .sidebar-link__arrow {
    color: #2ecc71;
    transform: translateX(4px);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 1024px) {
    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        padding: 28px 24px !important;
        background: rgba(29, 40, 57, 0.98) !important;
        backdrop-filter: blur(6px) !important;
        z-index: 10001 !important;
        visibility: visible !important;
        opacity: 0 !important;
        gap: 24px !important;
        flex-direction: column !important;
        display: flex !important;
        overflow-y: auto !important;
        transition: transform 0.3s ease, opacity 0.3s ease !important;
        transform: translateX(-100%) !important;
        -webkit-transform: translateX(-100%) !important;
        pointer-events: none !important;
    }
    
    body.menu-open .sidebar.sidebar--open,
    body.menu-open .sidebar--open,
    body.menu-open aside.sidebar.sidebar--open,
    .sidebar.sidebar--open,
    .sidebar--open,
    aside.sidebar.sidebar--open {
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
        -moz-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
        -o-transform: translateX(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.visible {
        opacity: 1;
        visibility: visible;
    }
    
    .sidebar-nav--desktop {
        display: none !important;
    }
    
    .sidebar-nav.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .sidebar-nav.sidebar-mobile-only .sidebar-nav__item {
        align-items: center !important;
        gap: 14px !important;
        padding: 14px 16px !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        transition: background 0.2s ease !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .sidebar-nav.sidebar-mobile-only .sidebar-nav__item:hover {
        background: rgba(255, 255, 255, 0.12) !important;
    }
    
    .sidebar-nav.sidebar-mobile-only .sidebar-nav__icon-svg {
        flex-shrink: 0 !important;
        width: 26px !important;
        height: 26px !important;
    }
    
    .sidebar-nav.sidebar-mobile-only .sidebar-nav__text {
        font-weight: 600 !important;
    }
    
    .sidebar-actions.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }
    
    .sidebar-links.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    /* Показываем мобильные элементы */
    .sidebar-mobile-only {
        display: block !important;
        visibility: visible !important;
    }
    
    .sidebar-nav.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .sidebar-actions.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .sidebar-links.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .sidebar-header {
        display: flex !important;
    }
    
    .sidebar-close-btn {
        display: block !important;
        font-size: 32px !important;
        color: #ffffff !important;
        background: transparent !important;
        border: none !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }
    
    .menu-mob-btn {
        display: flex !important;
        z-index: 10002 !important;
        position: relative;
    }
    
    .header-search {
        display: none;
    }
    
    .header-actions {
        gap: 8px;
        margin-left: 0;
        align-items: center;
        display: flex;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .main {
        margin-left: 0 !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999 !important;
    }
}

/* Мобильная версия хедера */
@media (max-width: 1024px) {
    .header-wrap {
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .header-logo__text {
        font-size: 24px;
    }
    
    .header-logo__img {
        height: 40px;
    }
    
    .header-actions {
        order: initial;
        width: auto;
        justify-content: flex-end;
        margin-top: 0;
        margin-left: auto;
        align-items: center;
    }
    
    .header-btn-login {
        display: none !important;
    }
    
    .menu-mob-btn {
        margin: 0;
        position: relative;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    /* более холодный темный фон как в референсе */
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0f1f2a 100%);
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5);
}

.footer-menu-section {
    background: transparent;
    padding: 40px 0;
    border-bottom: none;
    position: relative;
}

.footer-menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.footer-menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Заголовки и ссылки ближе к макету */
.footer-menu-title { 
    color: #ffd700;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.footer-menu-column a { 
    color: #74caff; 
    transition: all 0.3s ease;
}
.footer-menu-column a:hover { 
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    transform: translateX(5px);
}

.footer-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-column li {
    margin-bottom: 8px;
}

.footer-menu-column a {
    color: #74caff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-menu-column a:hover {
    color: #ffffff;
}

.footer-copyright-section {
    background: transparent;
    padding: 20px 0 40px 0;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent) 1;
    position: relative;
}

.footer-copyright-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.footer-copyright-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-copyright-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
}

.footer-copyright-text {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    line-height: 1.4;
}

.footer-copyright-text p {
    color: rgba(255, 215, 0, 0.9);
    font-weight: 600;
    margin: 0 0 5px 0;
}

.footer-copyright-text p:last-child {
    margin-bottom: 0;
}

.footer-copyright-text a {
    color: #74caff;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-copyright-text a:hover {
    color: #ffffff;
}

.footer-copyright-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-top-note {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 16px 0 24px 0;
    border-top: 1px dashed rgba(183,190,207,.25);
    border-bottom: 1px dashed rgba(183,190,207,.25);
    margin-top: 20px;
}
.footer-top-note .note-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.footer-top-note .note-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #74caff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    line-height: 1.5;
}
.footer-top-note .note-item:hover { 
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    transform: translateX(3px);
}

/* Контактные иконки */
.footer-top-note .note-item svg {
    width: 1em;   /* ровно размером с текст */
    height: 1em;
    stroke: #74caff;
    stroke-width: 1.6;
    fill: none;
    margin-right: .4em;
    transition: all 0.3s ease;
}
.footer-top-note .note-item:hover svg { 
    stroke: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

/* Адаптив иконок контактов */
@media (max-width: 1024px) {
    .footer-top-note .note-item { font-size: 11.5px; }
}
@media (max-width: 768px) {
    .footer-top-note .note-item { font-size: 11px; }
}
@media (max-width: 480px) {
    .footer-top-note .note-item { font-size: 10.5px; }
}

/* Иконки в колонке "Контакты" (note-links) */
.note-links .note-item {
    font-size: 14px;
    line-height: 1.5;
    color: #74caff;
}
.note-links { display: flex; flex-direction: column; gap: 10px; }
.note-links .note-item svg {
    width: 14px !important;
    height: 14px !important;
    stroke: #74caff;
    stroke-width: 1.6;
    fill: none;
    margin-right: .4em;
    vertical-align: -0.15em;
    display: inline-block;
}
.note-links .note-item:hover {
    color: #ffffff;
}
.note-links .note-item:hover svg {
    stroke: #ffffff;
}
@media (max-width: 768px) {
    .note-links .note-item { font-size: 11px; }
    .note-links .note-item svg { width: 12px !important; height: 12px !important; }
}

/* Мобильное меню футера – как на референсе */
@media (max-width: 768px) {
    .footer-menu-columns { display: grid; grid-template-columns: 1fr; gap: 20px; }
    .footer-menu-column { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
    .footer-menu-title {
        margin-bottom: 6px;
        font-size: 13px;
        letter-spacing: .3px;
    }
    .footer-menu-column a {
        font-size: 12px;
        line-height: 1.6;
        color: #74caff;
    }
    .footer-menu-column a:hover {
        color: #ffffff;
    }
    /* Контакты под меню, как отдельный столбец */
    .note-links { gap: 12px; width: 100%; align-items: center; }
    .note-links .note-item { align-items: center; }

    /* Иконки из footer-icons переносим под текст и центрируем */
    .footer-top-note {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
    }
    .footer-icons img {
        height: 22px;
        opacity: .9;
    }
}

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

.social-icon {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
}

.social-icon:hover { border-color:#fff; }

.footer-age-rating {
    display: flex;
    align-items: center;
}

.age-badge {
    background: #ff4444;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.footer-mobile-version {
    display: flex;
    align-items: center;
}

.mobile-version-btn {
    color: #b7becf;
    text-decoration: none;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgba(183, 190, 207, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-version-btn:hover {
    color: #ffffff;
    border-color: rgba(183, 190, 207, 0.5);
    background: rgba(183, 190, 207, 0.1);
}

.footer-section {
    display: grid;
    grid-template-columns: 1fr;
    padding: 30px 0;
    border-bottom: none;
}

.footer-section:last-child {
    border-bottom: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
}

.footer-row.center {
    grid-template-columns: 1fr;
    justify-items: center;
}

.footer-text {
    flex: 1;
    min-width: 300px;
}

.footer-images {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    justify-content: center;
}

@media (max-width: 1024px) {
    .footer-menu-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-menu-section {
        padding-bottom: 100px;
    }
    
    .footer-menu-container {
        padding: 0 15px;
    }
    
    .footer-menu-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        justify-items: center;
    }
    
    .footer-text {
        min-width: auto;
        text-align: center;
    }
    
    .footer-copyright-container {
        padding: 0 15px;
    }
    
    .footer-copyright-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright-text {
        text-align: center;
    }
    
    .footer-copyright-logos {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-age-rating {
        justify-content: center;
    }
    
    .footer-mobile-version {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-menu-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-menu-column {
        text-align: center;
    }
}