:root {
    
    --bg-main: #09090b;
    
    --bg-sidebar: #09090b;
    
    --bg-element-primary: #18181b;
    
    --bg-element-secondary: #27272a;
    
    --bg-input: #18181b;
    --border-color-primary: #27272a;
    --border-color-secondary: #3f3f46;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    
    --accent-blue: #3b82f6;
    
    --accent-blue-hover: #60a5fa;

    
    --color-scroll: #3f3f46;
    --accent-green: #22c55e;
    --accent-purple: #a855f7;
    --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --sidebar-width: 250px;
    --sidebar-width-collapsed: 72px;
    --header-height: 80px;
    
    --content-padding: 32px;
    --accent-casino-bg: #ffffff;
    
    --accent-live-bg: #27272a;
    --accent-minigames-bg: #27272a;
    --bottom-nav-height: 65px;
    --before-gradient: #09090b;
    --border-radius-base: 12px;
    --border-radius-pill: 9999px;
    
    --ds-font-family-default: "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-font-family-code: "JetBrains Mono", monospace;
    --ds-heading-xl: 700 1.5rem / 2.25rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-heading-lg: 700 1.25rem / 1.75rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-heading-md: 700 1.125rem / 1.75rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-heading-sm: 700 1rem / 1.5rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-body-md: 400 1rem / 1.5rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-body-md-strong: 600 0.95rem / 1.5rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-body-sm: 400 .875rem / 1.25rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-body-sm-strong: 600 .875rem / 1.25rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-body-xs: 400 .75rem / 1rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-body-xs-strong: 600 .75rem / 1rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-display-lg: 600 2.25rem / 3rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-display-md: 600 1.75rem / 2.25rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-display-sm: 600 1.25rem / 1.75rem "proxima-nova", ui-sans-serif, -apple-system, system-ui, sans-serif;
    --ds-code-block: 400 .875rem / 1.25rem "JetBrains Mono", monospace;
}

.sidebar-content::-webkit-scrollbar {
    width: 5px;
}

.messbox {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background-color: rgba(158, 177, 189, 0.5);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.sidebar-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(158, 177, 189, 0.5) transparent;
}

*:focus {
    outline: none;
}

