/* Fonts */
@font-face {
    font-family: 'Muller';
    src: url('font/MullerDemo-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    src: url('font/MullerDemo-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller Narrow';
    src: url('font/MullerNarrowDemo-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller Narrow';
    src: url('font/MullerNarrowDemo-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Muller Narrow';
    src: url('font/MullerNarrowDemo-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller Narrow';
    src: url('font/MullerNarrowDemo-ExtraBoldItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
	 color: inherit;
	 text-decoration: none;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #ff1744;
    --secondary-color: #1183d3;
    --bg-dark: #fff;
    --bg-darker: #06081a;
    --bg-card: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #8b8fa8;
    --accent-purple: #7b2cbf;
    --accent-green: #62c23c;
}

body {
    font-family: 'Muller', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #212132;
    background-image: url(img/bg2.svg), url(img/bg.svg);
    background-repeat: repeat, repeat;
    background-position: center, center;
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    min-height: 100vh;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Muller', sans-serif;
    font-weight: 800;
}

.logo-text {
    font-family: 'Muller', sans-serif;
    font-weight: 800;
}

/* Предотвращение мерцания */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

*, *::before, *::after {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Скрытие скроллбара */
.category-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-nav {
	width: 100%;
	margin: 0 auto;
	 padding: 0 10px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 box-sizing: border-box;
	 background-color: #212132;
	 background-image: url(img/bg.svg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
	     background: url(../img/noise.842fbbbae5bd6f37b0268590b6f121ec.png) repeat, linear-gradient(#1c2240, #1c2240) padding-box, linear-gradient(180deg, #4d5a85, #46527900) border-box;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    will-change: left;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-card);
}

.mobile-menu-header::before{
	background-color: #fe284a;
    height: 4px;
    left: 0;
    top: 0;
    width: 100%;
	 position: absolute;
	 content: '';
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.user-info span {
	display: flex;
	align-items: center;
	 gap: 8px;
	 font-weight: 800;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-purple);
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, border-left-color 0.3s ease;
    border-left: 3px solid transparent;
    will-change: color, background-color, border-left-color;
}

.nav-item.active,
.nav-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-green);
}

.nav-item .icon {
    font-size: 20px;
	 width: 22px;	
}

.badge {
    margin-left: auto;
    background: var(--primary-color);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Header */
.header {
    background: #252536f2;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
    will-change: box-shadow;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 767px) {
.header .container {
    gap: 0px;
    justify-content: center;
    
}}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo {
    text-decoration: none;
}

.burger-menu-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu-mobile  span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 768px) {
    .burger-menu-mobile  {
        display: flex;
    }}

.logo-text img {
	width: 100%;
	height: 30px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    flex: 1;
}

.desktop-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Muller', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.desktop-nav a:hover {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* по умолчанию (десктоп/планшет) скрыто */
.header-mobile {
  display: none;
}

/* на мобиле (≤767px) показываем */
@media (max-width: 767px) {
  .header-mobile {
    display: block; /* или flex, если нужен флекс-лейаут */
  }
}


/* только на мобиле (≤768px) показываем и задаём все стили */
@media (max-width: 768px) {
  .header-mobile{
    background: #252536f2;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
    will-change: box-shadow;

    display: flex;             /* ВАЖНО: только здесь */
    align-items: center;
    justify-content: space-between;
  }

  .header-mobile .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-actions { display: none; }
  .actions-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
}


.language {
    font-size: 24px;
    cursor: pointer;
}

.btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Muller', sans-serif;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #fe284a;
    color: var(--bg-dark);
    box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000;
}

.btn-primary1, .primary1 {
    font-weight: 600;
}

.btn-primary:hover {
    background: #00dd77;
    transform: translateY(-2px);
}


.btn-secondary {
display: flex;
    align-content: center;
    justify-content: center;
    color: #e8ce3a;
	 gap: 8px;
	 align-items: center;
}
.btn-secondary svg {
	 height: 18px;
	 width: 18px;
}

/* Banner */
.banner {
    padding: 20px 0;
}

.banner-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-purple), var(--secondary-color));
}

.banner-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.banner-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.banner-text h1 {
    font-size: 32px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Muller', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Category Navigation */
.category-nav {
    padding: 5px;
    background: #21213257;
	 width: 100%;
}

.category-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

@media (max-width: 767px) {
   .category-scroll {
    gap: 5px;
}
.category-item {
	font-size: 12px;
}
.category-scroll {
	padding: 0;
}}

.category-item {
    display: flex;
        flex-direction: row;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    font-family: 'Muller', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
	 padding: 10px;
}

.category-item.active {
    color: var(--accent-green);
}

.category-item:hover {
   box-shadow: inset 0 0 0 38px #ffffff0d;
	padding: 10px;
	outline-color: #17eada;
	        border-radius: 10px;
}

.category-item img {
	 width: 36px;
	 height: 36px;
}

/* Filters */
.filters {
    padding: 20px 0;
}

@media (max-width: 767px) {
    .filters {
    padding: 0px 0;
}}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
    font-size: 14px;
    will-change: border-color, color;
}

.filter-btn.active {
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

.filter-btn:hover {
    border-color: var(--accent-purple);
}


/* Games Grid */
.games {
    padding: 30px 0 60px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 3/4;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.game-card:hover {
    transform: translateY(-5px) translateZ(0);
    -webkit-transform: translateY(-5px) translateZ(0);
}

.game-card img,
.game-card svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: opacity 0.3s ease;
}

.game-card svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.game-card img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 1;
    transition: background 0.3s ease;
    pointer-events: none;
    will-change: background;
    z-index: 1;
}

.game-card:hover .game-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.2) 100%);
    pointer-events: auto;
}

