/* CSS Version: 4.0 - Force Minimal Horizontal Gaps */

/* CoFo Kak Font */
@font-face {
  font-family: 'CoFo Kak';
  src: url('../fonts/CoFoKak-Black.ttf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CoFo Kak Black';
  src: url('../fonts/CoFoKak-Black.ttf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onder';
  src: url('../fonts/ONDER-REGULAR.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg:#000000;
  --surface:#0a0a0a;
  --text:#e7e7ee;
  --muted:#a3a3b2;
  --primary:#ffffff !important;
  --accent:#e4e4e7 !important;
  --secondary:#a1a1aa !important;
  --tertiary:#f4f4f5 !important;
  --border:#1a1a1a;
  --shadow:0 15px 40px rgba(255,255,255,.12) !important;
  --shadow-dark:0 25px 60px rgba(0,0,0,.5);
  --shadow-glow:0 0 30px rgba(255,255,255,.15) !important;
  --shadow-soft:0 8px 25px rgba(0,0,0,.2);
  --shadow-deep:0 20px 50px rgba(0,0,0,.4);
  /* Global font (used across the whole site) - Montserrat with bolder weights for better readability */
  --font-main: "Montserrat", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: #09090b;
  color-scheme: dark;
}

html,body{margin:0;padding:0}

/* Оптимизация производительности */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Отключаем анимации для пользователей с предпочтением уменьшенной анимации */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Нативный скролл скрыт — используется overlay-scrollbar.js */
html {
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent;
}


body{
  font-family:var(--font-main);
  font-weight: 600; /* Bolder base weight for better readability */
  background: #09090b; /* fallback; поверх — .home-mesh-bg */
  color:var(--text);
  line-height:1.6;
  position: relative;
  overflow-x: hidden;
}




/* @keyframes spin {
  to { transform: rotate(360deg); }
} */ /* Отключено - не используется для карточек помощи */

/* Новые анимации */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale3d(1, 1, 1);
    box-shadow: 0 12px 35px rgba(255,255,255,0.3);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1);
    box-shadow: 0 18px 50px rgba(255,255,255,0.4);
  }
}

@keyframes sparkle {
  0% {
    filter: drop-shadow(0 0 15px rgba(255,255,255,.5));
    transform: scale3d(1, 1, 1);
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(255,255,255,.7));
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 0 50px rgba(255,255,255,0.5);
  }
}

/* Новая анимация для заголовка */
@keyframes titleShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes titleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -3px, 0);
  }
}

/* Анимация мерцающего луча света */
@keyframes lightBeam {
  0% {
    background-position: 0 0, -200% 0;
  }
  20% {
    background-position: 0 0, -200% 0;
  }
  30% {
    background-position: 0 0, 0% 0;
  }
  40% {
    background-position: 0 0, 0% 0;
  }
  50% {
    background-position: 0 0, 200% 0;
  }
  100% {
    background-position: 0 0, 200% 0;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)) drop-shadow(0 0 4px rgba(255,255,255,0.15));
    opacity: 0.9;
  }
  50% {
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.4)) drop-shadow(0 0 8px rgba(255,255,255,0.3)) drop-shadow(0 0 12px rgba(255,255,255,0.2));
    opacity: 1;
  }
}

/* Tomograph Pulse Animation - Moving Line Effect */
@keyframes tomographPulse {
  0% {
    stroke-dashoffset: 600;
    opacity: 0;
  }
  10% {
    stroke-dashoffset: 400;
    opacity: 1;
  }
  20% {
    stroke-dashoffset: 200;
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  40% {
    stroke-dashoffset: -200;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: -400;
    opacity: 1;
  }
  60% {
    stroke-dashoffset: -600;
    opacity: 0.8;
  }
  70% {
    stroke-dashoffset: -800;
    opacity: 0.5;
  }
  80% {
    stroke-dashoffset: -1000;
    opacity: 0.2;
  }
  100% {
    stroke-dashoffset: -1200;
    opacity: 0;
  }
}


.container{width:min(1200px,92%);margin:0 auto}
.muted{color:var(--muted)}
.xs{font-size:.85rem}

/* Header - Единый для всех страниц */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  width:100%;
  background:rgba(0,0,0,.5);
  backdrop-filter:saturate(180%) blur(40px);
  -webkit-backdrop-filter:saturate(180%) blur(40px);
  border-bottom:none;
  box-shadow:var(--shadow-deep);
  /* Use the global site font */
  font-family: var(--font-main);
  height:77px;
  min-height:77px;
  max-height:77px;
}

/* Главная: HUD-линия под персонажем — см. hero-hud.css */

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0 16px 0;
  flex-wrap:nowrap;
  gap:0;
  position:relative;
  height:100%;
  width:min(1200px,92%);
  margin:0 auto;
  box-sizing:border-box;
}

/* Левый блок - бренд */
.header-left{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  height:120px;
  min-height:120px;
  max-height:120px;
  flex-shrink:0;
  min-width:auto;
  max-width:none;
  /* ФИНАЛЬНОЕ ПОЛОЖЕНИЕ ЛОГОТИПА - зафиксировано на всех страницах */
  /* Не изменять без согласования! */
  margin-left: -25px;
  transform: translateX(-3px);
}

/* Центральный блок - навигация (рядом с логотипом) */
.header-center{
  flex:0 0 auto;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:0;
  min-width:0;
  height:44px;
  min-height:44px;
  max-height:44px;
  margin-left:30px;
  padding-left:0;
  width:auto;
}

.header-center .language-selector {
  margin-left: -20px !important;
  flex-shrink: 0;
  transform: translateX(-8px);
}

.site-nav {
  margin-right: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  justify-content: flex-start !important;
  width: auto !important;
}

.site-nav ul {
  margin-right: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  justify-content: flex-start !important;
}

/* Правый блок - действия */
.header-right{
  flex:0 0 360px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  height:44px;
  min-height:44px;
  max-height:44px;
  flex-shrink:0;
  min-width:360px;
  max-width:360px;
}

/* Simple Logo Image */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  flex-shrink: 0;
  /* РЕГУЛИРОВКА ПОЗИЦИИ ЛОГОТИПА: измените значение margin-left чтобы сдвинуть логотип влево/вправо */
  margin-left: 0px;
}

.logo-img {
  width: 312px;
  height: 120px;
  min-width: 312px;
  max-width: 312px;
  min-height: 120px;
  max-height: 120px;
  object-fit: contain;
}


.menu-toggle{display:none;background:transparent;border:1px solid var(--border);color:var(--text);padding:6px 10px;border-radius:8px}
.site-nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  height:44px;
  min-height:44px;
  max-height:44px;
  width:auto;
  margin-left:0;
  padding-left:0;
}
.site-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:16px;
  align-items:center;
  height:100%;
  justify-content:flex-start;
}

.site-nav ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.site-nav ul li.nav-language-selector {
  margin-left: 4px !important;
  padding-left: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.site-nav ul li.nav-language-selector .lang-toggle {
  background:transparent !important;
  border:none !important;
  padding:0 !important;
  box-shadow:none !important;
}

.site-header .site-nav ul li.nav-language-selector {
  margin-left: 4px !important;
}

.site-header .site-nav ul li.nav-language-selector .lang-toggle {
  background:transparent !important;
  border:none !important;
  padding:0 !important;
  box-shadow:none !important;
}
.site-nav a{
  color:var(--text);
  text-decoration:none;
  padding:0 10px;
  border-radius:12px;
  display:flex;
  align-items:center;
  font-family: var(--font-main);
  font-size:1rem !important;
  font-weight:600;
  letter-spacing:normal;
  text-transform:none;
  line-height:1.2;
  height:44px;
  min-height:44px;
  max-height:44px;
  transition:color 0.3s ease;
  border:none;
  box-sizing:border-box;
  white-space:nowrap;
  flex-shrink:0;
  overflow: visible;
  transform: none;
  will-change: auto;
}
.site-nav a:hover{
  color:#ffffff;
  background:transparent;
  border:none;
}

.site-nav a.support-link:hover {
  animation: supportPulseHover 1.5s ease-in-out infinite !important;
}

/* Стили для вкладки "Поддержка" с пульсирующей белой подсветкой */
.support-link {
  color: #ffffff !important;
  animation: supportPulse 2s ease-in-out infinite;
  position: relative;
  background: transparent !important;
  border: none !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.55), 0 0 20px rgba(255, 255, 255, 0.35), 0 0 30px rgba(255, 255, 255, 0.18) !important;
}

/* Стили для плашек статуса товаров - настоящий эффект жидкого стекла */
.status-badge, .product-status-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  padding: 8px 14px !important;
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
  z-index: 100 !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  max-width: none !important;
  transition: all 0.3s ease !important;
}

.status-badge.undetect {
  background: rgba(16, 185, 129, 0.08) !important;
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
  color: #10b981 !important;
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1) hue-rotate(120deg) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1) hue-rotate(120deg) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(16, 185, 129, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}

.status-badge.update {
  background: rgba(59, 130, 246, 0.08) !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  color: #3b82f6 !important;
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1) hue-rotate(200deg) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1) hue-rotate(200deg) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(59, 130, 246, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}

.status-badge.risk {
  background: rgba(245, 158, 11, 0.08) !important;
  border: 1px solid rgba(245, 158, 11, 0.2) !important;
  color: #f59e0b !important;
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1) hue-rotate(30deg) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1) hue-rotate(30deg) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(245, 158, 11, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}

.status-badge.detect {
  background: rgba(239, 68, 68, 0.08) !important;
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
  color: #ffffff !important;
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1) hue-rotate(0deg) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1) hue-rotate(0deg) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(239, 68, 68, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}

.status-container {
  display: flex;
  align-items: center;
  flex: 1;
}

@keyframes supportPulse {
  0% {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.55), 0 0 20px rgba(255, 255, 255, 0.35), 0 0 30px rgba(255, 255, 255, 0.18) !important;
  }
  25% {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.75), 0 0 25px rgba(255, 255, 255, 0.45), 0 0 35px rgba(255, 255, 255, 0.25) !important;
  }
  50% {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.95), 0 0 30px rgba(255, 255, 255, 0.55), 0 0 40px rgba(255, 255, 255, 0.35) !important;
  }
  75% {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.75), 0 0 25px rgba(255, 255, 255, 0.45), 0 0 35px rgba(255, 255, 255, 0.25) !important;
  }
  100% {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.55), 0 0 20px rgba(255, 255, 255, 0.35), 0 0 30px rgba(255, 255, 255, 0.18) !important;
  }
}