*:focus-visible {
    outline: none;
    
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-sidebar);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    gap: 24px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-logo img {
    max-width: 150px;
    animation: pulse-logo 1.5s infinite ease-in-out;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-layout {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-layout.visible {
    visibility: visible;
    opacity: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-logo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0b;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    font-family: inherit;
    color: inherit;
    cursor: pointer;
}

img {
    
    display: block;
}

hr {
    border: none;
    height: 1px;
    background-color: var(--border-color-primary);
    margin: 8px 16px;
}

input {
    background: none;
    border: none;
    outline: none;
    color: inherit;
    font-family: inherit;
    width: 100%;
}

.page-layout {
    display: flex;
}

.sidebar {
    
    background: linear-gradient(45deg, #1f1f23 0%, #09090b 100%);
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 25px #00000042;
    z-index: 200;
    width: 200px;
}

.pc-sidebar {
    width: 200px;
}

@media (max-width: 992px) {
    .pc-sidebar {
        display: none;
    }
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
}

.main-view {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.content-section {
    margin-top: 32px;
}





.sidebar-logo {
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
}

.sidebar-close-mobile {
    display: none;
    
}

.sidebar-logo a {
    display: block;
}

.sidebar-logo img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.sidebar-content {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 12px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar .nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid transparent;
}

.sidebar .nav-item:hover {
    color: var(--text-primary);
    background-color: var(--bg-element-secondary);
}

.sidebar .nav-item.active {
    background-color: var(--bg-element-secondary);
    color: var(--text-primary);
    border-color: var(--border-color-primary);
}


.sidebar .nav-item.nav-item-primary:hover {
    background: var(--bg-element-secondary);
    backdrop-filter: none;
}

.sidebar .nav-item.nav-item-primary.active {
    background: var(--bg-element-secondary);
    color: var(--text-primary);
    
    
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    
}

.sidebar .nav-item.nav-item-primary.active i {
    color: var(--text-primary);
}


.sidebar .nav-badge {
    margin-left: auto;
    background-color: var(--text-primary);
    
    color: #000;
    
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    
    border-radius: 99px;
    min-width: 20px;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}


.sidebar-divider {
    height: 1px;
    background-color: var(--border-color-primary);
    margin: 16px 0;
}


.sidebar .nav-accordion {
    display: flex;
    flex-direction: column;
}

.sidebar .accordion-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar .accordion-arrow {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.sidebar .accordion-toggle.open .accordion-arrow {
    transform: rotate(180deg);
}

.sidebar .accordion-content {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding-left: 16px;
    margin-top: 4px;
}

.sidebar .accordion-content.open {
    display: flex;
}

.sidebar .accordion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.sidebar .accordion-item:hover {
    background-color: var(--bg-element-secondary);
    color: var(--text-primary);
}

.sidebar .accordion-item img {
    width: 18px;
    height: 18px;
    border-radius: 2px;
}


.sidebar-footer {
    padding: 20px 16px;
    margin-top: auto;
}


.sidebar-footer-card {
    background: #121214;
    
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--border-color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sidebar-balance {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.sidebar-balance .balance-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-balance .balance-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.sidebar-deposit-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-deposit-btn:hover {
    background-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.sidebar-login-btn,
.sidebar-register-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8c9099;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}


.sidebar-login-btn {
    background-color: var(--accent-blue);
    color: #fff;
}

.sidebar-login-btn:hover {
    background-color: var(--accent-blue-hover);
}

.sidebar-register-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-register-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}





.sidebar-social-section,
.sidebar-time-section {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-section-title {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a1a1aa;
    margin-bottom: 12px;
}

.sidebar-social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sidebar-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e22;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-social-link:hover {
    background: #27272a;
    transform: translateY(-2px);
}

.sidebar-social-link svg {
    width: 18px;
    height: 18px;
}


.sidebar-time-section {
    border-bottom: none;
}

.sidebar-time-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-time-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}

.sidebar-current-lang {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: #27272a;
    border-radius: 6px;
}

.sidebar-current-lang img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}


.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    z-index: 1500;
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar .nav-item span,
.sidebar .sidebar-social-section,
.sidebar .sidebar-time-section,
.sidebar .sidebar-footer-card,
.sidebar .sidebar-product-toggle span {
    display: inline-block;
    opacity: 1;
}

.sidebar .sidebar-social-section {
    width: 100%
}

.content-wrapper {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 2000;
    }

    .sidebar.mobile-active {
        transform: translateX(0);
    }

    .content-wrapper {
        margin-left: 0;
    }

    .pc-sidebar {
        display: flex;
        
    }
}


.sidebar.expanded .sidebar-product-toggle {
    display: flex;
    flex-grow: 1;
    border-radius: 8px;
    margin-left: 8px;
    padding: 4px;
    position: static;
    gap: 5px;
}

.sidebar.expanded .product-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    width: auto;
    height: auto;
    font-size: inherit;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.expanded .product-btn span {
    display: inline;
    opacity: 1;
    transition: opacity 0.2s ease 0.1s;
}

.sidebar.expanded .nav-item span {
    display: inline-block;
    opacity: 1;
}

.sidebar .nav-item .wheelbutton {
    animation: spin 4.2s ease-in-out infinite alternate;
    height: 20px;
    margin: 0;
    width: 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.nav-item.wheelbutton {
    background: linear-gradient(45deg, #00a9ff24, transparent);
    color: white;
}

.nav-item:hover,
.nav-item.active {
    background-color: var(--bg-element-primary);
    color: var(--text-primary);
}

.nav-item i {
    font-size: 20px;
    flex-shrink: 0;
}

.content-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--content-padding);
    position: sticky;
    top: 0;
    background-color: rgb(19 37 52);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid #0a1c2a;
}

.header-block {
    display: flex;
    align-items: center;
}

.header-block.left {
    justify-content: flex-start;
}

.header-block.center {
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-block.right {
    justify-content: flex-end;
}

.header-block.left,
.header-block.right {
    flex: 1;
    min-width: 100px;
}

.header-logo {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    justify-content: center;
    padding: 6px 4px;
    height: 60px;
}

.header-logo img {
    height: 64px;
    width: auto;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #d0d0d0 0%, #ffffff 100%);
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: var(--bg-sidebar);
    color: var(--text-primary);
    justify-content: center;
}

.btn-secondary:hover {
    background-color: var(--bg-element-secondary);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #00e70180;
    }

    70% {
        box-shadow: 0 0 0 5px #00e70100;
    }

    100% {
        box-shadow: 0 0 0 0 #00e70100;
    }
}

.hero-section {
    background-size: cover;
    background-position: center;
    padding: 60px var(--content-padding);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hero-content {
    justify-content: center;
    display: inline-grid;
    justify-items: stretch;
    align-items: center;
}

.hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content .btn {
    margin-top: 24px;
}

.social-signup {
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    font-size: 28px;
}

.social-icon:hover {
    color: var(--text-primary);
}

.hero-promo {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.promo-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color-primary);
    transition: transform 0.2s;
    max-width: 350px;
}

.promo-card:hover {
    transform: translateY(-4px);
}

.promo-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.promo-card-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-section {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--before-gradient);
    border-radius: 12px;
    
    padding: 8px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-input);
    border-radius: 8px;
    padding: 4px 16px 4px 4px;
    width: 100%;
}

.search-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px;
    background-color: var(--bg-element-primary);
    border-radius: 6px;
}

.search-bar>i {
    font-size: 20px;
    color: var(--text-secondary);
}

.search-bar input::placeholder {
    color: var(--text-secondary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}





.section-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 8px 0;
}

.section-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
    border-radius: 12px;
    font-size: 22px;
    color: #a1a1aa;
}