.game-title {
    font-size: 14px;
    font-weight: 800;
    font-family: 'Muller', sans-serif;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    line-height: 1.3;
}

.game-provider {
    font-size: 12px;
    color: var(--accent-green);
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    opacity: 0.8;
    font-weight: 300;
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

.btn-load {
    display: inline-block;
    padding: 15px 50px;
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-load:hover {
    background: var(--accent-purple);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.app-btn {
    display: block;
}

.app-btn img {
    height: 40px;
}


.footer-age {
    text-align: center;
    margin-bottom: 20px;
}

.age-badge {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-age p {
    font-size: 12px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}




/* Mobile Responsive */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: none;
    }
    
    .header-actions .btn-secondary {
        display: none;
    }
    
    .banner-text h1 {
        font-size: 24px;
    }
    
    .banner-content {
        height: 200px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
    }
    
    .search-box input {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .banner-text h1 {
        font-size: 18px;
    }
    
    .category-item {
        padding: 12px 5px;
    }
    
@media (max-width: 767px) {
    .category-item img {
        width: 20px;
		  height: auto;
}}

    .filter-group {
        width: 100%;
        justify-content: flex-start;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
}


/* Добавьте в style.css */

/* Promo Slider - Full Width */
.promo-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #000;
}

.promo-slider-container {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.promo-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
}

.promo-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.promo-content h2 {
    font-family: 'Muller', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        2px 2px 10px rgba(0, 0, 0, 0.9);
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -100%;
    }
    100% {
        background-position: 200%;
    }
}

/* Promo Arrows */
.promo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #ffd700;
}

.promo-arrow:hover {
    background: rgba(255, 215, 0, 0.8);
    border-color: #ffd700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    color: #000;
}

.promo-arrow-prev {
    left: 30px;
}

.promo-arrow-next {
    right: 30px;
}

/* Promo Dots */
.promo-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.promo-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.promo-dot.active {
    background: #ffd700;
    width: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    border-color: #ffd700;
}

.promo-dot:hover {
    background: rgba(255, 215, 0, 0.6);
    border-color: #ffd700;
}

/* Placeholder для изображений */
.promo-slide img[src=""],
.promo-slide img:not([src]) {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .promo-slider-container {
        height: 280px;
    }
    
    .promo-content h2 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .promo-arrow {
        width: 50px;
        height: 50px;
    }
    
    .promo-arrow-prev {
        left: 20px;
    }
    
    .promo-arrow-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .promo-slider-container {
        height: 220px;
    }
    
    .promo-content h2 {
        font-size: 24px;
        letter-spacing: 1.5px;
    }
    
    .promo-arrow {
        width: 45px;
        height: 45px;
    }
    
    .promo-arrow-prev {
        left: 15px;
    }
    
    .promo-arrow-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .promo-slider-container {
        height: 180px;
    }
    
    .promo-content {
        bottom: 20px;
    }
    
    .promo-content h2 {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 0 10px;
    }
    
    .promo-arrow {
        width: 40px;
        height: 40px;
    }
    
    .promo-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .promo-arrow-prev {
        left: 10px;
    }
    
    .promo-arrow-next {
        right: 10px;
    }
    
    .promo-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .promo-dot {
        width: 10px;
        height: 10px;
    }
    
    .promo-dot.active {
        width: 35px;
    }
}/* Добавьте в style.css */

/* Tournament Slider */
.tournament-slider {
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1228 100%);
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
}