@keyframes supportPulseHover {
  0% {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.85), 0 0 25px rgba(255, 255, 255, 0.55), 0 0 35px rgba(255, 255, 255, 0.35) !important;
  }
  25% {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.65), 0 0 40px rgba(255, 255, 255, 0.45) !important;
  }
  50% {
    color: #ffffff !important;
    text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 35px rgba(255, 255, 255, 0.75), 0 0 45px rgba(255, 255, 255, 0.55) !important;
  }
  75% {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.65), 0 0 40px rgba(255, 255, 255, 0.45) !important;
  }
  100% {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.85), 0 0 25px rgba(255, 255, 255, 0.55), 0 0 35px rgba(255, 255, 255, 0.35) !important;
  }
}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  width:360px;
  min-width:360px;
  max-width:360px;
  justify-content:flex-end;
  height:44px;
  min-height:44px;
  max-height:44px;
}
.icon-btn{background:linear-gradient(180deg,#2a2a2e,#1a1a1e);border:1px solid var(--border);color:var(--text);border-radius:12px;padding:0;cursor:pointer;min-width:44px;height:44px;display:flex;align-items:center;justify-content:center;line-height:1.2;font-weight:500;box-sizing:border-box;position:relative;transition:all 0.3s ease;font-size:1rem;will-change:transform,box-shadow;transform:translateZ(0)}
.icon-btn:hover{background:var(--surface);border-color:var(--primary);color:var(--primary);transform:translateY(-1px);box-shadow:0 4px 15px rgba(255,255,255,0.2)}

/* Language Selector */
.language-selector{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  height:44px;
  min-height:44px;
  max-height:44px;
  flex-shrink:0;
}
.header-actions .user-menu-container{
  flex:1;
  min-width:0;
  display:none;
  height:44px;
  min-height:44px;
  max-height:44px;
}

.header-actions .user-menu-container.show {
  display:flex;
  align-items:center;
}
.lang-toggle{
  background:transparent !important;
  border:none !important;
  color:#fff;
  border-radius:0 !important;
  padding:0 !important;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  width:auto;
  min-width:0;
  max-width:100%;
  height:44px;
  min-height:44px;
  box-shadow:none !important;
  max-height:44px;
  line-height:1.2;
  font-weight:600;
  letter-spacing:0.01em;
  font-size:0.9rem;
  box-sizing:border-box;
  position:relative;
  overflow:visible;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  box-shadow:none !important;
  z-index:2;
}
.lang-toggle:hover{
  border:none !important;
  background:transparent !important;
  box-shadow:none;
  transform:none;
  opacity:0.8;
}
.lang-toggle:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:2px;
}
.lang-icon{
  width:16px;
  height:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:rgba(255,255,255,0.9);
  transition:transform 0.3s ease;
}
.lang-icon svg{
  width:16px;
  height:16px;
  stroke:#fff;
  opacity:0.9;
}
.lang-icon.animate{
  animation:langIconPulse 0.45s ease;
}
.lang-label{
  font-size:0.9rem;
  font-weight:600;
  letter-spacing:0.01em;
  color:#fff;
  white-space:nowrap;
}
.lang-arrow{
  display:none !important;
  transition:transform 0.3s ease;
  flex-shrink:0;
  color:rgba(255,255,255,0.9);
}
.language-selector.open .lang-arrow{
  transform:rotate(180deg);
}
.lang-dropdown{
  position:absolute;
  top:100%;
  right:0;
  margin-top:16px;
  min-width:200px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:8px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.05);
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:all 0.3s ease;
  display:flex;
  flex-direction:column;
  gap:4px;
  z-index:1200;
  overflow:visible;
  max-height:none;
}
.lang-dropdown.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.lang-option{
  border:none;
  background:transparent;
  color:#fff;
  padding:10px 12px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  transition:all 0.2s ease;
  font-size:0.9rem;
  font-family:inherit;
  text-align:left;
  width:100%;
  box-sizing:border-box;
}
.lang-option:hover{
  background:rgba(255,255,255,0.08);
}
.lang-option:focus-visible{
  outline:2px solid rgba(255,255,255,0.35);
}
.lang-option.active{
  background:rgba(255,255,255,0.1);
}
.lang-option-code{
  font-weight:600;
  letter-spacing:0.01em;
  font-size:0.9rem;
}
.lang-option-name{
  font-size:0.85rem;
  color:rgba(255,255,255,0.7);
}
.lang-icon.animate svg{
  opacity:0.9;
}

@keyframes langIconPulse{
  0%{
    transform:scale(1) rotate(0deg);
    box-shadow:0 0 0 rgba(255,255,255,0);
  }
  35%{
    transform:scale(0.85) rotate(-12deg);
    box-shadow:0 0 6px rgba(255,255,255,0.2);
  }
  70%{
    transform:scale(1.08) rotate(10deg);
    box-shadow:0 0 10px rgba(255,255,255,0.25);
  }
  100%{
    transform:scale(1) rotate(0deg);
    box-shadow:0 0 0 rgba(255,255,255,0);
  }
}
.icon{opacity:.9;display:flex;align-items:center;justify-content:center;line-height:1;font-size:1rem;width:1rem;height:1rem}
.login-btn{
  /* Match the "language" pill (glass) style */
  background:rgba(7,7,11,0.92) !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  padding:0 18px !important;
  border-radius:999px !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: visible !important;
  backdrop-filter:blur(14px) !important;
  -webkit-backdrop-filter:blur(14px) !important;
  box-shadow:0 12px 28px rgba(0,0,0,0.35) !important;
  flex-shrink: 0 !important;
}
.login-btn:hover{
  border-color:#ffffff !important;
  background:#ffffff !important;
  color:rgba(0,0,0,0.9) !important;
  box-shadow:none !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  transform: none !important;
}
.login-btn:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:2px;
}
.register-btn{
  /* Match the "language" pill (glass) style */
  background:rgba(7,7,11,0.92) !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  padding:0 18px !important;
  border-radius:999px !important;
  min-width: 110px !important;
  max-width: 110px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter:blur(14px) !important;
  -webkit-backdrop-filter:blur(14px) !important;
  box-shadow:0 12px 28px rgba(0,0,0,0.35) !important;
  flex-shrink: 0 !important;
}
.register-btn:hover{
  border-color:rgba(255,255,255,0.2) !important;
  background:rgba(12,12,18,0.95) !important;
  box-shadow:0 18px 35px rgba(0,0,0,0.45) !important;
}
.register-btn:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:2px;
}
/* Стили счетчика корзины удалены */
.admin-btn{
  background:linear-gradient(90deg,#2a2a2e,#1a1a1e);
  border:none;
  padding:0 16px;
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  font-size:0.95rem;
  font-weight:600;
  height:44px;
  min-height:44px;
  max-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1.2;
  box-sizing:border-box;
  transition:all 0.3s ease;
  flex-shrink:0;
}

/* Hero секция теперь содержит только баннер персонажа */
.hero {
  padding: 0 0 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

/* ==================== SECTION DIVIDER ==================== */
.section-divider {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border-top: none;
  border-bottom: none;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
  transition: opacity 0.3s ease;
  -webkit-mask: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.5) 25%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.2) 90%,
    transparent 100%
  );
  mask: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.5) 25%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.2) 90%,
    transparent 100%
  );
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
  transition: opacity 0.3s ease;
  -webkit-mask: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.5) 25%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.2) 90%,
    transparent 100%
  );
  mask: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.5) 25%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    rgba(0, 0, 0, 0.2) 90%,
    transparent 100%
  );
}


/* Бегущая строка */
.divider-ticker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  gap: 8px;
}

.ticker-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-pill-border {
  position: relative;
  padding: 1.5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  overflow: hidden;
}