.section-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.section-header-premium .section-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 12px;
    color: #71717a;
    margin: 0;
    font-weight: 400;
}

.section-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-tabs {
    display: flex;
    background: #18181b;
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
}

.section-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #71717a;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.section-tab:hover {
    color: #a1a1aa;
}

.section-tab.active {
    background: #27272a;
    color: #fff;
}

.section-title-bg {
    display: flex;
    align-items: center;
    gap: 10px;
}


.section-icon-live {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.live-dot-animated {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.carousel-nav {
    display: flex;
    gap: 8px;
    z-index: 2;
}

.nav-arrow {
    background-color: var(--bg-element-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.nav-arrow:hover {
    background-color: var(--bg-element-secondary);
}

@keyframes pulseLive {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(125 229 53 / 70%);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

.live-indicator {
    background-color: #7de535;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    animation: pulseLive 2s infinite;
    cursor: pointer;
    margin: 10px;
}

.main-footer {
    background-color: var(--bg-sidebar);
    color: var(--text-secondary);
    padding: 48px var(--content-padding);
    margin-top: 64px;
    border-top: 1px solid var(--border-color-primary);
    
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 48px;
    align-items: start;
    width: 100%;
}

.about-section {
    display: flex;
    flex-direction: column;
}

.footer-section .footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-section .footer-logo {
    max-width: 120px;
    margin-bottom: 20px;

    img {
        max-width: 120px;
    }
}

.about-section .footer-copyright {
    font-size: 13px;
    line-height: 1.6;
    max-width: 350px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-icon {
    background-color: var(--bg-element-primary);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    transition: background-color 0.2s;
}

.payment-icon:hover {
    background-color: #051520;
}

.payment-icon img {
    height: 100%;
    width: auto;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.2s;
}

.payment-icon:hover img {
    filter: drop-shadow(2px 4px 6px black);
    opacity: 1;
}

.social-icons-footer {
    display: flex;
    gap: 16px;
}

.social-icons-footer .social-icon {
    font-size: 28px;
    transition: color 0.2s, transform 0.2s;
}

.social-icons-footer .social-icon:hover {
    color: var(--text-primary);
    transform: translateY(-3px);
}

.sidebar-tooltip {
    position: fixed;
    background-color: var(--bg-element-primary);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

.sidebar-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sidebar-tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent var(--bg-element-primary) transparent transparent;
}

.sidebar.expanded .product-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: url('/images/toggle-main-default.svg?v=38') no-repeat;
    background-size: cover;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.expanded .product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar.expanded .product-btn-casino::before {
    background: var(--accent-casino-bg);
}

.sidebar.expanded .product-btn-live::before {
    background: var(--accent-live-bg);
}

.sidebar.expanded .product-btn-casino:hover::before,
.sidebar.expanded .product-btn-casino.active::before,
.sidebar.expanded .product-btn-live:hover::before,
.sidebar.expanded .product-btn-live.active::before {
    opacity: 1;
}

.sidebar.expanded .product-btn-casino.active,
.sidebar.expanded .product-btn-casino:hover,
.sidebar.expanded .product-btn-live.active,
.sidebar.expanded .product-btn-live:hover {
    background: #051520;
    color: white;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-overlay.visible {
    opacity: 1;
    display: flex;
}

.modal-window {
    background: #0a0a0c;
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}


.modal-overlay.visible .modal-window {
    transform: translateY(0);
    opacity: 1;
}


.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.modal-header h2,
.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: transparent;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 18px;
    color: #fff;
    font-size: 14px;
    transition: all 0.25s ease;
}

.input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.03);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.modal-footer {
    padding: 0 24px 24px;
}

.btn-modal-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #d0d0d0 0%, #ffffff 100%);
    color: #0a0a0c;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-modal-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    z-index: 10;
    font-size: 24px;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.modal-view {
    display: none;
}

.modal-view.active {
    display: block;
}



.modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.modal-body {
    padding: 24px;
    background: transparent;
}

.modal-footer {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-footer .btn {
    width: 100%;
}


.progress-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.progress-line-wrapper {
    flex: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 1px;
    min-width: 20px;
}

.progress-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.progress-line-fill.completed {
    width: 100%;
}

.progress-step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-step.active {
    background-color: var(--accent-blue);
    color: white;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.modal-step {
    display: none;
    opacity: 0;
    animation: fadeOut 0.3s forwards;
}

.modal-step.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.modal-form .form-group {
    margin-bottom: 9px;
    position: relative;
}

.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    padding-right: 45px !important;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary, #a1a1aa);
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 10;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.password-toggle:hover {
    color: var(--text-primary, #ffffff);
    opacity: 1;
}

.password-toggle:active {
    transform: translateY(-50%) scale(0.9);
}

.modal-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="number"],
.modal-form input[type="password"],
.modal-form input[type="date"] {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color-primary);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.2s;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-link {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--text-primary);
    margin: 8px 0 16px;
}

.btn-block {
    width: 100%;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: var(--bg-element-primary);
    padding: 16px;
    border-radius: 8px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-check label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.form-check a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.form-check a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.step-description {
    text-align: center;
    color: var(--text-secondary);
    margin: 8px 0 24px;
}

.success-image {
    width: 100%;
    height: 100%;
    background-color: var(--bg-element-primary);
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
    padding: 0px 6px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color-primary);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.2s;
    margin: 15px 0;
}

.custom-select-wrapper::after {
    content: '\ea4a';
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.custom-select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid #ffffff00;
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    cursor: pointer;
    padding-right: 45px !important;
}

.custom-select-wrapper select:focus {
    outline: none;
    border-color: #ffffff00;
}

.custom-select-wrapper select option {
    background: var(--bg-element-primary);
    color: var(--text-primary);
    font-weight: 500;
}

.form-error {
    color: #ff5b5b;
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-top: 6px;
}

.form-error-message {
    background-color: #ff5b5b20;
    color: #ff8f8f;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 500;
}

.footer-error {
    margin: 0 24px 16px;
    padding: 10px;
    font-size: 13px;
}

.header-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-element-primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.header-balance:hover {
    background-color: var(--bg-element-secondary);
}

.header-balance .currency {
    font-weight: 500;
    color: var(--text-secondary);
}

.profile-dropdown-wrapper {
    position: relative;
}

.profile-btn {
    width: 40px;
    height: 40px;
    font-size: 28px;
    color: var(--text-secondary);
    display: grid;
    place-items: center;
    transition: color 0.2s;
}

.profile-btn:hover {
    color: var(--text-primary);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 240px;
    background-color: rgba(21, 44, 63, 1);
    border-radius: 8px;
    border: 1px solid var(--border-color-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 8px;
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease-out;
}

.profile-dropdown.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown-header {
    padding: 8px 12px 12px;
    border-bottom: 1px solid var(--border-color-secondary);
    margin-bottom: 8px;
}

.profile-dropdown-header .nickname {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.profile-dropdown-header .email {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-element-secondary);
    color: var(--text-primary);
}

.dropdown-item i {
    font-size: 20px;
}

.dropdown-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color-secondary);
    margin: 8px 0;
}

.logout-btn {
    color: #ff5b5b;
}

.logout-btn:hover {
    background-color: #ff5b5b20;
    color: #ff8f8f;
}

.nav-accordion .accordion-toggle {
    width: 100%;
    position: relative;
}

.nav-accordion .accordion-arrow {
    font-size: 20px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.nav-accordion.open .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding-left: 20px;
    border-radius: 5px;
    transition: max-height 0.3s ease-out;
}

.nav-accordion.open .accordion-content {
    max-height: 200px;
}

.accordion-item {
    display: block;
    padding: 8px 8px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    position: relative;
}

.accordion-item:hover {
    color: var(--text-primary);
    background-color: var(--bg-element-primary);
}

.sidebar:not(.expanded) .nav-accordion {
    position: relative;
}

.sidebar:not(.expanded) .accordion-arrow {
    display: none;
}

.nav-accordion.open .accordion-content {
    display: flex;
    flex-direction: column;
}

.language-option {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    align-content: center;

    img {
        max-width: 16px;
        max-height: 16px;
    }
}

.license_info {
    display: flex;
    align-items: center;
    
    
    border-radius: 14px;
    padding: 12px 16px;
    gap: 12px;
    min-width: 180px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 11px;
    color: #a1a1aa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.license_info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.license_block:hover .license_info {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.license__image {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
    border-radius: 10px;
    flex-shrink: 0;
    padding: 8px;
}

.license__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.license__text {
    line-height: 1.4;
    color: #e4e4e7;
    font-weight: 500;
}

.floating-language-menu {
    position: fixed;
    background-color: var(--bg-element-primary);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.floating-language-menu.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-language-menu .accordion-item {
    left: 0;
}

.dispnone {
    display: none !important;
}

.pg-width {
    width: 100%;
    
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--content-padding);
    padding-right: var(--content-padding);
}

.language-modal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.language-modal-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    background-color: var(--bg-element-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: background-color 0.2s, transform 0.2s;
}

.language-modal-option:hover {
    background-color: var(--bg-element-secondary);
    transform: translateY(-2px);
}

.language-modal-option i {
    font-size: 24px;
    color: var(--text-secondary);
}

.license_block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.game-slider-section,
.providers-section {
    position: relative;
}

.section-header .carousel-nav {
    
    top: -6px;
    right: 0;
}

.search-bar-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color-primary);
    border-radius: 8px;
    padding: 4px 16px 4px 4px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.search-category-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px;
    background-color: var(--bg-element-primary);
    border-radius: 6px;
    flex-shrink: 0;
}

.search-bar>i {
    font-size: 20px;
    color: var(--text-secondary);
}

.search-bar input:focus {
    outline: none;
}

.search-bar input::placeholder {
    color: var(--text-secondary);
}

.search-category-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--bg-element-primary);
    border-radius: 8px;
    padding: 8px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.search-category-dropdown.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-category-dropdown .category-option {
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.search-category-dropdown .category-option:hover {
    background-color: var(--bg-element-secondary);
}

.search-category-dropdown hr {
    margin: 8px 0;
    border-color: var(--border-color-secondary);
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    margin-top: 4px;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background-color: var(--bg-element-primary);
    border-radius: 8px;
    padding: 8px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(144px, 1fr));
    gap: 8px;
    background: var(--before-gradient);
    border-radius: 12px;
    border-bottom: 8px solid #051520;
}

.search-results.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-results .game-card {
    border: none;
}

#main-content {
    flex-grow: 1;
    
    width: calc(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 992px) {
    #main-content {
        margin-left: 0;
        width: 100%;
    }
}

#main-content>* {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--content-padding);
    padding-right: var(--content-padding);
    box-sizing: border-box;
}