.slide-card {
    position: relative;
    width: 240px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2f4a, #1a1f3a);
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.slide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #00ff88, #1183d3, #7b2cbf);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-card:hover::before {
    opacity: 1;
}

.slide-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.multiplier {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff1744, #7b2cbf);
    color: #fff;
    padding: 8px 30px;
    border-radius: 25px;
    font-family: 'Muller', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.5);
    z-index: 2;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: white;
}

.slider-arrow:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Slider Title */
.slider-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.slider-title h2 {
    font-family: 'Muller', sans-serif;
    font-weight: 800;
    font-size: 32px;
    background: linear-gradient(90deg, #00ff88, #1183d3, #7b2cbf, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--accent-green);
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--accent-green);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Placeholder для изображений */
.slide-card img[src=""],
.slide-card img:not([src]) {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    position: relative;
}

.slide-card img[src=""]::after,
.slide-card img:not([src])::after {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.3;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .slide {
        gap: 15px;
        padding: 0 30px;
    }
    
    .slide-card {
        width: 200px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .slide {
        gap: 10px;
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .slide-card {
        width: 150px;
        height: 200px;
    }
    
    .multiplier {
        font-size: 16px;
        padding: 6px 20px;
    }
    
    .slider-title h2 {
        font-size: 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-prev {
        left: 10px;
    }
    
    .slider-arrow-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slide-card {
        width: 120px;
        height: 160px;
    }
    
    .slide {
        padding: 0 10px;
    }
    
    .slider-title h2 {
        font-size: 16px;
        padding: 0 20px;
    }
}

.text h1 {
	font-size: 30px;
	margin-bottom: 20px;
	line-height: 1.2;
	font-weight: 600;
}
.text p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 30px;
}


/* === ACTIVE STATES === */
.desktop-nav a.active {
  color: #00ff88;
  font-weight: 700;
  border-bottom: 2px solid #00ff88;
}

.nav-item.active {
  background: rgba(0, 255, 136, 0.1);
  border-left-color: #00ff88;
  color: #ffffff;
}

.category-item.active {
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
/* =========================================================
   VAVADA CONTENT TEST (for: .container .text)
   Paste at END of your CSS
   ========================================================= */

:root{
  --vv-bg: #0b0f1a;
  --vv-panel: rgba(255,255,255,.04);
  --vv-border: rgba(255,255,255,.10);

  --vv-text: rgba(255,255,255,.90);
  --vv-muted: rgba(255,255,255,.65);

  --vv-accent: #ff2d55;   /* vavada red/pink */
  --vv-accent2:#6d5efc;   /* purple */
  --vv-cyan:   #22d3ee;

  --vv-radius: 18px;
  --vv-shadow: 0 18px 50px rgba(0,0,0,.45);
}

/* Scope: only this content block */
.container .text{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 18px 70px;

  color: var(--vv-text);
}

/* Typography */
.container .text p{
  margin: 0 0 12px;
  line-height: 1.55;
  color: var(--vv-text);
  max-width: 86ch;
}

.container .text p strong,
.container .text li strong{
  color: #fff;
  font-weight: 800;
}

/* H1: premium card header */
.container .text h1{
  margin: 6px auto 16px;
  text-align: center;
  max-width: 34ch;

  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.12;
  font-size: clamp(24px, 3.2vw, 40px);

  padding: 16px 18px;
  border-radius: var(--vv-radius);
  border: 1px solid var(--vv-border);

  background:
    radial-gradient(900px 220px at 50% 0%, rgba(255,45,85,.22), transparent 60%),
    radial-gradient(800px 240px at 50% 70%, rgba(109,94,252,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));

  box-shadow: var(--vv-shadow);
  position: relative;
}

.container .text h1::before{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--vv-accent), var(--vv-accent2), transparent);
  opacity: .95;
}

/* H2/H3 */
.container .text h2{
  margin: 26px auto 12px;
  text-align: center;
  max-width: 46ch;

  padding: 14px 16px;
  border-radius: var(--vv-radius);
  border: 1px solid var(--vv-border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--vv-shadow);
  line-height: 1.2;
  position: relative;
}

.container .text h2::before{
  content:"";
  display:block;
  width: 12px;
  height: 12px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vv-accent), var(--vv-accent2));
  box-shadow: 0 0 0 4px rgba(255,45,85,.12);
}