.ticker-pill-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: #ffffff;
  border-radius: 13px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-sizing: border-box;
  backdrop-filter: blur(30px) saturate(250%);
  -webkit-backdrop-filter: blur(30px) saturate(250%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.ticker-pill-spin {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  overflow: hidden;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.ticker-pill:hover .ticker-pill-spin {
  opacity: 1;
}

.ticker-pill-spin-inside {
  inset: 0;
  border-radius: 16px;
  filter: blur(2px) url(#unopaq3);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
}

.ticker-pill-spin::before {
  content: "";
  position: absolute;
  inset: -150%;
  animation:
    speen 8s cubic-bezier(0.56, 0.15, 0.28, 0.86) infinite,
    woah 4s infinite;
  animation-play-state: running;
}

.ticker-pill-spin-inside::before {
  background: linear-gradient(90deg, #52525b 20%, #ffffff 30%, transparent 45% 55%, #ffffff 70%, #d4d4d8 80%);
}


@keyframes speen {
  0% {
    rotate: 10deg;
  }
  50% {
    rotate: 190deg;
  }
  to {
    rotate: 370deg;
  }
}

@keyframes woah {
  0%, to {
    scale: 1;
  }
  50% {
    scale: 0.75;
  }
}


.ticker-content .ticker-dot {
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0;
  flex-shrink: 0;
  font-weight: 600;
}

/* Wave Menu стили */
.wave-menu {
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  width: 200px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: ease 0.2s;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.wave-menu li {
  list-style: none;
  height: 30px;
  width: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 6px;
  padding: 0;
  animation-name: wave1;
  animation-duration: 0.3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: ease 0.2s;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.wave-menu:hover > li {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.wave-menu:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.5),
    inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.wave-menu li:nth-child(2) {
  animation-name: wave2;
  animation-delay: 0.2s;
}

.wave-menu li:nth-child(3) {
  animation-name: wave3;
  animation-delay: 0.23s;
  animation-duration: 0.4s;
}

.wave-menu li:nth-child(4) {
  animation-name: wave4;
  animation-delay: 0.1s;
  animation-duration: 0.3s;
}

.wave-menu li:nth-child(5) {
  animation-delay: 0.5s;
}

.wave-menu li:nth-child(6) {
  animation-name: wave2;
  animation-duration: 0.5s;
}

.wave-menu li:nth-child(8) {
  animation-name: wave4;
  animation-delay: 0.4s;
  animation-duration: 0.25s;
}

.wave-menu li:nth-child(9) {
  animation-name: wave3;
  animation-delay: 0.15s;
}

@keyframes wave1 {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0.5);
  }
}

@keyframes wave2 {
  from {
    transform: scaleY(0.3);
  }
  to {
    transform: scaleY(0.6);
  }
}

@keyframes wave3 {
  from {
    transform: scaleY(0.6);
  }
  to {
    transform: scaleY(0.8);
  }
}

@keyframes wave4 {
  from {
    transform: scaleY(0.2);
  }
  to {
    transform: scaleY(0.5);
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.btn{
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}
/* Анимация прохода света убрана */
.btn:hover{
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px) saturate(250%);
  -webkit-backdrop-filter: blur(30px) saturate(250%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 15px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  animation: none;
}
/* Анимация прохода света убрана */
.btn.primary{
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn.primary:hover{
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px) saturate(250%);
  -webkit-backdrop-filter: blur(30px) saturate(250%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  animation: none;
}
.btn.full{display:block;text-align:center;width:100%}
.btn.small{padding:6px 10px;font-size:.9rem}

/* Цены — белые */
.price, .cost, .amount, [class*="price"], [class*="cost"], [class*="amount"],
.product-price, .category-price, .card-price, .item-price {
  color: #ffffff !important;
}

/* Количество продуктов — приглушённый серый */
.category-count, .category-card .category-count {
  color: #a3a3b2 !important;
}

/* ==================== CHARACTER BANNER CONTENT ==================== */
.character-banner-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 0 40px 0;
  will-change: auto;
}

/* Главная: персонаж вплотную к .hero-promo-hud-strap (HUD внутри hero) */
body.page-home .hero {
  min-height: 500px;
  padding-bottom: 0;
  overflow: hidden;
}

body.page-home .hero > .container {
  display: flex;
  flex-direction: column;
}

body.page-home .character-banner-content {
  flex: 1 1 auto;
  padding-bottom: 0;
  align-items: stretch;
}

body.page-home .character-banner-image-container {
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  margin-bottom: 0;
}

body.page-home .character-banner-image {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100%;
  height: auto;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

/* Низ ровно на HUD-черте (−36px компенсирует margin HUD) */
body.page-home .character-banner-image img,
body.page-home #character-banner-image {
  width: 675px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  /* низ img = верх видимой HUD-линии */
  transform: translateY(-13px) scale(0.95) !important;
  transform-origin: bottom center !important;
  margin: 0 !important;
}

body.page-home .hero-promo-hud-strap {
  flex-shrink: 0;
  width: 100%;
  margin: -36px 0 0;
  padding: 0;
  position: relative;
  z-index: 5;
}

.character-banner-text {
  flex: 1;
  z-index: 2;
  position: relative;
  margin-top: 60px;
  /* Shared responsive size for the slogan (title + subtitle) */
  --hero-slogan-size: clamp(1.22rem, 0.9rem + 1.665vw, 2.16rem);
}

.character-banner-title {
  font-size: var(--hero-slogan-size);
  font-family: 'Onder', var(--font-main);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 20px 0;
  line-height: 1.55;
  text-shadow: 
    1px 1px 0 rgba(0, 0, 0, 0.8),
    2px 2px 4px rgba(0, 0, 0, 0.6),
    -1px -1px 0 rgba(255, 255, 255, 0.1);
}

.character-banner-subtitle {
  font-size: var(--hero-slogan-size);
  font-family: 'Onder', var(--font-main);
  color: var(--text);
  margin: 0 0 32px 0;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
  line-height: 1.55;
  text-shadow: 
    1px 1px 0 rgba(0, 0, 0, 0.8),
    2px 2px 4px rgba(0, 0, 0, 0.6),
    -1px -1px 0 rgba(255, 255, 255, 0.1);
}

.character-banner-stats {
  display: flex;
  gap: 20px;
  margin: 40px 0 20px 0;
}

.character-banner-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(30px) saturate(250%);
  -webkit-backdrop-filter: blur(30px) saturate(250%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, background;
  transform: translateZ(0);
  min-width: 150px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.character-banner-stat:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  transform: none;
}

.character-banner-stat .stat-icon {
  display: none;
}

.character-banner-stat .stat-icon.dollar-icon {
  display: none;
}

.character-banner-stat:hover .stat-icon {
  display: none;
}

.character-banner-stat .stat-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.character-banner-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.character-banner-stat .stat-label {
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.character-banner-stat:hover .stat-number {
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.character-banner-stat:hover .stat-label {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.character-banner-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.character-banner-btn {
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow, background;
  transform: translateZ(0);
  backdrop-filter: blur(30px) saturate(250%);
  -webkit-backdrop-filter: blur(30px) saturate(250%);
}

.character-banner-btn.primary {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.character-banner-btn.primary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.character-banner-btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.character-banner-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.character-banner-image-container {
  flex: 1;
  position: relative;
  z-index: 1;
  margin-top: 0px;
  min-height: 600px;
  overflow: visible !important;
  width: 100%;
}

.character-banner-image {
  position: absolute !important;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 90px !important;
  left: 0;
  right: 0;
  bottom: 0;
}

.character-banner-image img {
  width: 1500px !important;
  max-width: none !important;
  height: auto !important;
  max-height: 1500px !important;
  object-fit: contain !important;
  transform: translateY(49px) scale(0.45) !important;
  transition: opacity 0.3s ease;
  /* Улучшенное качество рендеринга для изображений с прозрачностью */
  /* Используем высококачественную интерполяцию вместо crisp-edges для плавных контуров */
  image-rendering: -webkit-optimize-contrast; /* Webkit - оптимизированный контраст */
  image-rendering: auto; /* Стандартное высокое качество интерполяции */
  /* Более качественная интерполяция при масштабировании */
  -ms-interpolation-mode: bicubic; /* IE - бикубическая интерполяция (плавная) */
  /* Предотвращение артефактов при рендеринге */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Игровые иконки удалены */

/* Анимации */
@keyframes titleGlow {
  0% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.3);
  }
}

/* Анимация iconFloat удалена */

/* Адаптивный дизайн для содержимого баннера */
@media (max-width: 1200px) {
  .character-banner-content {
    gap: 40px;
  }
  
  .character-banner-stats {
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .character-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .character-banner-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .character-banner-buttons {
    justify-content: center;
  }
  
  .character-banner-image img {
    width: 800px !important;
    max-height: 800px !important;
  }
}

@media (max-width: 768px) {
  .character-banner-content {
    padding: 30px 0;
  }

  body.page-home .character-banner-content {
    padding-bottom: 0;
  }
  
  .character-banner-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .character-banner-stat {
    width: 100%;
    max-width: 300px;
  }
  
  .character-banner-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .character-banner-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .character-banner-image img {
    width: 600px !important;
    max-height: 600px !important;
  }
  
  /* Игровые иконки удалены */
}

@media (max-width: 480px) {
  .character-banner-content {
    padding: 20px 0;
  }
  
  .character-banner-image img {
    width: 100% !important;
    max-width: 500px !important;
    max-height: 500px !important;
  }
  
  /* Игровые иконки удалены */
  
  /* Адаптивность разделителя */
  .section-divider {
    height: 40px;
  }
  
  .divider-line {
    height: 1px;
  }
  
  .ticker-content {
    animation: tickerScroll 25s linear infinite;
  }
  
  .ticker-content .loading svg {
    width: 200px;
    height: 38px;
  }
  
  .ticker-content .loading svg polyline {
    stroke-width: 4;
  }
  
  .wave-menu {
    width: 160px;
    height: 38px;
  }
  
  .wave-menu li {
    height: 25px;
    width: 3px;
    margin: 0 4px;
  }
}

/* ПРИНУДИТЕЛЬНОЕ УБИРАНИЕ АНИМАЦИЙ С КНОПОК ТЕЛЕГРАМ */
.character-banner-btn:hover {
  transform: none !important;
}

.character-banner-btn.primary:hover {
  transform: none !important;
}

.character-banner-btn.secondary:hover {
  transform: none !important;
}

/* СТИЛИ ДЛЯ СТАТУСНЫХ ПЛАШЕК С ПОДСКАЗКАМИ */
.status-badge, .product-status-badge {
  cursor: help !important;
}

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

/* Стилизованные подсказки в стиле liquid glass */
.status-badge:hover::after,
.product-status-badge:hover::after {
  content: attr(title) !important;
  position: absolute !important;
  bottom: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
  color: white !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  max-width: 300px !important;
  min-width: 200px !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
  text-align: center !important;
}

/* Стрелочка для подсказки */
.status-badge:hover::before,
.product-status-badge:hover::before {
  content: '' !important;
  position: absolute !important;
  bottom: calc(100% + 2px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: 6px solid transparent !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  z-index: 10000 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
}

/* Показываем подсказки при наведении */
.status-badge:hover::after,
.status-badge:hover::before,
.product-status-badge:hover::after,
.product-status-badge:hover::before {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ВСПЛЫВАЮЩИЕ ПОДСКАЗКИ ДЛЯ СТАТУСНЫХ ПЛАШЕК */

.status-tooltip {
  position: fixed !important;
  background: rgba(0, 0, 0, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  color: white !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  max-width: 280px !important;
  min-width: 200px !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  text-align: center !important;
}

.status-tooltip::after {
  content: '' !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: 6px solid transparent !important;
  border-top-color: rgba(0, 0, 0, 0.95) !important;
  pointer-events: none !important;
}

.status-badge:hover .status-tooltip,
.product-status-badge:hover .status-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Игровые иконки удалены */

















/* MyHacks.store EXACT COPY - Category Cards */
.catalog-section {
  padding: 70px 0 0 0;
  background: transparent;
  position: relative;
  overflow: visible;
  margin-top: -20px;
  margin-bottom: 0;
}

/* Убеждаемся, что содержимое отображается поверх градиента */
.catalog-section .container {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.catalog-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-family: inherit;
}

/* SEO-блок каталога */
.catalog-seo {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.catalog-seo__title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-family: inherit;
}

.catalog-seo__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

/* Простая строка поиска каталога */
.catalog-search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.catalog-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 4px 2px 10px;
  width: 100%;
  max-width: 480px;
  min-height: 44px;
  transition: border-color 0.2s ease;
}

.catalog-search-box:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.catalog-search-box:focus-within {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.catalog-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
  pointer-events: none;
}

.catalog-search-box:focus-within .catalog-search-icon {
  color: rgba(255, 255, 255, 0.85);
}

.catalog-search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 4px;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.catalog-search-input::-webkit-search-decoration,
.catalog-search-input::-webkit-search-cancel-button,
.catalog-search-input::-webkit-search-results-button,
.catalog-search-input::-webkit-search-results-decoration {
  display: none;
}

.catalog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.catalog-search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.catalog-search-clear[hidden] {
  display: none !important;
}

.catalog-search-clear:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Кнопка поиска (страница категории и legacy) */
.catalog-search-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.catalog-search-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.catalog-search-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .catalog-seo {
    margin-bottom: 22px;
    padding: 0 4px;
  }

  .catalog-seo__lead {
    font-size: 0.9rem;
  }

  .catalog-search-box {
    max-width: none;
  }
}

.categories-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  row-gap: 20px !important;
  column-gap: 20px !important;
  gap: 20px !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  justify-content: center !important;
}

.category-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.12s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 378px !important;
  max-width: 378px !important;
  min-width: 378px !important;
  height: auto !important;
  will-change: transform, box-shadow, background;
  backdrop-filter: blur(25px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
  transform: translateZ(0);
}

/* Затемнение карточки отключено */
.category-card::before {
  content: none;
  display: none;
}

.category-card:hover::before {
  opacity: 0;
}

/* ==================== КАРТОЧКИ ТОВАРОВ ==================== */
.product-card {
  position: relative;
  transition: all 0.3s ease;
}

/* Затемнение карточки товара отключено */
.product-card::before {
  content: none;
  display: none;
}

.product-card:hover::before {
  opacity: 0;
}

/* Убеждаемся, что содержимое карточки товара отображается поверх затемнения */
.product-card > div {
  position: relative;
  z-index: 2;
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.category-card:active {
  transform: translateY(0);
}

/* Область изображения игры */
.category-image {
  position: relative;
  width: 100%;
  height: 448px;
  overflow: hidden;
  background: #1a1a20;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: none;
}


/* Информационная область */
.category-info {
  padding: 16px 20px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.category-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
  font-family: inherit;
}

.category-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.category-count {
  font-size: 1rem;
  color: #a3a3b2 !important;
  font-weight: 600;
  font-family: inherit;
}

.category-price {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 900;
  font-family: inherit;
}

/* Responsive Design */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    row-gap: 20px !important;
    column-gap: 16px !important;
    gap: 20px 16px !important;
    padding: 0 16px !important;
    justify-content: center !important;
  }
  
  .category-card {
    padding: 16px;
  }
  
  .category-name {
    font-size: 1rem;
  }
  
  .category-count {
    font-size: 1rem;
  }
  
  .category-price {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 1201px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Global breadcrumbs */
.breadcrumbs {
  padding: 24px 0;
  background: transparent;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--muted);
  padding-left: 20px;
  padding-right: 20px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumbs a:visited {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.breadcrumbs span {
  color: var(--muted);
  font-weight: 500;
}

.breadcrumbs span:last-child,
.breadcrumbs [aria-current='page'],
.breadcrumbs .is-current {
  color: #ffffff;
  font-weight: 700;
  text-shadow: none;
}

.breadcrumbs .breadcrumb-separator {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}

.breadcrumbs .breadcrumb-separator::before {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  display: inline-block;
}

.category-breadcrumbs {
  background: transparent;
}

/* Category Hero - убрана фоновая плашка */
.category-hero{
  padding:40px 0;
  background:transparent !important;
}
/* Старые стили breadcrumb переопределены новыми стилями выше */
.category-header{display:block}
.category-info h1{font-size:2.5rem;margin:0 0 12px;color:var(--text)}
.category-info p{color:var(--muted);font-size:1.1rem;margin:0}
.category-image{overflow:hidden;border-radius:0 0 20px 20px}
.category-image img{width:100%;height:100%;object-fit:cover;border:1px solid var(--border)}

/* Category Products */
.category-products{padding:40px 0;max-width:100%;overflow:hidden}
.products-header{display:flex;align-items:center;justify-content:flex-start;margin-bottom:30px;flex-wrap:wrap;gap:16px}
.products-header h2{margin:0;color:var(--text)}

/* Category products - Simple Flexbox Layout */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
  max-width: 100%;
}

/* Product card with fixed dimensions */
.product-card {
  display: flex !important;
  flex-direction: column !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  color: inherit !important;
  text-decoration: none !important;
  transition: all 0.4s ease-out !important;
  cursor: pointer !important;
  position: relative !important;
  backdrop-filter: blur(25px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
  width: 400px !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  animation: float 7s ease-in-out infinite !important;
  will-change: transform !important;
}

/* Hover effects */
/* Анимация прохода света убрана */

.product-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  animation: none;
}

/* Анимация прохода света убрана */

/* Product image */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

/* Product info section */
.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-info h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-price {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products-grid {
    gap: 16px;
    margin: 20px 0;
  }
  
  .product-card {
    width: 100%;
    max-width: 400px;
  }
}
.product-actions .btn{flex:1;text-align:center;padding:8px 12px;font-size:0.9rem}
.price-teaser{color:var(--accent);margin:.3rem 0 0}

/* Стили модального окна корзины удалены */

/* New Product Page Styles */
.product-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-header h1 {
  font-size: 2.2rem;
  margin: 0;
  color: var(--text);
}

.product-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}


.product-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(34,197,94,0.2);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
}

.product-description h3,
.product-features h3 {
  font-size: 1.3rem;
  margin: 0 0 16px;
  color: var(--text);
}

.product-description p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-group h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin: 0;
  color: var(--text);
}

.feature-group h4::before {
  content: '●';
  color: var(--primary);
  font-size: 0.8rem;
}

.feature-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-btn:hover {
  background: var(--primary);
  color: white;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-video {
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.product-gallery img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s ease;
}

.product-gallery img:hover,
.product-gallery img.active {
  border-color: var(--primary);
}

.region-selection h4 {
  font-size: 1rem;
  margin: 0 0 12px;
  color: var(--text);
}

.region-buttons {
  display: flex;
  gap: 8px;
}

.region-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.region-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.region-btn:hover:not(.active) {
  border-color: var(--primary);
}

.flag {
  font-size: 1.2rem;
}

.product-pricing h4 {
  font-size: 1rem;
  margin: 0 0 16px;
  color: var(--text);
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.price-option {
  position: relative;
}

.price-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.price-option label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-option input[type="radio"]:checked + label {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.price-option label:hover {
  border-color: var(--primary);
}

.duration {
  font-weight: 600;
}

.price {
  font-weight: 900;
  color: var(--accent);
}

.price-option input[type="radio"]:checked + label .price {
  color: white;
}

.purchase-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #2a2a2e 0%, #1a1a1e 100%);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56,161,105,0.4);
}

.cashback-info {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.no-products{text-align:center;padding:60px 20px}
.no-products-content h3{color:var(--text);margin:0 0 12px}
.no-products-content p{color:var(--muted);margin:0 0 20px}


/* Product page */
.product-layout{display:grid;grid-template-columns:2.2fr 1fr;gap:20px;margin:18px 0}
.media-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.media-grid img{width:100%;height:220px;object-fit:cover;border-radius:10px;border:1px solid var(--border)}
.video-wrap{margin-top:12px}
.purchase{background:var(--surface);border:1px solid var(--border);border-radius:14px;padding:16px;height:fit-content}
.price-table{width:100%;border-collapse:collapse;margin:8px 0 12px}
.price-table th,.price-table td{border-bottom:1px solid var(--border);padding:8px;text-align:left}

/* Footer - новый дизайн по образцу up-game.pro */
/* Унифицированный отступ для всех страниц - разделительная черта на одном уровне */
.site-footer {
  border-top: none !important;
  padding: 60px 0 30px !important;
  margin-top: 100px !important;
  background: transparent !important;
  font-weight: 300;
  position: relative;
}

/* Разделительная линия в самом верху футера, ограниченная шириной контейнера контента */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92%);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Унифицируем нижние отступы основного контента на всех страницах */
main:not(.help-page) {
  padding-bottom: 100px !important;
}

main.help-page {
  overflow-x: hidden;
}

main.help-page .help-content {
  padding-bottom: 100px !important;
  overflow-x: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column:nth-child(3) {
  justify-self: end;
  align-items: flex-end;
  text-align: right;
}

.footer-title {
  font-family: 'Onder', var(--font-main, sans-serif);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.85),
    0 0 18px rgba(255, 255, 255, 0.45);
  outline: none;
}

.footer-links a svg {
  margin-right: 8px;
  opacity: 0.8;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  opacity: 1;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.social-link:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.social-link img {
  width: 36px;
  height: 36px;
  display: block;
  filter: grayscale(100%) brightness(0.85);
  opacity: 0.72;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.social-link:hover img,
.social-link:focus-visible img {
  filter: brightness(0) invert(1)
    drop-shadow(0 0 3px rgba(255, 255, 255, 1))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.45));
  opacity: 1;
  transform: scale(1.08);
}

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

.footer-copyright {
  flex: 1;
  min-width: 200px;
}

.footer-copyright p {
  font-family: 'CoFo Kak', sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-payments svg {
  height: 24px;
  width: auto;
  display: block;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: none;
  cursor: default;
}

.footer-payments svg:nth-child(2) {
  height: 31.68px;
}

.footer-payments svg:hover {
  opacity: 0.6;
  filter: grayscale(100%);
  transform: none;
}

/* Адаптивность для футера */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-payments {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Text Pages */
.text-page{
  padding: 60px 20px 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.text-box{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:30px;margin:20px 0;box-shadow:var(--shadow-soft)}

/* Terms Page - Modern Design */
.text-page {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.text-box {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  position: relative;
  overflow: visible;
}

.text-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(239, 68, 68, 0.8) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(239, 68, 68, 0.8) 100%);
  border-radius: 24px 24px 0 0;
}

.terms-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.terms-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.terms-header h3 {
  color: #fff;
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.terms-date {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.terms-date::before {
  content: '📅';
  font-size: 1rem;
}


/* Простой стиль без блоков - как на референсе */
.terms-simple-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 40px 20px;
}

.terms-main-title {
  font-family: 'Onder', var(--font-main, sans-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 30px 0;
  text-align: center;
}

.terms-title-accent {
  font-family: inherit;
  color: var(--text);
  text-shadow: none;
  animation: none;
}

.terms-section {
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  box-shadow: none;
}

.terms-section:hover {
  background: transparent;
  border: none;
  box-shadow: none;
}

.terms-section-title {
  color: var(--text);
  margin: 40px 0 20px 0;
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  letter-spacing: 0.2px;
}

.terms-section h4 {
  color: var(--text);
  margin: 40px 0 20px 0;
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  letter-spacing: 0.2px;
  padding: 0;
  border: none;
}

.terms-section h4::before,
.terms-section h4::after {
  display: none;
}

.terms-section h5 {
  color: #fff;
  margin: 32px 0 20px;
  font-size: 1.3rem;
  font-weight: 600;
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.2px;
}

.terms-section h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.35));
  border-radius: 2px;
}

.terms-section h6 {
  color: rgba(255, 255, 255, 0.95);
  margin: 20px 0 14px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
}

.terms-section h6::before {
  content: '▸';
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: none;
  transition: transform 0.2s ease;
}

.terms-section h6:hover::before {
  transform: translateX(3px);
}

.terms-simple-content p {
  margin: 0 0 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.terms-simple-content a,
.terms-section a,
.terms-item a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 2px;
}

.terms-simple-content a:hover,
.terms-simple-content a:focus-visible,
.terms-section a:hover,
.terms-section a:focus-visible,
.terms-item a:hover,
.terms-item a:focus-visible {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.terms-section p {
  margin: 0 0 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-section p strong {
  color: #fff;
  font-weight: 600;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.terms-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  position: relative;
  margin-bottom: 16px;
}

.terms-number {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 35px;
  text-align: left;
  line-height: 1.8;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  position: relative;
  display: inline-block;
  transition: none;
}

.terms-item:hover .terms-number {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: none;
  color: #fff;
}

.terms-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  flex: 1;
  font-size: 0.95rem;
}

/* Круглый маркер вместо тире (политика и др. списки) */
.terms-item:has(> .terms-number--bullet) {
  gap: 8px;
  align-items: stretch;
}

.terms-number.terms-number--bullet {
  font-size: 0;
  color: transparent;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  min-width: 10px;
  max-width: 10px;
  /* Высота строки как у текста пункта: font-size 0.95rem × line-height 1.8 */
  height: calc(0.95rem * 1.8);
  margin: 0;
  padding: 0;
  line-height: 0;
  flex-shrink: 0;
  align-self: flex-start;
  box-sizing: border-box;
}

.terms-number.terms-number--bullet::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Плашка ВАЖНО — нейтральные светлые тона */
.terms-important-label {
  --duration: 8s;
  --easing: ease-in-out;
  --c-color-1: rgba(255, 255, 255, 0.35);
  --c-color-2: rgba(230, 230, 238, 0.45);
  --c-color-3: rgba(200, 200, 210, 0.35);
  --c-color-4: rgba(255, 255, 255, 0.4);
  --c-shadow: rgba(255, 255, 255, 0.2);
  --c-shadow-inset-top: rgba(255, 255, 255, 0.55);
  --c-shadow-inset-bottom: rgba(255, 255, 255, 0.35);
  --c-radial-inner: #d4d4dc;
  --c-radial-outer: #f0f0f4;
  --c-color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
  border: none;
  display: table;
  border-radius: 24px;
  padding: 0;
  margin: 32px auto 20px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--c-color);
  background: radial-gradient(
    circle,
    var(--c-radial-inner),
    var(--c-radial-outer) 80%
  );
  box-shadow: 0 0 20px var(--c-shadow), 0 0 40px rgba(239, 68, 68, 0.3);
  width: 100%;
  overflow: visible;
}

.terms-important-label:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow:
    inset 0 3px 12px var(--c-shadow-inset-top),
    inset 0 -3px 4px var(--c-shadow-inset-bottom);
}

.terms-important-label .wrapper {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  overflow: hidden;
  border-radius: 24px;
  min-width: 132px;
  padding: 12px 0;
  position: relative;
}

.terms-important-label .wrapper span {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.terms-important-label:hover {
  --duration: 1200ms;
  box-shadow: 0 0 30px var(--c-shadow), 0 0 60px rgba(239, 68, 68, 0.5);
}

.terms-important-label:hover .wrapper .circle {
  opacity: 1;
  filter: blur(var(--blur, 12px)) brightness(1.2);
}

.terms-important-label .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  filter: blur(var(--blur, 12px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
  opacity: 0.9;
  will-change: transform;
}

.terms-important-label .wrapper .circle.circle-1,
.terms-important-label .wrapper .circle.circle-9,
.terms-important-label .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.terms-important-label .wrapper .circle.circle-3,
.terms-important-label .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 18px;
}

.terms-important-label .wrapper .circle.circle-5,
.terms-important-label .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 20px;
}

.terms-important-label .wrapper .circle.circle-2,
.terms-important-label .wrapper .circle.circle-7,
.terms-important-label .wrapper .circle.circle-8,
.terms-important-label .wrapper .circle.circle-11,
.terms-important-label .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 16px;
}

.terms-important-label .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.terms-important-label .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.terms-important-label .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.terms-important-label .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.terms-important-label .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.terms-important-label .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.terms-important-label .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.terms-important-label .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.terms-important-label .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.terms-important-label .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.terms-important-label .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.terms-important-label .wrapper .circle.circle-12 {
  --blur: 18px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

@keyframes circle-1 {
  33% {
    transform: translate(0px, 16px) translateZ(0);
  }
  66% {
    transform: translate(12px, 64px) translateZ(0);
  }
}

@keyframes circle-2 {
  33% {
    transform: translate(80px, -10px) translateZ(0);
  }
  66% {
    transform: translate(72px, -48px) translateZ(0);
  }
}

@keyframes circle-3 {
  33% {
    transform: translate(20px, 12px) translateZ(0);
  }
  66% {
    transform: translate(12px, 4px) translateZ(0);
  }
}

@keyframes circle-4 {
  33% {
    transform: translate(76px, -12px) translateZ(0);
  }
  66% {
    transform: translate(112px, -8px) translateZ(0);
  }
}

@keyframes circle-5 {
  33% {
    transform: translate(84px, 28px) translateZ(0);
  }
  66% {
    transform: translate(40px, -32px) translateZ(0);
  }
}

@keyframes circle-6 {
  33% {
    transform: translate(28px, -16px) translateZ(0);
  }
  66% {
    transform: translate(76px, -56px) translateZ(0);
  }
}

@keyframes circle-7 {
  33% {
    transform: translate(8px, 28px) translateZ(0);
  }
  66% {
    transform: translate(20px, -60px) translateZ(0);
  }
}

@keyframes circle-8 {
  33% {
    transform: translate(32px, -4px) translateZ(0);
  }
  66% {
    transform: translate(56px, -20px) translateZ(0);
  }
}

@keyframes circle-9 {
  33% {
    transform: translate(20px, -12px) translateZ(0);
  }
  66% {
    transform: translate(80px, -8px) translateZ(0);
  }
}

@keyframes circle-10 {
  33% {
    transform: translate(68px, 20px) translateZ(0);
  }
  66% {
    transform: translate(100px, 28px) translateZ(0);
  }
}

@keyframes circle-11 {
  33% {
    transform: translate(4px, 4px) translateZ(0);
  }
  66% {
    transform: translate(68px, 20px) translateZ(0);
  }
}

@keyframes circle-12 {
  33% {
    transform: translate(56px, 0px) translateZ(0);
  }
  66% {
    transform: translate(60px, -32px) translateZ(0);
  }
}

/* Forbidden Software Section */
.forbidden-software {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.software-category {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
}

.software-category h6 {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.software-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.software-category li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  position: relative;
  padding-left: 12px;
}

.forbidden-software{margin-top:20px}
.software-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px;margin-top:16px}
.software-category{background:none;border:none;padding:0}
.software-category h6{color:#f87171;margin:0 0 10px;font-size:0.85rem;text-transform:uppercase;letter-spacing:0.4px}
.software-category ul{list-style:none;margin:0;padding:0;border-left:1px solid rgba(255,255,255,0.08);padding-left:12px}
.software-category li{color:#d4d4d8;font-size:0.85rem;padding:3px 0;border:none}

/* Help Page Styles - Industries Cheat Store Style */
.help-page {
  background: transparent;
  min-height: 100vh;
  padding: 0;
}

/* Футер на странице help такой же, как на всех других страницах */
main.help-page ~ .site-footer {
  margin-top: 0 !important;
  padding-top: 60px !important;
  position: relative;
  z-index: 2;
  background: transparent !important;
}

/* Help / Blog page title — без своего фона, только общий mesh сайта */
.help-hero {
  background: transparent;
  padding: 72px 0 40px;
  text-align: center;
  position: relative;
  overflow: visible;
  width: 100%;
  margin: 0;
}

.help-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.help-hero-title {
  font-family: 'Onder', var(--font-main, sans-serif);
  font-size: clamp(1rem, 0.7rem + 1vw, 1.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 12px 0;
  text-align: center;
  letter-spacing: 0.04em;
  text-shadow: none;
}

.help-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
  font-weight: 500;
  max-width: 36rem;
  line-height: 1.5;
  text-shadow: none;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.blog-page .help-hero {
  padding: 64px 0 36px;
}

/* Help Content */
.help-content {
  padding: 40px 0 0 0;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 0;
  overflow: visible;
  background: transparent;
}

/* Красивый плавный переход к футеру - применяется к секции поддержки */

.help-section {
  margin-bottom: 100px;
  text-align: center;
}

.help-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
}

.help-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
  border-radius: 2px;
}

/* Help Cards Grid */
.help-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.help-card {
  /* Liquid Glass Effect */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  ) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 36px !important;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  cursor: default;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  outline: none !important;
  filter: none !important;
}

/* Полностью удалены все анимации и hover эффекты с карточек */

/* Убираем hover эффекты со всей карточки */
.help-card:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  ) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transform: none !important;
  transition: none !important;
}

/* Убираем hover со всех элементов внутри карточки кроме кнопок */
.help-card:hover > *:not(.help-card-content),
.help-card:hover .help-card-content > *:not(.help-card-btn-new),
.help-card:hover .help-card-text {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Фиксируем цвета текста при hover */
.help-card:hover .help-card-title {
  color: #ffffff !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.help-card:hover .help-card-desc {
  color: #a3a3b2 !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Убираем любые фокус эффекты */
.help-card:focus,
.help-card:focus-visible,
.help-card:active {
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  outline: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.help-card-icon {
  display: none;
}

/* Icon Styles - отключены все эффекты */
.icon-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
  /* transition: all 0.3s ease; */ /* Отключено */
}

/* .icon-image:hover {
  transform: scale(1.05);
} */ /* Отключено */

.icon-visual-cpp {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
}

.icon-directx {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.icon-net-framework {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.icon-nvidia {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.icon-amd {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: white;
}

.icon-driver-pack {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.icon-smartscreen {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.icon-defender {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.icon-uac {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: white;
}

.icon-secure-boot {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: white;
}

.icon-winrar {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
}

.icon-screenshot {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.icon-teamviewer {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.icon-anydesk {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: white;
}

.help-card-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  min-height: 60px;
  pointer-events: none; /* Отключаем интерактивность для контента карточки */
}

.help-card-content * {
  pointer-events: auto; /* Включаем обратно только для кнопки */
}

.help-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  pointer-events: none !important; /* Текст не реагирует на hover */
}

.help-card-text:hover {
  opacity: 1 !important; /* Без изменений */
}

.help-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.2;
  text-align: left;
  transition: none !important;
  pointer-events: none !important; /* Не реагирует на наведение */
}

.help-card-title:hover {
  color: #ffffff !important;
  opacity: 1 !important;
}

.help-card-desc {
  font-size: 0.85rem;
  color: #a3a3b2 !important;
  margin: 0;
  line-height: 1.3;
  text-align: left;
  transition: none !important;
  pointer-events: none !important; /* Не реагирует на наведение */
}

.help-card-desc:hover {
  color: #a3a3b2 !important;
  opacity: 1 !important;
}

/* Убираем изменения цвета при hover на карточке */
.help-card:hover .help-card-title {
  color: #ffffff !important;
}

.help-card:hover .help-card-desc {
  color: #a3a3b2 !important;
}

.help-card-btn {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  border: none;
  border-radius: 36px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.help-card-btn:hover {
  background: #2563eb;
  transform: scale(1.05);
}

.help-card-btn svg {
  width: 16px;
  height: 16px;
}

/* New Download Button Styles */
.help-card-btn-new {
  color: rgba(255, 255, 255, 0.692);
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-shadow: 0 0 20px rgba(255, 255, 255, 0.397); */ /* Убрано свечение */
  background: rgba(255, 255, 255, 0.068);
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 8px;
  border-radius: 36px !important;
  transition: 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  min-width: 60px;
  margin: 0;
}

/* Анимация кнопок скачивания отключена - статичные кнопки */
.help-card-btn-new:hover {
  transform: scale(1.0);
}

.help-card-btn-new:active {
  transform: scale(0.98);
}

.help-card-btn-new svg {
  width: 28px;
  height: 24px;
}

/* Information Section */
.help-info-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(228, 228, 231, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}

.help-info-content {
  max-width: 800px;
  margin: 0 auto;
}

.help-info-text {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

.help-info-text strong {
  color: var(--primary);
  font-weight: 700;
}

/* Support Section */
.help-support-section {
  margin: 140px 0 0 0;
  text-align: center;
  background: transparent !important;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: visible;
}


.help-support-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 50px 0;
}

.help-support-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.help-support-link {
  /* Liquid Glass Effect */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  ) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  border-radius: 36px !important;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
}

.help-support-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.help-support-link:hover {
  transform: none;
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.help-support-link:hover::before {
  left: -100%;
}

.help-support-link.discord:hover {
  transform: none;
  border-color: #5865f2;
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.2);
}

.help-support-link.telegram:hover {
  transform: none;
  border-color: #0088cc;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.2);
}

.support-link-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.help-support-link.discord .support-link-icon {
  background: #5865f2;
}

.help-support-link.telegram .support-link-icon {
  background: #0088cc;
}

.support-link-content {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 1;
}

.support-link-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.support-link-content p {
  font-size: 0.85rem;
  color: #a3a3b2 !important;
  margin: 6px 0 0 0;
  line-height: 1.3;
  text-align: left;
}

/* New Support Blocks */
.help-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px 100px 20px;
  background: transparent !important;
}

@media (min-width: 769px) {
  .help-support-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.support-block {
  background: transparent !important;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 240px;
}

.support-block-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.support-block-desc {
  font-size: 1rem;
  color: #a3a3b2;
  margin: 0 0 30px 0;
  line-height: 1.6;
  max-width: 90%;
}

.support-block-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 36px !important;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  margin-top: auto;
}

.support-block-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.discord-btn {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.discord-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.discord-btn:hover svg {
  transform: scale(1.1);
}

.telegram-btn {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.telegram-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.telegram-btn:hover svg {
  transform: scale(1.1);
}

/* Убираем серый фон у блоков поддержки */
.discord-block,
.telegram-block {
  background: transparent !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .help-hero {
    padding: 56px 0 32px;
  }

  .help-hero-title {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
  }
  
  .help-hero-subtitle {
    font-size: 1rem;
    max-width: 90%;
  }

  .blog-page .help-hero {
    padding: 48px 0 28px;
  }
  
  .help-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
  
  .help-card {
    /* Liquid Glass Effect - Mobile */
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    height: auto;
    min-height: 90px;
    padding: 16px;
  }
  
  .help-card-content {
    gap: 12px;
  }
  
  .help-card-btn-new {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .help-card-btn-new svg {
    width: 24px;
    height: 20px;
  }
  
  .help-card-title {
    font-size: 0.95rem;
  }
  
  .help-card-desc {
    font-size: 0.8rem;
  }
  
  .help-support-links {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
  
  .help-support-link {
    height: auto;
    min-height: 90px;
    padding: 16px;
  }

  .help-support-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }
  
  .support-block {
    min-height: auto;
  }

  .support-block-title {
    font-size: 1.5rem;
  }

  .support-block-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .help-hero {
    padding: 44px 0 28px;
  }
  
  .help-hero-title {
    font-size: 0.925rem;
    margin: 0 0 10px 0;
  }

  .help-hero-subtitle {
    font-size: 0.95rem;
    max-width: 95%;
    line-height: 1.5;
  }

  .blog-page .help-hero {
    padding: 40px 0 24px;
  }
  
  .help-content {
    padding: 20px 0;
  }
  
  .help-section {
    margin-bottom: 80px;
  }
  
  .help-section-title {
    font-size: 1.5rem;
  }
  
  .help-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  
  .help-card {
    /* Liquid Glass Effect - Small Mobile */
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    height: auto;
    min-height: 80px;
    padding: 14px;
  }
  
  .help-card-content {
    gap: 10px;
  }
  
  .help-card-btn-new {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
  
  .help-card-btn-new svg {
    width: 22px;
    height: 18px;
  }
  
  .help-card-title {
    font-size: 0.9rem;
  }
  
  .help-card-desc {
    font-size: 0.75rem;
  }

  .help-support-links {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  
  .help-support-link {
    height: auto;
    min-height: 80px;
    padding: 14px;
  }

  .help-support-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 12px;
  }
  
  .support-block {
    min-height: auto;
  }

  .support-block-title {
    font-size: 1.3rem;
  }

  .support-block-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .support-block-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

/* Responsive */
@media (max-width: 1024px){
  .stats-strip {
    padding: 24px 16px;
    gap: 6px;
  }
  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
    margin-right: 0;
  }
  .stat-value {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .stat-divider {
    width: 1px;
    height: 45px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), rgba(228, 228, 231, 0.4), transparent);
    margin: 0 12px;
  }
  .categories-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:16px}
  .category-card{width:250px}
  .products-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:20px}
  .software-grid{grid-template-columns:repeat(2,1fr)}
}
/* Product page styles */
.product-hero {
  padding: 20px 0;
  background: transparent !important;
}

.product-details {
  padding: 40px 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.product-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.product-gallery img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-gallery img:hover {
  border-color: var(--primary);
}

.product-video {
  margin-top: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

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

.product-header h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--text);
}

.product-description {
  margin-bottom: 30px;
}

.product-description h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.product-pricing {
  margin-bottom: 30px;
}

.product-pricing h3 {
  margin-bottom: 15px;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.price-option {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}

.price-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.price-duration {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.product-features {
  margin-bottom: 30px;
}

.product-features h3 {
  margin-bottom: 15px;
  color: var(--text);
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  margin-right: 10px;
}

.product-actions {
  display: flex;
  gap: 15px;
}

.product-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

.error-message {
  text-align: center;
  padding: 60px 20px;
}

.error-message h1 {
  color: var(--error);
  margin-bottom: 20px;
}

.error-message p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

@media (max-width: 1024px){
  .site-header{height:77px !important;min-height:77px !important;max-height:77px !important}
  .header-inner{flex-wrap:nowrap !important;gap:8px !important;padding:14px 0 14px 0 !important}
  .header-left{flex:0 0 auto !important;min-width:auto !important;max-width:none !important;width:auto !important;height:100px !important;min-height:100px !important;max-height:100px !important;justify-content:flex-start !important;left:0 !important;margin-left:-25px !important;padding:0 !important;transform:translateX(-3px) !important}
  .site-header .brand-logo{left:0 !important;margin:0 !important;padding:0 !important}
  .site-header .container.header-inner{padding-left:0 !important;padding-right:0 !important}
  .header-center{flex:0 0 auto !important;width:auto !important;height:44px !important;min-height:44px !important;max-height:44px !important;margin:0 !important;margin-left:30px !important;padding:0 !important;justify-content:flex-start !important}
  .header-inner{justify-content:space-between !important;gap:0 !important}
  .site-nav{justify-content:flex-start !important;width:auto !important;margin-left:0 !important;padding-left:0 !important}
  .site-nav ul{justify-content:flex-start !important;margin-left:0 !important;padding-left:0 !important}
  .header-right{flex:0 0 280px !important;min-width:280px !important;max-width:280px !important;width:280px !important;height:44px !important;min-height:44px !important;max-height:44px !important;margin:0 !important;padding:0 !important}
  .site-header .header-actions{min-width:280px !important;max-width:280px !important;width:280px !important;gap:12px !important}
  .brand{color:#fff !important;text-decoration:none !important;font-family:var(--font-main) !important;font-weight:700 !important;letter-spacing:.5px !important;font-size:2.2rem !important;line-height:1.2 !important;display:flex !important;align-items:center !important;height:44px !important;width:209px !important}
  .brand-logo{height:100px !important;min-height:100px !important;max-height:100px !important;width:auto !important;min-width:auto !important;max-width:none !important}
  .logo-img{height:100px !important;width:auto !important;max-width:none !important}
  .site-nav{height:44px !important;min-height:44px !important;max-height:44px !important}
  .site-nav ul{gap:12px}
  .site-nav a{padding:0 16px;font-size:1rem;height:44px !important;min-height:44px !important;max-height:44px !important}
  .header-actions{min-width:280px !important;max-width:280px !important;gap:10px;height:44px !important;min-height:44px !important;max-height:44px !important}
  .icon-btn{min-width:44px;max-width:44px;height:44px !important;min-height:44px !important;max-height:44px !important;padding:0;font-size:1rem}
  .lang-toggle{height:44px !important;min-height:44px !important;max-height:44px !important;padding:0 !important;background:transparent !important;border:none !important;font-size:0.9rem !important}
  .login-btn{min-width:160px !important;max-width:160px !important;width:160px !important;height:44px !important;min-height:44px !important;max-height:44px !important;padding:0 12px !important;font-size:1rem !important}
  .register-btn{min-width:110px !important;max-width:110px !important;height:44px !important;min-height:44px !important;max-height:44px !important;padding:0 16px !important;font-size:0.8rem !important}
  .icon{font-size:1rem;width:1rem;height:1rem}
  .search-wrap .icon{font-size:1.4rem !important;width:1.4rem !important;height:1.5rem !important}
  .globe-icon{font-size:1rem;width:1rem;height:1rem}
}

@media (max-width: 680px){
  .site-header{height:auto !important;min-height:auto !important;max-height:none !important;padding:12px 0}
  .header-inner{flex-direction:column !important;align-items:center;gap:12px;flex-wrap:nowrap !important;padding:12px 0 12px 0 !important}
  .header-left{flex:none !important;order:1;width:auto !important;min-width:auto !important;max-width:none !important;justify-content:center;height:100px !important;min-height:100px !important;max-height:100px !important;left:0 !important;right:auto !important;transform:translateX(-3px) !important;margin-left:-25px !important;padding:0 !important}
  .site-header .brand-logo{left:0 !important;right:auto !important;transform:none !important;margin:0 !important;padding:0 !important}
  .site-header .container.header-inner{padding-left:0 !important;padding-right:0 !important}
  .header-center{order:2;width:100%;height:44px !important;min-height:44px !important;max-height:44px !important}
  .header-right{flex:none !important;order:3;width:auto !important;min-width:auto !important;max-width:none !important;justify-content:center;height:44px !important;min-height:44px !important;max-height:44px !important}
  .brand{color:#fff !important;text-decoration:none !important;font-family:var(--font-main) !important;font-weight:700 !important;letter-spacing:.5px !important;text-align:center !important;font-size:2.2rem !important;line-height:1.2 !important;display:flex !important;align-items:center !important;height:44px !important;width:209px !important}
  .brand-logo{height:100px !important;min-height:100px !important;max-height:100px !important;width:auto !important;min-width:auto !important;max-width:none !important}
  .logo-img{height:100px !important;width:auto !important;max-width:none !important}
  .site-nav{justify-content:flex-start !important;height:44px !important;min-height:44px !important;max-height:44px !important;width:auto !important;margin-left:0 !important;padding-left:0 !important}
  .site-nav ul{gap:8px;flex-wrap:wrap;justify-content:flex-start !important}
  .site-nav a{padding:0 16px;font-size:1rem !important;min-width:auto;height:44px !important;min-height:44px !important;max-height:44px !important}
  .header-actions{justify-content:center;flex-wrap:wrap;gap:8px;height:44px !important;min-height:44px !important;max-height:44px !important;min-width:auto !important;max-width:none !important}
  .language-selector{height:40px !important;min-height:40px !important;max-height:40px !important}
  .icon-btn{min-width:36px;max-width:36px;height:36px !important;min-height:36px !important;max-height:36px !important;padding:0;font-size:0.8rem}
  .lang-toggle{height:40px !important;min-height:40px !important;max-height:40px !important;padding:0 !important;background:transparent !important;border:none !important;font-size:0.85rem !important}
  .login-btn{min-width:160px !important;max-width:160px !important;width:160px !important;height:44px !important;min-height:44px !important;max-height:44px !important;padding:0 12px !important;font-size:1rem !important}
  .register-btn{min-width:110px !important;max-width:110px !important;height:44px !important;min-height:44px !important;max-height:44px !important;padding:0 16px !important;font-size:0.8rem !important}
  .icon{font-size:0.8rem;width:0.8rem;height:0.8rem}
  .search-wrap .icon{font-size:1.3rem !important;width:1.3rem !important;height:1.4rem !important}
  .globe-icon{font-size:0.8rem;width:0.8rem;height:0.8rem}
  
  /* Адаптивность для товаров */
  .products-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}
  .product-actions{flex-direction:column;gap:6px}
  .product-actions .btn{padding:8px 10px;font-size:0.8rem}
  .product-actions .btn .text{display:none}
  .product-actions .btn .icon{font-size:1.2rem}
  
  /* Terms page responsive */
  .text-box {
    padding: 40px 24px;
  }
  
  .terms-header h3 {
    font-size: 1.8rem;
  }
  
  .terms-section {
    padding: 24px 20px;
  }
  
  .terms-section h4 {
    font-size: 1.3rem;
  }
  
  .terms-item {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  
  .terms-number {
    min-width: auto;
    width: fit-content;
    align-self: flex-start;
  }
  
  .software-grid {
    grid-template-columns: 1fr;
  }
  
  .terms-important-label {
    font-size: 0.95rem;
    padding: 12px 16px;
  }
}
  .stats-strip {
    padding: 20px 12px;
    gap: 4px;
  }
  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .stat-icon {
    font-size: 1.6rem;
    margin-bottom: 4px;
    margin-right: 0;
  }
  .stat-value {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
  .stat-label {
    font-size: 0.65rem;
  }
  .stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), rgba(228, 228, 231, 0.4), transparent);
    margin: 0 10px;
  }
  .categories-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}
  .category-card{width:100%;max-width:300px}
  .product-layout{grid-template-columns:1fr}
  .media-grid{grid-template-columns:1fr}
  .software-grid{grid-template-columns:1fr}
  .text-box{padding:20px}

/* ==================== МЕНЮ ПОЛЬЗОВАТЕЛЯ ==================== */
.user-menu-container {
  position: relative;
  display: inline-block;
}

.user-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(30px) saturate(250%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(250%) !important;
  text-decoration: none !important;
  width: auto;
  max-width: 160px;
  min-width: 0;
  box-sizing: border-box;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.user-info{
  display:flex;
  flex-direction:column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  line-height:1.15;
  min-width:0;
  max-width:100%;
  flex: 1;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.user-menu-trigger:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.user-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.15;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.user-balance{
  font-size:0.75rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.15;
  white-space:nowrap;
  margin: 0;
  padding: 0;
}

.user-menu-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.user-menu-container.active .user-menu-arrow {
  transform: rotate(180deg);
}

.user-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 16px;
  min-width: 200px;
  background: #141416;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  overflow: hidden;
  max-height: none;
  padding: 4px;
}

.user-menu-container.active .user-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding: 0 14px;
  margin: 0;
  color: #ffffff;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.user-menu-item:hover,
.user-menu-item:focus-visible {
  background: #ffffff;
  color: rgba(0, 0, 0, 0.9);
  outline: none;
}

.user-menu-item:first-child {
  border-radius: 8px;
}

.user-menu-item:last-child {
  border-radius: 8px;
}

.user-menu-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.8;
  color: currentColor;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.user-menu-item:hover svg,
.user-menu-item:focus-visible svg {
  opacity: 1;
  color: rgba(0, 0, 0, 0.9);
}

.logout-btn:hover,
.logout-btn:focus-visible {
  background: #ffffff;
  color: rgba(0, 0, 0, 0.9);
}

.logout-btn:hover svg,
.logout-btn:focus-visible svg {
  color: rgba(0, 0, 0, 0.9);
}

/* Адаптивность для меню пользователя */
@media (max-width: 768px) {
  .user-name {
    max-width: 80px;
    font-size: 0.85rem;
  }
  
  .user-menu-dropdown {
    min-width: 180px;
    right: -10px;
  }
  
  .user-menu-item {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .user-name {
    max-width: 60px;
    font-size: 0.8rem;
  }
  
  .user-menu-dropdown {
    min-width: 160px;
    right: -20px;
  }
  
  .user-menu-item {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* ПРИНУДИТЕЛЬНЫЕ ПРАВИЛА ДЛЯ АДАПТИВНЫХ КАРТОЧЕК */
#categoriesGrid.categories-grid,
.catalog-section .categories-grid,
main .categories-grid {
  column-gap: 20px !important;
  gap: 20px !important;
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  #categoriesGrid.categories-grid,
  .catalog-section .categories-grid,
  main .categories-grid,
  body .categories-grid {
    column-gap: 16px !important;
    gap: 20px 16px !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Сетка категорий: раскладка. Декор — только .catalog-hud-strap (линия + скруглённые скобы), без коробки. */
#catalog-section #categoriesGrid.categories-grid,
.catalog-section #categoriesGrid.categories-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Обертка сетки: без рамки и подсветки — декор только .catalog-hud-strap (линия + скобы). */
#catalog-section .category-grid-hud-shell,
.catalog-section .category-grid-hud-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 8px auto 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  overflow: visible;
}

#catalog-section .category-grid-hud-shell .categories-grid,
.catalog-section .category-grid-hud-shell .categories-grid {
  position: relative;
  z-index: 1;
}

#catalog-section .category-grid-hud-shell::before,
.catalog-section .category-grid-hud-shell::before,
#catalog-section .category-grid-hud-shell::after,
.catalog-section .category-grid-hud-shell::after {
  display: none;
}

/* Вертикальная (портретная) ориентация карточек категорий на главной странице */
#catalog-section .categories-grid .category-card {
  width: 378px !important;
  min-width: 378px !important;
  height: 448px !important; /* ровно по высоте картинки */
  background: rgba(0, 0, 0, 0.42) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
}

#catalog-section .categories-grid .category-card:hover {
  background: rgba(0, 0, 0, 0.32) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

/* Скелетоны пока грузится API категорий */
#catalog-section .categories-grid .category-card--skeleton {
  pointer-events: none !important;
  cursor: default !important;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.09) 45%,
    rgba(255, 255, 255, 0.04) 90%
  ) !important;
  background-size: 200% 100% !important;
  animation: category-skeleton-shimmer 1.2s ease-in-out infinite !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
}

@keyframes category-skeleton-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

#catalog-section .categories-grid .category-image {
  width: 100% !important;
  height: 100% !important;
}

#catalog-section .categories-grid .category-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Плашка с текстом поверх изображения */
#catalog-section .category-card .category-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
}

#catalog-section .category-card .category-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
  filter: brightness(0.88) contrast(1.03);
  transition: filter 0.3s ease, transform 0.3s ease;
}

#catalog-section .category-card:hover .category-image img {
  filter: brightness(0.94) contrast(1.03);
}

/* Лёгкий тёмный градиент поверх баннера */
#catalog-section .category-card .category-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

#catalog-section .category-card .category-info {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 20px 16px;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 12, 0) 0%,
    rgba(8, 8, 12, 0.72) 35%,
    rgba(6, 6, 10, 0.92) 100%
  );
  display: block;
  flex: none !important; /* не занимать место в потоке */
  z-index: 4;
}

/* Затемнение карточек товаров отключено */
.product-card::before {
  content: none !important;
  display: none !important;
}

.product-card:hover::before {
  opacity: 0 !important;
}

.product-card > div {
  position: relative !important;
  z-index: 2 !important;
}

/* Simple Stats Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Покачивание для элементов статистики */
@keyframes gentleWobble {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(1px, -1px, 0) rotate(0.5deg);
  }
  50% {
    transform: translate3d(0, -2px, 0) rotate(0deg);
  }
  75% {
    transform: translate3d(-1px, -1px, 0) rotate(-0.5deg);
  }
}
  .terms-item{flex-direction:column;gap:8px}
  .terms-number{min-width:auto;width:fit-content}
  .icon-btn{padding:6px 8px;font-size:0.9rem}
  .login-btn{padding:6px 10px;font-size:0.85rem}

/* Оптимизированные стили для карточек каталога */
.catalog-card {
  /* Начальные стили */
  transform: translateY(0) scale(1);
  border-color: var(--border);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255,255,255,0.2);
  
  /* Оптимизированные переходы */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  
  /* Принудительное GPU ускорение */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.catalog-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-deep), 0 0 40px rgba(255,255,255,0.4), 0 0 0 1px rgba(255,255,255,0.3);
}
  
  /* Product page mobile styles */
  .product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }

/* ПРИНУДИТЕЛЬНЫЕ GLASSMORPHISM СТИЛИ (без .category-card — у него HUD в #catalog-section, см. конец файла) */
.product-card, .catalog-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(40px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}

.product-card:hover, .catalog-card:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(50px) saturate(250%) !important;
  -webkit-backdrop-filter: blur(50px) saturate(250%) !important;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}

/* ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ВСЕХ ВОЗМОЖНЫХ КАРТОЧЕК */
.card, .game-card, .item-card, .tile, .panel {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(40px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}
  
  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .product-header h1 {
    font-size: 1.5rem;
  }
  
  .product-actions {
    flex-direction: column;
  }

/* ==================== ПРИНУДИТЕЛЬНЫЕ РАЗМЕРЫ ХЕДЕРА НА ВСЕХ СТРАНИЦАХ ==================== */
/* Унифицированные размеры для всех элементов хедера */
.site-header .site-nav a {
  font-family: var(--font-main) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  padding: 0 10px !important;
  overflow: visible !important;
  transform: none !important;
  will-change: auto !important;
}

/* Принудительное скрытие кнопок входа/регистрации при авторизации */
.site-header .login-btn.hidden,
.site-header .register-btn.hidden {
  display: none !important;
}

/* Меню пользователя скрыто по умолчанию */
.site-header .user-menu-container {
  display: none;
}

/* Стили применяются только когда пользователь авторизован */

/* Принудительные стили для меню пользователя */
.site-header .user-menu-trigger {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  border-radius: 20px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  width: auto !important;
  max-width: 160px !important;
  box-sizing: border-box !important;
}

.site-header .user-name {
  color: #ffffff !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
}

.site-header .user-menu-arrow {
  color: #ffffff !important;
  transition: transform 0.3s ease !important;
  flex-shrink: 0 !important;
}

/* Стили для выпадающего меню */
.site-header .user-menu-dropdown {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  margin-top: 16px !important;
  min-width: 200px !important;
  background: #141416 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
  z-index: 1000 !important;
  overflow: hidden !important;
  max-height: none !important;
  display: block !important;
  pointer-events: none !important;
  padding: 4px !important;
}

.site-header .user-menu-container.active .user-menu-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: block !important;
  pointer-events: auto !important;
}

.site-header .user-menu-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  box-sizing: border-box !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  padding: 0 14px !important;
  margin: 0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
  border: 1px solid transparent !important;
  background: none !important;
  width: 100% !important;
  text-align: left !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.site-header .user-menu-item:hover,
.site-header .user-menu-item:focus-visible {
  background: #ffffff !important;
  color: rgba(0, 0, 0, 0.9) !important;
  outline: none !important;
}

.site-header .user-menu-item:hover svg,
.site-header .user-menu-item:focus-visible svg {
  color: rgba(0, 0, 0, 0.9) !important;
}

.site-header .login-btn {
  font-size: 1rem !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  width: 160px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(0, 0, 0, 0.55) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease !important;
}

.site-header .login-btn:hover,
.site-header .login-btn:focus-visible {
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: rgba(0, 0, 0, 0.9) !important;
  box-shadow: none !important;
  outline: none !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  transform: none !important;
}

.site-header .register-btn {
  font-size: 0.8rem !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  padding: 0 16px !important;
}

.site-header .brand-logo {
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  width: 209px !important;
  min-width: 209px !important;
  max-width: 209px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  position: relative !important;
  left: 0 !important;
  right: auto !important;
  transform: none !important;
  box-sizing: border-box !important;
}

.site-header .logo-img {
  height: 100px !important;
  width: auto !important;
  max-width: none !important;
}

.site-header .brand-logo {
  height: 100px !important;
  min-height: 100px !important;
  max-height: 100px !important;
}

/* Принудительное выравнивание логотипа на всех страницах */
.site-header .container.header-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

.site-header .header-left {
  flex: 0 0 209px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  flex-shrink: 0 !important;
  min-width: 209px !important;
  max-width: 209px !important;
  width: 209px !important;
  /* ФИНАЛЬНОЕ ПОЛОЖЕНИЕ ЛОГОТИПА - зафиксировано на всех страницах */
  /* Не изменять без согласования! */
  margin-left: -25px !important;
  padding: 0 !important;
  position: relative !important;
  left: 0 !important;
  right: auto !important;
  transform: translateX(-3px) !important;
  box-sizing: border-box !important;
}

/* Фиксируем центральную навигацию - одинаковое позиционирование на всех страницах */
.site-header .header-center {
  flex: 0 0 auto !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  width: auto !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  margin-left: 30px !important;
  padding: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box !important;
}

.site-header .header-center .language-selector {
  margin-left: -20px !important;
  flex-shrink: 0 !important;
  transform: translateX(-8px) !important;
}

.site-header .header-center .site-nav {
  margin-right: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  justify-content: flex-start !important;
  width: auto !important;
  display: flex !important;
}

.site-header .header-center .site-nav ul {
  margin-right: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  justify-content: flex-start !important;
  display: flex !important;
}

/* Фиксируем правый блок - одинаковая ширина на всех страницах */
.site-header .header-right {
  flex: 0 0 380px !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  flex-shrink: 0 !important;
  min-width: 380px !important;
  max-width: 380px !important;
  width: 380px !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Фиксируем header-actions внутри правого блока */
.site-header .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 380px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  justify-content: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.site-header .header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 0 16px 0 !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  position: relative !important;
  width: min(1200px, 92%) !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  left: 0 !important;
  right: auto !important;
}


.site-header .brand-overlay {
  font-size: 2.2rem !important;
  line-height: 1.2 !important;
  letter-spacing: 0.5px !important;
}

/* ==================== ПЛАШКИ СТАТУСОВ ДЛЯ КАРТОЧЕК ТОВАРОВ ==================== */
/* Анимация свечения для статусов */
@keyframes status-glow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1),
      0 0 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1),
      0 0 30px rgba(0, 0, 0, 0.5);
  }
}

/* UNDETECT статус */
.product-status-badge.undetect {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(16, 185, 129, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 20px rgba(16, 185, 129, 0.3) !important;
}

.product-status-badge.undetect:hover {
  background: rgba(16, 185, 129, 0.2) !important;
  border: 1px solid rgba(16, 185, 129, 0.5) !important;
  transform: scale(1.05);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(16, 185, 129, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 30px rgba(16, 185, 129, 0.5) !important;
}

/* ON UPDATE статус */
.product-status-badge.update {
  background: rgba(59, 130, 246, 0.15) !important;
  border: 1px solid rgba(59, 130, 246, 0.4) !important;
  color: #3b82f6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(59, 130, 246, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 20px rgba(59, 130, 246, 0.3) !important;
}

.product-status-badge.update:hover {
  background: rgba(59, 130, 246, 0.2) !important;
  border: 1px solid rgba(59, 130, 246, 0.5) !important;
  transform: scale(1.05);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(59, 130, 246, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 30px rgba(59, 130, 246, 0.5) !important;
}

/* USE AT OWN RISK статус */
.product-status-badge.risk {
  background: rgba(245, 158, 11, 0.15) !important;
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(245, 158, 11, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 20px rgba(245, 158, 11, 0.3) !important;
}

.product-status-badge.risk:hover {
  background: rgba(245, 158, 11, 0.2) !important;
  border: 1px solid rgba(245, 158, 11, 0.5) !important;
  transform: scale(1.05);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(245, 158, 11, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 30px rgba(245, 158, 11, 0.5) !important;
}

/* DETECT статус */
.product-status-badge.detect {
  background: rgba(239, 68, 68, 0.15) !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(239, 68, 68, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 20px rgba(239, 68, 68, 0.3) !important;
}

.product-status-badge.detect:hover {
  background: rgba(239, 68, 68, 0.2) !important;
  border: 1px solid rgba(239, 68, 68, 0.5) !important;
  transform: scale(1.05);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(239, 68, 68, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 30px rgba(239, 68, 68, 0.5) !important;
}

/* Адаптивность для плашек статусов */
@media (max-width: 768px) {
  .product-status-badge {
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .product-status-badge {
    top: 10px;
    left: 10px;
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
  }
}

/* Новая структура страницы продукта */
.product-main-section {
  padding: 2rem 0;
}

.product-top-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-media-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-bottom-section {
  width: 100%;
}

/* Основной видео контейнер в стиле industries-cheat.store */
.main-video-container {
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}

.main-video-container .video-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* Видео анализ оверлей */
.video-analysis-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  border-radius: 0 0 12px 12px;
}

.video-analysis-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.play-button {
  width: 50px;
  height: 50px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #2563eb;
  transform: scale(1.05);
}

.play-icon {
  color: white;
  font-size: 1.2rem;
  margin-left: 2px;
}

.video-analysis-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.analysis-label {
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.watch-text {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

/* Галерея скриншотов с навигацией */
.screenshots-gallery-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-nav-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: bold;
}

.gallery-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary);
  color: var(--primary);
}

.screenshots-gallery {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  padding: 0.5rem 0;
}

.screenshots-gallery::-webkit-scrollbar {
  display: none;
}

.screenshots-gallery img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.screenshots-gallery img:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Стили для информации о продукте в стиле industries-cheat.store */

.product-header {
  margin-bottom: 1.5rem;
}

.game-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Игровые иконки удалены */

.game-name {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0;
  line-height: 1.2;
}

.product-status-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.status-icon {
  color: #22c55e;
  font-weight: bold;
  font-size: 1rem;
}

.product-status {
  color: #22c55e;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-description {
  margin-bottom: 1.5rem;
}

.product-description p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.expand-description {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  padding: 0;
}

.expand-description:hover {
  color: var(--accent);
}

/* Теги функций */
.product-features-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.feature-icon {
  font-size: 1rem;
}

.feature-name {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.product-header {
  margin-bottom: 2rem;
}

.product-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.product-subtitle {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.product-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-status.undetect {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.product-status.on-update {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.product-status.use-at-risk {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.product-status.detect {
  background: rgba(239, 68, 68, 0.2);
  color: #ffffff;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.product-description {
  margin-bottom: 2rem;
}

.product-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1rem;
}

.instant-delivery {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #22c55e;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.delivery-icon {
  font-size: 1.4rem;
  color: #fbbf24;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.3));
}

/* System Requirements */
.system-requirements {
  margin-bottom: 2rem;
}

.system-requirements h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.requirements-grid {
  display: grid;
  gap: 1rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #0f0f0f;
  border: 1px solid #333;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.requirement-item:hover {
  background: #1a1a1a;
  border-color: #ffffff;
}

.requirement-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #d1d5db;
  flex-shrink: 0;
  position: relative;
}

/* Специальные иконки для системных требований в стиле myhacks.store */

.requirement-icon.game-client::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1d5db'%3E%3Cpath d='M6 3a3 3 0 0 0-3 3v2.25a3 3 0 0 0 3 3h2.25a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM15.75 3a3 3 0 0 0-3 3v2.25a3 3 0 0 0 3 3H18a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-2.25ZM6 12.75a3 3 0 0 0-3 3V18a3 3 0 0 0 3 3h2.25a3 3 0 0 0 3-3v-2.25a3 3 0 0 0-3-3H6ZM17.625 13.5a.75.75 0 0 0-1.5 0v2.625H13.5a.75.75 0 0 0 0 1.5h2.625V20.25a.75.75 0 0 0 1.5 0v-2.625H20.25a.75.75 0 0 0 0-1.5h-2.625V13.5Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.requirement-icon.processor::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='1.5'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Crect x='8' y='8' width='8' height='8' rx='1'/%3E%3Cpath d='M4 6h2M4 10h2M4 14h2M4 18h2M18 6h2M18 10h2M18 14h2M18 18h2M6 4v2M10 4v2M14 4v2M18 4v2M6 20v2M10 20v2M14 20v2M18 20v2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.requirement-icon.system::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1d5db'%3E%3Cpath d='M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.requirement-icon.window-mode::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1d5db'%3E%3Cpath d='M3.375 3C2.339 3 1.5 3.84 1.5 4.875v11.25C1.5 17.16 2.34 18 3.375 18h9.75c1.036 0 1.875-.84 1.875-1.875V4.875C15 3.839 14.16 3 13.125 3h-9.75ZM16.5 6.75c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V6.75ZM18.75 6.75h.008v.008h-.008V6.75Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.requirement-icon.spoofer::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1d5db'%3E%3Cpath d='M18 1.5c2.9 0 5.25 2.35 5.25 5.25v3.75a.75.75 0 0 1-1.5 0V6.75a3.75 3.75 0 1 0-7.5 0v3a3 3 0 0 1 3 3v6.75a3 3 0 0 1-3 3H3.75a3 3 0 0 1-3-3v-6.75a3 3 0 0 1 3-3h9v-3c0-2.9 2.35-5.25 5.25-5.25Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.requirement-icon.usb-flash::before {
  content: "";
  width: 24px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='1.5'%3E%3Crect x='8' y='4' width='8' height='16' rx='1'/%3E%3Crect x='9' y='2' width='6' height='3' rx='0.5'/%3E%3Cpath d='M10 3h4v1h-4V3z'/%3E%3Cpath d='M10.5 3.5h3v0.5h-3v-0.5z'/%3E%3Cpath d='M9 6h6M9 8h6M9 10h6M9 12h6M9 14h6M9 16h6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.requirement-icon.other::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='1.5'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z'/%3E%3Cpath d='M12 6v4M12 14v4M6 12h4M14 12h4M6.34 6.34l2.83 2.83M14.83 14.83l2.83 2.83M6.34 17.66l2.83-2.83M14.83 9.17l2.83-2.83'/%3E%3Cpath d='M18 6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z'/%3E%3Cpath d='M18 2v4M18 14v4M14 6h4M20 6h4M14.83 2.83l2.83 2.83M22.83 10.83l2.83 2.83M14.83 13.17l2.83-2.83M22.83 5.17l2.83-2.83'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.requirement-content {
  flex: 1;
}

/* Медиа секция в верхней части страницы */
.product-media-section {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
}

.product-media-section .product-media {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 100%;
}

.product-media-section .product-video {
  flex: 1.2;
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  min-height: 250px;
}

.product-media-section .product-gallery {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-media-section .product-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-media-section .product-gallery img:hover {
  transform: scale(1.02);
}

/* Табы для функционала и системных требований */
.product-tabs {
  background: #0f0f0f;
  border-radius: 8px;
  padding: 0;
  margin-top: 2rem;
  border: 1px solid #222;
}

.tab-navigation {
  display: flex;
  border-bottom: 1px solid #222;
  background: #0f0f0f;
  border-radius: 8px 8px 0 0;
}

.tab-button {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0;
}

.tab-button:first-child {
  border-radius: 8px 0 0 0;
}

.tab-button:last-child {
  border-radius: 0 8px 0 0;
}

.tab-button:hover {
  background: #1a1a1a;
  color: #fff;
}

.tab-button.active {
  color: #fff;
  background: #0f0f0f;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffffff;
  border-radius: 0;
}

.tab-content {
  padding: 1.5rem;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.requirement-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.requirement-value {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Product Features */
.product-features {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.product-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-category {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 8, 8, 0.9);
  margin-bottom: 0.75rem;
}

.feature-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-category-header:hover {
  background: rgba(12, 12, 12, 0.8);
}

.feature-category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.feature-category-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-right: 12px;
}

/* ESP - иконка глаза (оригинал с millex.xyz) */
.feature-category-icon.esp::before,
.feature-category-icon.wallhack::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("../static/icons/icon-esp.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

/* Aimbot - иконка прицела (оригинал с millex.xyz) */
.feature-category-icon.aimbot::before {
  content: '';
  width: 23px;
  height: 23px;
  background-image: url("../static/icons/icon-aimbot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

/* Misc - иконка настроек (оригинал с millex.xyz) */
.feature-category-icon.misc::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("../static/icons/icon-misc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

/* Дополнительные селекторы для динамических классов */
.feature-category-icon[class*="esp"]::before,
.feature-category-icon[class*="wallhack"]::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("../static/icons/icon-esp.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.feature-category-icon[class*="aimbot"]::before {
  content: '';
  width: 23px;
  height: 23px;
  background-image: url("../static/icons/icon-aimbot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.feature-category-icon[class*="misc"]::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("../static/icons/icon-misc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

/* Cube - кубик (новый раздел) */
.feature-category-icon.cube::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='1.5'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpath d='M3.27 6.96L12 12.01l8.73-5.05'/%3E%3Cpath d='M12 22.08V12'/%3E%3C/svg%3E");
  display: block;
}

.feature-category-icon[class*="cube"]::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='1.5'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpath d='M3.27 6.96L12 12.01l8.73-5.05'/%3E%3Cpath d='M12 22.08V12'/%3E%3C/svg%3E");
  display: block;
}

/* More - троеточие (новый раздел) */
.feature-category-icon.more::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1d5db'%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Ccircle cx='18' cy='12' r='3'/%3E%3C/svg%3E");
  display: block;
}

.feature-category-icon[class*="more"]::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1d5db'%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Ccircle cx='18' cy='12' r='3'/%3E%3C/svg%3E");
  display: block;
}

.feature-category-arrow {
  transition: all 0.3s ease-in-out;
  color: #d1d5db;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
  width: 40px;
  height: 20px;
  text-align: center;
  vertical-align: middle;
}

.feature-category:hover .feature-category-arrow {
  color: #ffffff;
  transform: scale(1.1);
}

.feature-category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.feature-category.expanded .feature-category-content {
  max-height: 1000px;
}

.feature-list {
  padding: 1rem;
  background: rgba(5, 5, 5, 0.6);
}

.feature-item {
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
  border-bottom: none;
}

/* Responsive Styles for Tomograph Brand */
/* Логотип остается одинакового размера на всех экранах */
@media (max-width: 768px) {
  .brand-logo {
    height: 90px !important;
    width: auto !important;
  }
  
  .logo-img {
    height: 90px !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 80px !important;
    width: auto !important;
  }
  
  .logo-img {
    height: 80px !important;
    width: auto !important;
    max-width: none !important;
  }
}

/* Product Media */
.product-media {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 1rem;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5rem;
}

.gallery-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-img:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Product Pricing */
.product-pricing {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 2rem;
  margin-top: 1rem;
}

.product-pricing h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.price-option {
  position: relative;
}

.price-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.price-option label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-option input[type="radio"]:checked + label {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.price-option label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.duration {
  font-weight: 600;
  color: var(--text);
}

.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.purchase-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Responsive Design for Product Page */
@media (max-width: 1024px) {
  .product-top-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-info-area {
    order: -1;
  }
  
  .screenshots-gallery img {
    width: 100px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .product-main-section {
    padding: 1rem 0;
  }
  
  .product-top-layout {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .screenshots-gallery img {
    width: 80px;
    height: 60px;
  }
  
  .gallery-nav-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .product-content,
  .product-features,
  .product-media,
  .product-pricing {
    padding: 1rem;
  }
  
  .product-header h1 {
    font-size: 2rem;
  }
  
  .product-subtitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .requirements-grid {
    gap: 0.75rem;
  }
  
  .requirement-item {
    padding: 0.75rem;
  }
  
  .requirement-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  /* Медиа секция на мобильных */
  .product-media-section {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
  }
  
  .product-media-section .product-media {
    flex-direction: column;
    gap: 1rem;
  }
  
  .product-media-section .product-video {
    min-height: 200px;
  }
  
  .product-media-section .product-gallery {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.5rem;
  }
  
  .product-media-section .product-gallery img {
    height: 100px;
    min-width: 120px;
    flex-shrink: 0;
  }
  
  .pricing-options {
    gap: 0.5rem;
  }
  
  .price-option label {
    padding: 0.75rem;
  }
}

/* Auth Modals Styles */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.3s ease;
  opacity: 0;
}

.auth-modal[style*="display: flex"],
.auth-modal[style*="display:flex"] {
  display: flex !important;
  animation: modalFadeIn 0.3s ease forwards;
  opacity: 1;
}

/* Removed duplicate - now handled above */

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.auth-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(150px) saturate(180%);
  -webkit-backdrop-filter: blur(150px) saturate(180%);
  z-index: 1;
  animation: overlayFadeIn 0.3s ease;
  opacity: 0;
}

.auth-modal[style*="display: flex"] .auth-modal-overlay,
.auth-modal[style*="display:flex"] .auth-modal-overlay {
  animation: overlayFadeIn 0.3s ease forwards;
  opacity: 1;
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.auth-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  animation: contentSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
}

.auth-modal[style*="display: flex"] .auth-modal-content,
.auth-modal[style*="display:flex"] .auth-modal-content {
  animation: contentSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 1;
  transform: translateY(0);
}

@keyframes contentSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.auth-modal .auth-card {
  background: rgba(7, 7, 11, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
  position: relative;
  overflow: hidden;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  animation: cardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Red border removed - ensure no red borders */
.auth-modal .auth-card::before,
.auth-modal .auth-card::after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: none !important;
}

/* Override any potential red borders - more specific */
.auth-modal,
.auth-modal *,
.auth-modal .auth-card,
.auth-modal .auth-card *,
.auth-modal .auth-card *::before,
.auth-modal .auth-card *::after {
  border-color: rgba(255, 255, 255, 0.15) !important;
  outline-color: rgba(255, 255, 255, 0.2) !important;
}

/* Не сбрасываем box-shadow у полей и кнопок — иначе форма выглядит «голым» HTML */
.auth-modal .auth-header,
.auth-modal .auth-footer,
.auth-modal .forgot-password {
  text-shadow: none;
}

.auth-modal .auth-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
  background: rgba(12, 12, 18, 0.96) !important;
}

.auth-modal .form-group input:focus,
.auth-modal .btn-login:focus,
.auth-modal .btn-register:focus {
  outline: none;
}

/* Ensure auth-modal-content also has no red glow */
.auth-modal-content {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

.auth-modal .auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-modal .auth-header h1 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.auth-modal .auth-header p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
}

.auth-modal .form-group {
  margin-bottom: 20px;
}

.auth-modal .form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.auth-modal .form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-modal .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.auth-modal .form-group input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.auth-modal .form-group input.error {
  border-color: rgba(255, 100, 100, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 100, 100, 0.1);
}

.auth-modal .form-group input.success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.auth-modal .error-message {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.2);
  color: rgba(255, 150, 150, 0.9);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
}

.auth-modal .success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
}

.auth-modal .rate-limit-message {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
}

.auth-modal .btn-login,
.auth-modal .btn-register {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-modal .btn-login:hover:not(:disabled),
.auth-modal .btn-register:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.auth-modal .btn-login:disabled,
.auth-modal .btn-register:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-modal .loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.auth-modal .forgot-password {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 20px;
}

.auth-modal .forgot-password a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.auth-modal .forgot-password a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.auth-modal .auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-modal .auth-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.auth-modal .auth-footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.auth-modal .auth-footer a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.auth-modal .password-strength {
  margin-top: 8px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.auth-modal .password-strength-bar {
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.auth-modal .password-strength.weak .password-strength-bar {
  width: 25%;
  background: #ffffff;
}

.auth-modal .password-strength.fair .password-strength-bar {
  width: 50%;
  background: #f59e0b;
}

.auth-modal .password-strength.good .password-strength-bar {
  width: 75%;
  background: #3b82f6;
}

.auth-modal .password-strength.strong .password-strength-bar {
  width: 100%;
  background: #10b981;
}

.auth-modal .password-requirements {
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.auth-modal .password-requirements ul {
  margin: 4px 0 0 0;
  padding-left: 16px;
}

.auth-modal .password-requirements li {
  margin: 2px 0;
}

.auth-modal .password-requirements li.valid {
  color: #10b981;
}

.auth-modal .password-requirements li.invalid {
  color: #ffffff;
}

.auth-modal .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.auth-modal .checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-modal .checkbox-group label {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  cursor: pointer;
}

.auth-modal .checkbox-group a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-modal .checkbox-group a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .auth-modal-content {
    max-width: 100%;
    padding: 0;
  }
  
  .auth-modal .auth-card {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .auth-modal .auth-header h1 {
    font-size: 1.5rem;
  }
}