#main-content>.full-width {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}

.toast-notification.error {
    background-color: #dc3545;
}

.toast-notification.visible {
    opacity: 1;
    transform: translateY(0);
}

.modal-window {
    max-height: 95vh;
    display: flex;
    flex-direction: column;
}

.modal-body {
    overflow-y: auto;
    flex-grow: 1;
    overflow-x: hidden;
}

input[type="date"] {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-group {
    position: relative;
}

input[type="date"]+.date-icon::after {
    content: '\ec82';
    font-family: 'boxicons' !important;
    font-size: 20px;
    color: var(--text-secondary);

    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);

    pointer-events: none;
}

input,
select,
textarea {
    color-scheme: dark;
}


.mobile-nav-container {
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav-container {
        display: block;
    }
}


.mobile-side-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 21, 32, 0.7);
    backdrop-filter: blur(4px);
    z-index: 901;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: var(--bg-sidebar);
    z-index: 902;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-container.is-open .mobile-side-panel-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container.is-open .mobile-side-panel {
    transform: translateX(0);
}

.mobile-side-panel .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    height: var(--header-height);
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-color-primary);
}

.mobile-side-panel .panel-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-side-panel .profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-side-panel .profile-details .nickname {
    font-weight: 600;
}

.mobile-side-panel .profile-details .balance {
    font-size: 12px;
    color: var(--text-secondary);
}