.container .text h3{
  margin: 18px auto 10px;
  max-width: 86ch;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: #fff;
}

/* Lists: “четко и красиво выделены” */
.container .text ul,
.container .text ol{
  margin: 12px auto 18px;
  padding: 0;
  max-width: 86ch;
}

.container .text ul li,
.container .text ol li{
  list-style: none;
  position: relative;

  margin: 10px 0;
  padding: 12px 14px 12px 44px;

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

/* UL marker */
.container .text ul li::before{
  content:"";
  position:absolute;
  left: 16px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--vv-cyan);
  box-shadow: 0 0 0 4px rgba(34,211,238,.14);
}

/* OL marker */
.container .text ol{ counter-reset: vv; }
.container .text ol li{ counter-increment: vv; }
.container .text ol li::before{
  content: counter(vv);
  position:absolute;
  left: 14px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 12px;
  color: #081018;
  background: linear-gradient(135deg, var(--vv-cyan), #7dd3fc);
  box-shadow: 0 0 0 4px rgba(34,211,238,.14);
}

/* Table: reuse your .mad-table but make it Vavada-ish */
.container .text .mad-table{
  width: 100%;
  max-width: 980px;
  margin: 14px auto 26px;

  border-collapse: separate;
  border-spacing: 0;

  border: 1px solid var(--vv-border);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--vv-shadow);
}

.container .text .mad-table thead th{
  text-align: left;
  padding: 14px 14px;
  font-weight: 900;
  color: #fff;

  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,45,85,.18), rgba(255,255,255,.05));
}

.container .text .mad-table td{
  padding: 14px 14px;
  vertical-align: top;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.container .text .mad-table tbody tr:nth-child(odd) td{ background: rgba(255,255,255,.02); }
.container .text .mad-table tbody tr:hover td{ background: rgba(255,45,85,.08); }
.container .text .mad-table tr:last-child td{ border-bottom: 0; }

.container .text .mad-table td ul{
  margin: 10px 0 0;
  max-width: none;
}
.container .text .mad-table td ul li{
  margin: 8px 0;
  box-shadow: none;
}

/* Responsive tables (scroll on small screens) */
@media (max-width: 860px){
  .container .text .mad-table{
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .container .text .mad-table th,
  .container .text .mad-table td{
    min-width: 220px;
  }
}

/* Links */
.container .text a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.28);
}
.container .text a:hover{
  border-bottom-color: rgba(255,45,85,.60);
  color: #fff;
}