.mobile-side-panel .panel-logo img {
    height: 32px;
}

.mobile-side-panel .panel-close-btn {
    font-size: 28px;
}

.mobile-side-panel .panel-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px;
}

.mobile-side-panel .sidebar-product-toggle {
    display: flex;
    gap: 8px;
    background-color: var(--bg-main);
    border-radius: 8px;
    padding: 4px;
}

.mobile-side-panel .product-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    background: radial-gradient(circle at 50% 0%, rgb(7, 33, 51), rgb(9, 21, 30));
}

.mobile-side-panel .product-btn.active {
    background-color: var(--bg-element-primary);
}

.mobile-side-panel .product-btn-casino.active {
    background: var(--accent-casino-bg);
    color: white;
}

.mobile-side-panel .product-btn-live.active {
    background: var(--accent-live-bg);
    color: white;
}


.mobile-side-panel .panel-nav,
.mobile-side-panel .panel-nav-secondary {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-side-panel .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-secondary);
}

.mobile-side-panel .nav-item:hover {
    background-color: var(--bg-element-primary);
    color: var(--text-primary);
}

.mobile-side-panel .nav-item i {
    font-size: 20px;
}

.mobile-side-panel .panel-footer {
    padding: 16px;
    flex-shrink: 0;
    border-top: 1px solid var(--border-color-primary);
}

.mobile-side-panel .logout-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}


.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: rgba(16, 18, 22, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    z-index: 1000;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 24px 24px 0 0;
}

.mobile-bottom-nav .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8e92a4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    gap: 2px;
    background: transparent !important;
    border: none !important;
    padding: 0;
}

.mobile-bottom-nav .nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-link i {
    font-size: 24px;
    color: inherit;
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-link span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0.8;
}


.mobile-bottom-nav .nav-link.active {
    color: #ffffff;
}

.mobile-bottom-nav .nav-link.active .nav-icon-wrapper {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.mobile-bottom-nav .nav-link.active i {
    transform: scale(1.1);
}

.mobile-bottom-nav .nav-link.active span {
    opacity: 1;
    color: #ffffff;
}


.nav-action-wrapper {
    position: relative;
    flex: 1.2;
    display: flex;
    justify-content: center;
    z-index: 1001;
    height: 100%;
}

.mobile-bottom-nav .nav-link-action {
    position: absolute;
    top: -35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 85px;
    background: transparent !important;
    border: none !important;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.action-icon-bg {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #868686 0%, #ffffff 100%);
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #1a1a1a;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border: 4px solid #101216;
    transform: rotate(45deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-icon-bg i {
    transform: rotate(-45deg);
    line-height: 1;
}

.mobile-bottom-nav .nav-link-action span {
    margin-top: 12px;
    font-size: 10px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.action-glow {
    position: absolute;
    top: -25px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    filter: blur(25px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: action-glow-pulse 2s infinite;
}

@keyframes action-glow-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.mobile-bottom-nav .nav-link-action:active .action-icon-bg {
    transform: rotate(45deg) scale(0.9);
}


.guest-nav .action-icon-bg {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.guest-nav .action-glow {
    background: #ffffff;
}

.mobile-bottom-nav .nav-link:active {
    transform: scale(0.95);
    opacity: 0.7;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px;
        
    }
}


.bottom-sheet-modal {
    width: 100%;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    bottom: 0;
    left: 0;
}

#bottom-sheet-overlay.visible .bottom-sheet-modal {
    transform: translateY(0);
}

#bottom-sheet-overlay {
    align-items: flex-end;
}

#bottom-sheet-header {
    cursor: grab;
}

#bottom-sheet-header:active {
    cursor: grabbing;
}

#bottom-sheet-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: var(--bg-element-secondary);
    border-radius: 2px;
}

#bottom-sheet-content {
    padding: 8px 16px 24px 16px;
}

.play-menu-grid {
    display: grid;
    gap: 12px;
}

.play-menu-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    padding: 16px;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-menu-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.play-menu-card[data-type="casino"] {
    
    background-image: url(/images/categories/casino-category.png);
    background-size: cover;
    background-position: center;
}

.play-menu-card[data-type="live"] {
    
    background-image: url(/images/categories/live-category.png);
    background-size: cover;
    background-position: center;
}

.play-menu-card[data-type="mini-games"] {
    
    background-image: url(/images/menu/mini-games.png);
    background-size: cover;
    background-position: center;
}


.play-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
    opacity: 0.7;
}

.play-menu-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.play-menu-card-content i {
    font-size: 28px;
}

.play-menu-card-content span {
    font-size: 18px;
    font-weight: 700;
}

.nav-link,
.nav-link-action,
.btn,
button {
    -webkit-tap-highlight-color: transparent;
}

.sidebar-profile-wrapper {
    padding: 2px 12px;
    border-bottom: 1px solid var(--border-color-primary);
    flex-shrink: 0;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}


.mainBtn.blue {
    background: linear-gradient(135deg, #d0d0d0 0%, #ffffff 100%);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    overflow: hidden;
    border-radius: 12px;
    padding: 10px 30px;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mainBtn.blue span {
    color: #1a1a1a !important;
}

.mainBtn.blue:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.mainBtn.blue.secondary {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, #444444, #373737);
    box-shadow: 0 5px 6px 0 #11141b1f, 0 0 36.54px 0 #00000094;
}

.sidebar-profile .profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-profile .profile-details {
    min-width: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.profile-details .nickname {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-details .balance {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.sidebar:not(.expanded) .sidebar-profile-wrapper {
    padding: 10px;
}

.sidebar:not(.expanded) .sidebar-profile {
    justify-content: center;
    padding: 0;
    gap: 0px;
}

.sidebar:not(.expanded) .profile-details {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    width: 0;
}

@media (max-width: 1490px) {
    .hero-section {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .hero-content {
        order: 2;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    .content-header .header-logo span {
        display: none;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-section {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobileno {
        display: none !important;
    }

    .headfixed .topHeader {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    :root {
        --content-padding: 16px;
    }

    body {
        font-size: 13px;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 100%;
        
        height: 100vh;
        
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2000;
        
        background-color: #0d0e12;
        
    }


    .sidebar-close-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 10;
    }

    .sidebar-close-mobile:active {
        transform: translateY(-50%) scale(0.95);
        background: rgba(255, 255, 255, 0.1);
    }

    .sidebar.mobile-expanded {
        transform: translateX(0);
    }

    
    .sidebar.mobile-expanded .sidebar-social-link {
        width: 48px;
        height: 48px;
    }

    .sidebar.mobile-expanded .sidebar-social-link svg {
        width: 24px;
        height: 24px;
    }

    .sidebar.mobile-expanded .sidebar-time-value {
        font-size: 32px;
    }

    .sidebar.mobile-expanded .sidebar-social-icons {
        gap: 12px;
        justify-content: center;
    }

    .sidebar.mobile-expanded .sidebar-time-row {
        justify-content: center;
        gap: 20px;
    }

    .content-wrapper {
        margin-left: 0 !important;
    }

    .sidebar.expanded .sidebar-product-toggle,
    .sidebar:not(.expanded) .sidebar-product-toggle {
        position: static;
        flex-direction: row;
        width: auto;
        padding: 4px;
        margin-left: 8px;
        background-color: var(--bg-main);
        border-radius: 8px;
    }

    .sidebar.expanded .product-btn,
    .sidebar:not(.expanded) .product-btn {
        background-color: transparent;
        border-radius: 6px;
        width: auto;
        height: auto;
        font-size: inherit;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px;
    }

    .sidebar:not(.expanded) .product-btn span,
    .sidebar.expanded .product-btn span {
        display: inline-block;
        opacity: 1;
    }

    .sidebar.expanded .product-btn.active,
    .sidebar:not(.expanded) .product-btn.active {
        background-color: var(--bg-element-primary);
    }

    .sidebar:not(.expanded) .sidebar-content {
        padding-top: 16px;
    }

    .hero-section {
        margin: 0;
        flex-direction: column-reverse;
        gap: 32px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 2;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-promo {
        order: 1;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .social-signup {
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-icons,
    .social-icons-footer {
        justify-content: center;
    }

    .license_block {
        justify-content: center;
    }

    .section-header .carousel-nav {
        display: flex;
    }


    .mobile-nav-container {
        display: block;
    }


    .content-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 468px) {
    .hero-promo {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .promo-card {
        max-width: 250px;
    }
}

@media (max-width: 1024px) {

    body.modal-open {
        overflow: hidden;
    }

    .modal-overlay {
        align-items: flex-end;
        background-color: rgb(0 0 0 / 50%);
        backdrop-filter: blur(10px);
        transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
    }

    .modal-overlay:not(.visible) {
        background-color: transparent;
        backdrop-filter: blur(0px);
    }

    .modal-window {
        width: 100%;
        max-height: 90vh;
        
        min-height: 40vh;
        border-radius: 24px 24px 0 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modal-window.is-dragging {
        transition: none;
    }

    .modal-overlay.visible .modal-window {
        transform: translateY(0);
    }

    .modal-header {
        padding: 16px;
        position: relative;
        cursor: grab;
        text-align: center;
        flex-shrink: 0;
        z-index: 10;
    }

    .modal-header:active {
        cursor: grabbing;
    }

    .modal-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background-color: var(--bg-element-secondary);
        border-radius: 2px;
    }

    .modal-body,
    .wallet-body,
    .wallet-main-body {
        flex-grow: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 16px;
    }

    .modal-body .wallet-body,
    .modal-body .wallet-main-body {
        padding: 0;
    }


    .modal-footer {
        padding: 16px;
        background-color: var(--bg-main);
        border-top: 1px solid var(--border-color-primary);
        flex-shrink: 0;
        z-index: 10;
    }

    .modal-title {
        padding-top: 12px;
    }

    .wallet-promo-image,
    .modal-view[data-view="register-success"] .success-image {
        display: none !important;
    }
}

.pane-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.footer-providers {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
    padding: 30px 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
}

.p-footer-item {
    align-items: center;
    display: flex;
    justify-content: center;
    transition: opacity .3s ease;

    img {
        max-height: 32px;
        max-width: 78px
    }
}

::-webkit-scrollbar {
    display: none !important;
}

.notification-toast-container {
    position: fixed;
    top: calc(var(--header-height) + 16px);
    right: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.notification-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 340px;
    padding: 18px;
    background-color: #1a1d21;
    
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left-width: 4px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.21, 1.02, 0.73, 1);
    position: relative;
    overflow: hidden;
}

.notification-toast::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

.notification-toast.visible {
    opacity: 1;
    transform: translateX(0);
}

.notification-toast-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.notification-toast.success {
    border-left-color: #00e676;
    background: linear-gradient(90deg, rgba(0, 230, 118, 0.15) 0%, #1a1d21 40%);
}

.notification-toast.success .notification-toast-icon {
    background-color: rgba(0, 231, 1, 0.1);
    color: var(--accent-green);
}

.notification-toast.error {
    border-left-color: #ff4b2b;
    background: linear-gradient(90deg, rgba(255, 75, 43, 0.15) 0%, #1a1d21 40%);
}

.notification-toast.error .notification-toast-icon {
    background-color: rgba(255, 91, 91, 0.1);
    color: #ff5b5b;
}

.notification-toast.warning {
    border-left-color: #ff9b44;
}

.notification-toast.warning .notification-toast-icon {
    background-color: rgba(255, 155, 68, 0.1);
    color: #ff9b44;
}

.notification-toast.info {
    border-left-color: var(--accent-blue);
}

.notification-toast.info .notification-toast-icon {
    background-color: rgba(46, 155, 255, 0.1);
    color: var(--accent-blue);
}

.notification-toast-content {
    flex-grow: 1;
}

.notification-toast-content .title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
}

.notification-toast-content .message {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.4;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.notification-toast-close {
    font-size: 20px;
    color: var(--text-secondary);
    padding: 0 4px;
    background: none;
    border: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-toast-close:hover {
    opacity: 1;
}

.footer-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: underline;
    margin-top: 8px;
    display: inline-block;
}

.footer-link:hover {
    color: var(--text-primary);
}

#bg_site_font {
    background: url('/images/default2.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.game-card-online-indicator {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 100px;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    z-index: 3;
}

.game-card .game-card-online-indicator,
.game-card-lobby .game-card-online-indicator,
.slot-item>a .game-card-online-indicator {
    top: 8px;
    left: 8px;
}

.game-card-online-indicator .live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation: pulseLive 2s infinite;
}

.application .online-indicator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 12px;
    padding-right: 12px;
}

.online-indicator-header .live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation: pulseLive 2s infinite;
}

.online-indicator-header span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.promotions-container-notifications {
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    align-content: center;
    max-width: 20px;
    max-height: 20px;
}

.promotions-container-notifications-span {
    background-image: linear-gradient(180deg, #41c6ff, #1a64fc), linear-gradient(180deg, #79cdfd, #1a64fc);
    color: white;
    font-weight: 900;
    font-size: 9px;
    margin-left: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .notification-toast-container {
        top: 16px;
        right: 16px;
        left: 16px;
        align-items: stretch;
    }

    .notification-toast {
        width: 100%;
    }

    .language-option {
        img {
            max-width: 24px;
            max-height: 24px;
        }
    }
}

body.modal-open {
    overflow: hidden;
}

@media (min-width: 1025px) {
    body.modal-open {
        padding-right: var(--scrollbar-width);
    }
}

.menu-burger__link--wheel {
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    margin: 8px 0;
    
    background: linear-gradient(135deg, rgba(180, 180, 180, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}


.menu-burger__link--wheel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #a0a0a0, #d0d0d0);
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.menu-burger__link--wheel:hover {
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

.menu-burger__link--wheel:hover::before {
    opacity: 1;
}

.menu-burger__link--wheel .menu-burger__link-inner {
    display: contents;
}


.menu-burger__link-img-wr.menu-burger__link-img--promo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #3a3a3a, #252525);
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-burger__link-img-wr.menu-burger__link-img--promo img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    animation: wheel-idle 6s ease-in-out infinite;
}

.menu-burger__link--wheel:hover .menu-burger__link-img--promo img {
    animation: wheel-spin-smooth 2s linear infinite;
}


.menu-burger__link-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.25s ease;
    white-space: nowrap;
}

.menu-burger__link--wheel:hover .menu-burger__link-text {
    color: var(--text-primary);
}


@keyframes wheel-idle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(8deg);
    }

    75% {
        transform: rotate(-8deg);
    }
}


@keyframes wheel-spin-smooth {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}





.providers-section {
    margin-top: 32px;
    margin-bottom: 8px;
}

.providers-icon {
    background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
    color: #a1a1aa !important;
}

.providers-slider-wrapper {
    position: relative;
    margin-top: 16px;
    padding: 20px 0;
}

.providers-slider {
    width: 100%;
    overflow: hidden;
}

.providers-slider-track {
    display: flex;
    gap: 20px;
    animation: providersScroll 35s linear infinite;
    width: max-content;
}

@keyframes providersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.provider-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 180px;
    height: 90px;
    padding: 20px 24px;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: default;
    text-decoration: none;
}

.provider-card:hover,
.provider-card:focus,
.provider-card:active {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.provider-card img {
    width: 100%;
    max-width: 140px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: filter 0.25s ease;
}

.provider-card:hover img {
    filter: brightness(0) invert(1) opacity(1);
}

.provider-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: color 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.provider-card:hover .provider-name {
    color: rgba(255, 255, 255, 0.8);
}


@media (max-width: 768px) {
    .providers-slider-wrapper {
        padding: 16px 0;
    }

    .providers-slider-wrapper::before,
    .providers-slider-wrapper::after {
        width: 40px;
    }

    .providers-slider-track {
        gap: 8px;
        animation-duration: 25s;
    }

    .provider-card {
        width: 140px;
        height: 70px;
        padding: 14px 16px;
        gap: 8px;
    }

    .provider-card img {
        max-width: 100px;
        height: 36px;
    }

    .provider-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .providers-section {
        margin-top: 20px;
    }

    .provider-card {
        width: 120px;
        height: 60px;
        padding: 10px 12px;
        gap: 6px;
    }

    .provider-card img {
        max-width: 80px;
        height: 30px;
    }

    .provider-name {
        font-size: 9px;
    }
}