/*!
Theme Name: Ice Fishing Game
Description:
Author: Ice Fishing Game
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ice-fishing-game
Tags: custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, one-column, two-columns, right-sidebar, sticky-post, theme-options, translation-ready, blog, portfolio, business
Requires at least: 5.5
Tested up to: 6.3
Requires PHP: 7.4
*/

/*
==================================================
ГЛОБАЛЬНЫЕ CSS ПЕРЕМЕННЫЕ - СИСТЕМА ЦВЕТОВ
==================================================
*/

:root {
  /* ===== LAYOUT DIMENSIONS ===== */
  --container-width: 1200px;
  --container-padding: 20px;

  /* ===== PRIMARY BRAND COLORS ===== */
  /* ДИНАМИЧЕСКИ ГЕНЕРИРУЕТСЯ ИЗ PHP - НЕ ЗАХАРДКОЖИВАТЬ! */
  /* --color-primary генерируется из настроек админки */
  /* --color-primary-rgb динамически генерируется в PHP */
  /* --color-primary-light динамически генерируется в PHP */
  /* --color-primary-dark динамически генерируется в PHP */
  /* --color-primary-contrast динамически генерируется в PHP */


  /* ===== BACKGROUND COLORS ===== */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-dark: #0f172a;
  --color-bg-overlay: rgba(15, 23, 42, 0.8);
  
  /* New dynamic background colors */
  --color-site-bg: #ffffff;

  /* ===== TEXT COLORS ===== */
  --color-text-primary: #0f172a;
  --color-text-secondary: #64748b;
  --color-text-light: #94a3b8;
  --color-text-inverse: #ffffff;

  /* ===== HEADER COLORS ===== */
  --color-header-bg: var(--color-bg-primary);
  --color-header-text: var(--color-text-primary);
  --color-header-link: var(--color-primary);
  --color-header-link-hover: var(--color-primary-dark);
  --color-header-border: var(--color-bg-tertiary);

  /* ===== HERO COLORS ===== */
  --color-hero-bg: var(--color-bg-secondary);
  --color-hero-text: var(--color-text-primary);
  --color-hero-accent: var(--color-primary);

  /* ===== BUTTON COLORS WITH HERO-STYLE DARKENING LOGIC ===== */
  --color-btn-primary-bg: var(--color-primary);
  --color-btn-primary-text: var(--color-primary-contrast);
  /* HOVER STATE: Hero-style darkening - background becomes darker, text stays white */
  --color-btn-primary-hover: var(--color-primary-dark);
  --color-btn-primary-hover-text: var(--color-primary-contrast);
  
  --color-btn-secondary-bg: transparent;
  --color-btn-secondary-text: var(--color-primary);
  --color-btn-secondary-border: var(--color-primary);
  --color-btn-secondary-hover-bg: var(--color-primary);
  --color-btn-secondary-hover-text: var(--color-primary-contrast);

  /* ===== FOOTER COLORS ===== */
  --color-footer-bg: var(--color-bg-dark);
  --color-footer-text: var(--color-text-inverse);
  --color-footer-link: var(--color-primary-light);
  --color-footer-link-hover: #ffffff;

  /* ===== BORDERS & DIVIDERS ===== */
  --color-border: #e2e8f0;
  --color-divider: #f1f5f9;
  --color-focus: var(--color-primary);

  /* ===== MOBILE-FIRST BREAKPOINTS ===== */
  --bp-xs: 320px;
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --bp-xxl: 1400px;

  /* ===== SPACING SYSTEM ===== */
  --spacing-xs: 0.25rem;    /* 4px */
  --spacing-sm: 0.5rem;     /* 8px */
  --spacing-md: 1rem;       /* 16px */
  --spacing-lg: 1.5rem;     /* 24px */
  --spacing-xl: 2rem;       /* 32px */
  --spacing-2xl: 3rem;      /* 48px */
  --spacing-3xl: 4rem;      /* 64px */

  /* ===== TYPOGRAPHY SCALE ===== */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */

  /* ===== SHADOWS ===== */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);

  /* ===== TRANSITIONS ===== */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;

  /* ===== Z-INDEX SCALE ===== */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/*
==================================================
БАЗОВЫЕ СТИЛИ - MOBILE FIRST
==================================================
*/

/* Reset и базовые стили */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-site-bg);
  overflow-x: hidden;
}

/* =============================
   TYPOGRAPHY - HEADINGS
   ============================= */

/* General heading styles */
h1, h2, h3, h4, h5, h6 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-heading);
}

/* H1 specific */
h1 {
  font-size: var(--font-size-4xl);
  color: var(--color-h1);
}

/* H2 specific */
h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-h2);
}

/* H3-H6 use general heading color */
h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-base);
}

/* =============================
   LINKS
   ============================= */

a {
  color: var(--color-link);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--color-link-hover);
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* Remove admin bar spacing when logged in */
body.admin-bar {
  margin-top: 0;
}

/* Remove any default body padding from WordPress */
body.home,
body.page,
body.single,
body.archive {
  padding: 0;
}

/* Accessibility */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--color-bg-primary);
  border-radius: 3px;
  box-shadow: var(--shadow-md);
  clip: auto !important;
  color: var(--color-text-primary);
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: var(--z-tooltip);
}

/* Skip link */
.X32NLWKW3KW1 {
  left: -9999px;
  position: absolute;
  top: 2.5em;
}

.X32NLWKW3KW1:focus {
  clip: auto;
  height: auto;
  left: 6px;
  top: 7px;
  width: auto;
  z-index: var(--z-tooltip);
}

/*
==================================================
КНОПКИ - СИСТЕМА СТИЛЕЙ
==================================================
*/

.T4ZZ4JXOZW {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px; /* Touch-friendly */
  min-width: 44px;
}

.T4ZZ4JXOZW:focus {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

.XW5ZZL0L3K0 {
  background: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
}

.XW5ZZL0L3K0:hover {
  background: var(--color-btn-primary-hover);
  color: var(--color-btn-primary-hover-text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.Y5NZY3Z5O0 {
  background-color: var(--color-btn-secondary-bg);
  color: var(--color-btn-secondary-text);
  border-color: var(--color-btn-secondary-border);
}

.Y5NZY3Z5O0:hover {
  background-color: var(--color-btn-secondary-hover-bg);
  color: var(--color-btn-secondary-hover-text);
  /* UNIFIED HOVER EFFECTS - same as all other buttons */
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.VJLM212OYOO {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-lg);
}

.dN233Z25W5X {
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-sm);
  min-height: 36px;
}

/*
==================================================
УТИЛИТАРНЫЕ КЛАССЫ
==================================================
*/

/* Container */
.f3ZK1OXO5K5 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 576px) {
  .f3ZK1OXO5K5 {
    padding: 0 var(--spacing-lg);
  }
}

/* Уменьшаем отступы контейнера на маленьких мобильных */
@media (max-width: 480px) {
  .f3ZK1OXO5K5 {
    padding: 0 var(--spacing-sm); /* 8px вместо 16px по бокам */
  }
}

@media (min-width: 1200px) {
  .f3ZK1OXO5K5 {
    padding: 0 var(--spacing-xl);
  }
}

/* Text utilities */
.YXY3LW0JX { text-align: center; }
.XXNK2X3LOM { text-align: left; }
.dKJ24YX2K { text-align: right; }

.e3ZO1YLXKO { color: var(--color-primary); }
.c2X02Z4O4YL { color: var(--color-text-secondary); }
.dMXYOO0O3Z1 { color: var(--color-text-light); }

/* Display utilities */
.c34YZ42MOMK5 { display: none; }
.e00YN3JKOJ { display: block; }
.V1X2X0ZN { display: flex; }
.eZXN12MXZ4 { display: inline; }
.dO5M04J1NJK4 { display: inline-block; }

/* Flex utilities */
.WY24NL55Y3 { flex-direction: column; }
.cJOZZ1KZY { flex-wrap: wrap; }
.TJXN32LMN { justify-content: center; }
.Z0LL1M3ZZ { justify-content: space-between; }
.YN1303ZW4Z { justify-content: space-around; }
.W30JYY4XO { align-items: center; }
.XKJ1NN1NOZJ0 { align-items: flex-start; }
.YK5M23XLYN { align-items: flex-end; }

/* Spacing utilities */
.XWL02NYM0 { margin-bottom: 0; }
.d0JO1O035NZ0 { margin-bottom: var(--spacing-sm); }
.YYXNJ4WZLO0O { margin-bottom: var(--spacing-md); }
.dL0L0LJL { margin-bottom: var(--spacing-lg); }
.T1LL340X3XW { margin-bottom: var(--spacing-xl); }

.YWYL3XXKYJ3 { margin-top: 0; }
.Y02023LJL { margin-top: var(--spacing-sm); }
.W12J31WN { margin-top: var(--spacing-md); }
.fO3LK5X42 { margin-top: var(--spacing-lg); }
.aJ2KY2XL1M { margin-top: var(--spacing-xl); }

/* Responsive utilities */
@media (max-width: 767px) {
  .d-md-none { display: none; }
  .d-mobile-block { display: block; }
  .d-mobile-flex { display: flex; }
}

@media (min-width: 768px) {
  .d-mobile-none { display: none; }
  .d-md-block { display: block; }
  .d-md-flex { display: flex; }
}

/*
==================================================
ЗАГОТОВКА ДЛЯ КОМПОНЕНТОВ
(будет дополняться при создании компонентов)
==================================================
*/

/* ===== CONTENT AREA STYLES ===== */

/* Article and page containers - NO padding to avoid compound padding */
article,
.post,
.page {
  background: var(--color-site-bg);
  border-radius: var(--radius-lg);
  /* NO PADDING HERE - padding is handled by .entry-content */
}

/* Content wrapper - only vertical padding */
.XXL5XY1K5MJ0,
.fO421XNNNY2,
.TY3YO4WY05 {
  padding: var(--spacing-xl) 0; /* Only vertical padding, horizontal is from .f3ZK1OXO5K5 */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .XXL5XY1K5MJ0,
  .fO421XNNNY2,
  .TY3YO4WY05 {
    padding: var(--spacing-lg) 0; /* 24px vertical on tablet */
  }
}

@media (max-width: 480px) {
  .XXL5XY1K5MJ0,
  .fO421XNNNY2,
  .TY3YO4WY05 {
    padding: var(--spacing-md) 0; /* 16px vertical on mobile */
  }

  /* Main container - no extra padding */
  .cZ20W34LO5 {
    padding: 0;
  }
}

/* ===== ENTRY HEADER STYLES (when Hero is disabled) ===== */
.XKWNOOJW {
  /* Контейнер для заголовка */
}

.fNL0YZXLJM4 {
  margin-top: var(--spacing-2xl); /* Отступ от хедера на десктопе (48px) */
  margin-bottom: var(--spacing-lg); /* Отступ снизу (24px) */
  font-size: clamp(2rem, 5vw, 3rem); /* Адаптивный размер от 32px до 48px */
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading);
}

/* Text alignment для Entry Header (использует Hero Settings -> Text Alignment) */
.XKWNOOJW.XXNK2X3LOM {
  text-align: left;
}

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

.XKWNOOJW.dKJ24YX2K {
  text-align: right;
}

/* Мобильная адаптация для Entry Title */
@media (max-width: 768px) {
  .fNL0YZXLJM4 {
    margin-top: var(--spacing-xl); /* Меньше отступ на планшетах (32px) */
    margin-bottom: var(--spacing-md); /* Меньше снизу (16px) */
  }
}

@media (max-width: 480px) {
  .fNL0YZXLJM4 {
    margin-top: var(--spacing-lg); /* Еще меньше на мобильных (24px) */
    margin-bottom: var(--spacing-sm); /* Минимум снизу (8px) */
  }
}

/* ===== SECTION STYLES ===== */
section,
.W12XW5NW {
  padding: var(--spacing-xl) 0;
}

/* Уменьшаем отступы секций на мобильных */
@media (max-width: 768px) {
  section,
  .section {
    padding: var(--spacing-lg) 0; /* 24px вместо 32px */
  }
}

@media (max-width: 480px) {
  section,
  .section {
    padding: var(--spacing-md) 0; /* 16px вместо 32px */
  }
}

/* ===== HEADER STYLES ===== */
.dOK4K21MYNJM {
  background: var(--color-header-bg);
  color: var(--color-header-text);
  padding: 0 !important;
  position: relative;
  z-index: 1000;
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  height: 80px !important;
}

/* Убеждаемся что хедер всегда выше dropdown меню на всех устройствах */
@media (max-width: 991px) {
  .dOK4K21MYNJM {
    z-index: 1001 !important;
    position: relative !important;
  }
  
  /* Dropdown стиль: хедер остается видимым, меню под ним */
  body.W5YKNMY0MKO5 .dOK4K21MYNJM {
    z-index: 1002 !important;
  }
  
  /* Когда dropdown меню открыто, menu-toggle остается в хедере */
  body.W5YKNMY0MKO5.mobile-menu-open .cW35MWLLM {
    z-index: 1003 !important;
  }
  
  /* Удалено - заменено на правильную логику показа/скрытия */
}

.bZ0M42WXY5 {
  display: flex !important;
  justify-content: space-between;
  align-items: center !important;
  gap: var(--spacing-lg);
  width: 100%;
  padding: 0 !important;
  height: 80px !important;
}

/* Site Branding */
.YWNWJNY54N {
  flex-shrink: 0;
  display: flex;
  align-items: center; /* Центрирование по вертикали */
}

/* Custom Logo Alignment */
.fZOZZWK4XX3 {
  display: flex;
  align-items: center;
  height: 100%;
}

.fZOZZWK4XX3:focus {
  outline: none;
  box-shadow: none;
}

.fZOZZWK4XX3:focus-visible {
  outline: none;
  box-shadow: none;
}


.WJLM3M4JM,
.dOK4K21MYNJM .custom-logo {
  max-height: 65px !important;
  width: auto !important;
  height: auto !important;
  display: block;
}

.WJLM3M4JM:focus {
  outline: none;
  box-shadow: none;
}


/* УНИФИЦИРОВАНО: Minimal стиль использует те же размеры, что и Default */

.X5MNY1LL2N {
  margin: 0;
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

.X5MNY1LL2N a {
  color: var(--color-header-text);
  text-decoration: none;
}

/* Navigation */
.e2ZXJ1NO {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.e2ZXJ1NO > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--spacing-lg);
}

.e2ZXJ1NO li {
  position: relative;
  list-style: none;
}

.e2ZXJ1NO > ul > li {
  display: flex;
  align-items: center;
}

.e2ZXJ1NO a {
  color: var(--color-header-link);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.e2ZXJ1NO a:hover {
  color: var(--color-primary);
}

.e2ZXJ1NO .menu-item-has-children > a {
  padding-right: calc(var(--spacing-sm) + 12px);
}

.e2ZXJ1NO > ul > li > a {
  display: inline-flex;
  align-items: center;
}

.e2ZXJ1NO .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  margin-left: var(--spacing-xs);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition-fast);
}

.e2ZXJ1NO .menu-item-has-children:hover > a::after,
.e2ZXJ1NO .menu-item-has-children:focus-within > a::after {
  transform: rotate(180deg);
}

.e2ZXJ1NO ul ul {
  position: absolute;
  left: 0;
  top: calc(100%);
  display: none;
  flex-direction: column;
  min-width: 220px;
  padding: var(--spacing-sm) 0;
  margin: 0;
  background: var(--color-bg-primary);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border-radius: 6px;
  z-index: 1000;
}

.e2ZXJ1NO ul ul li {
  width: 100%;
  position: relative;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.e2ZXJ1NO ul ul a {
  font-size: var(--font-size-sm);
  color: var(--color-text-primary);
  padding: var(--spacing-sm) var(--spacing-lg);
  white-space: nowrap;
}

.e2ZXJ1NO ul ul .menu-item-has-children > a {
  padding-right: calc(var(--spacing-sm) + 18px);
}

.e2ZXJ1NO ul ul .menu-item-has-children > a::after {
  margin-left: var(--spacing-xs);
  border: none;
  border-top: 0;
  border-left: 5px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: rotate(0deg);
}

.e2ZXJ1NO ul ul .menu-item-has-children:hover > a::after,
.e2ZXJ1NO ul ul .menu-item-has-children:focus-within > a::after {
  transform: translateX(2px);
}

.e2ZXJ1NO ul ul ul {
  top: 0;
  left: calc(100% + var(--spacing-xs));
  margin-left: 2px;
  border-radius: 6px;
  box-shadow: 8px 12px 30px rgba(15, 23, 42, 0.12);
}

.e2ZXJ1NO ul ul ul a {
  padding: var(--spacing-sm) calc(var(--spacing-lg) + 6px);
}

.e2ZXJ1NO ul ul a:hover,
.e2ZXJ1NO ul ul a:focus {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.e2ZXJ1NO li:hover > ul,
.e2ZXJ1NO li:focus-within > ul {
  display: flex;
}

/* Mobile Menu Toggle */
.cW35MWLLM {
  display: none;
  background: transparent;
  border: none;
  padding: var(--spacing-sm);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  color: var(--color-header-text);
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
}

.cW35MWLLM svg {
  fill: var(--color-primary);
}

.cW35MWLLM:hover {
  background: transparent;
}

.cW35MWLLM:hover .a5XXWNX43M {
  background-color: var(--color-primary-dark);
}

.cW35MWLLM:hover .T1M0OMMLL2MZ {
  fill: var(--color-primary-dark);
}

.a5XXWNX43M {
  width: 32px;
  height: 3px;
  background-color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  position: relative;
  margin: 5px 0;
  border-radius: 2px;
}


/* Анимация для открытого состояния - как у Animated иконки */
.cW35MWLLM.WW1YWJXJX0 .a5XXWNX43M:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.cW35MWLLM.WW1YWJXJX0 .a5XXWNX43M:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.cW35MWLLM.WW1YWJXJX0 .a5XXWNX43M:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   MOBILE MENU ICON STYLES
   =================================== */

/* Common icon styles */
.cW35MWLLM .T1M0OMMLL2MZ {
  width: 40px;
  height: 40px;
  fill: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


/* Увеличиваем область клика для кнопки */
.cW35MWLLM {
  min-width: 40px;
  min-height: 40px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Важно для абсолютного позиционирования крестика */
}

/* Переключение между открытой и закрытой иконками с анимацией */
.cW35MWLLM .fOM51NL5WZX {
  display: none !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Для dropdown стиля - убираем центрирование НО оставляем логику показа/скрытия */
body.W5YKNMY0MKO5 .cW35MWLLM .fOM51NL5WZX {
  display: none !important; /* По умолчанию скрыт */
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
}

/* Когда меню активно - показываем крестик */
body.W5YKNMY0MKO5 .cW35MWLLM.WW1YWJXJX0 .fOM51NL5WZX {
  display: block !important; /* Показываем крестик */
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
}

.cW35MWLLM.WW1YWJXJX0 .WYJOXKOJYJ {
  display: none !important;
}

.cW35MWLLM.WW1YWJXJX0 .fOM51NL5WZX {
  display: block !important;
  animation: fadeInRotate 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Базовая анимация для крестика */
@keyframes fadeInRotate {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

/* УНИКАЛЬНЫЕ АНИМАЦИИ ДЛЯ КАЖДОГО ТИПА ИКОНКИ */

/* Hamburger - классическое исчезновение с поворотом */
.W0K0M0NW .WYJOXKOJYJ {
  animation: hamburgerFadeOut 0.3s ease-out forwards;
}

.T5J4ZMJZ.WW1YWJXJX0 .WYJOXKOJYJ {
  animation: none;
}

.T5J4ZMJZ.WW1YWJXJX0 .fOM51NL5WZX {
  animation: hamburgerFadeIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes hamburgerFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(180deg);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

/* Dots - взрыв и сбор точек */
.T5J4ZMJZ.WW1YWJXJX0 .fOM51NL5WZX {
  animation: dotsBurst 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes dotsBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
  }
}

/* Arrow - стрелка улетает и появляется крестик */
.T5J4ZMJZ.WW1YWJXJX0 .fOM51NL5WZX {
  animation: arrowSlide 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes arrowSlide {
  from {
    opacity: 0;
    transform: translate(150%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Plus - просто поворот, так как уже крестик */
.W2O1OLZN5Z5 .WYJOXKOJYJ {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.T5J4ZMJZ.WW1YWJXJX0 .WYJOXKOJYJ {
  transform: rotate(45deg);
  display: block !important;
}

.W2O1OLZN5Z5 .fOM51NL5WZX {
  display: none !important;
}

/* Minimal - элегантное появление */
.T5J4ZMJZ.WW1YWJXJX0 .fOM51NL5WZX {
  animation: minimalFade 0.3s ease-in-out;
}

@keyframes minimalFade {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}




/* Animated icon - эталонная анимация */
.YY55OWX44 {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.YY55OWX44 .WM4M323O51 {
  width: 32px;
  height: 3px;
  background: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
  border-radius: 2px;
}

.cW35MWLLM:hover .YY55OWX44 .WM4M323O51 {
  background: var(--color-primary-dark);
}

.YY55OWX44 .U22WWK5O {
  top: 10px;
}

.YY55OWX44 .ZOOYKW22N51 {
  top: 19px;
}

.YY55OWX44 .dL3O5WO20YO {
  top: 28px;
}

.cW35MWLLM.WW1YWJXJX0 .YY55OWX44 .U22WWK5O {
  transform: rotate(45deg);
  top: 19px;
}

.cW35MWLLM.WW1YWJXJX0 .YY55OWX44 .ZOOYKW22N51 {
  opacity: 0;
  transform: scale(0) rotate(90deg);
}

.cW35MWLLM.WW1YWJXJX0 .YY55OWX44 .dL3O5WO20YO {
  transform: rotate(-45deg);
  top: 19px;
}


/* ===== HEADER STYLE VARIATIONS ===== */

/* Default Style - Already defined above */
.dOK4K21MYNJM.d25L35L4XYM4 {
  padding: 0 !important; /* Убираем вертикальные паддинги */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Minimal Style */
.dOK4K21MYNJM.TWJJ2N4L5Y1 {
  padding: 0 !important; /* Убираем вертикальные паддинги для Minimal стиля */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Убираем паддинги также для sticky версии Minimal стиля */
.dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK.scrolled {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dOK4K21MYNJM.TWJJ2N4L5Y1 .bZ0M42WXY5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-xs);
  /* Высота теперь управляется через классы header-height-* */
  position: relative;
  padding: 0; /* Убираем паддинги у контейнера */
}

/* Меню слева */
.dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM {
  display: flex;
  order: 1; /* Первый по порядку */
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-self: center; /* Центрируем по вертикали относительно контейнера */
  width: 40px;
  height: 40px;
  padding: 4px;
  transition: all var(--transition-fast);
}

.dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM:hover {
  background: transparent !important;
  border-radius: var(--radius-md);
}

.dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM:hover svg {
  fill: var(--color-primary-dark) !important;
}

.dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM:hover .a5XXWNX43M,
.dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM:hover .YY55OWX44 .WM4M323O51 {
  background-color: var(--color-primary-dark) !important;
}

/* Логотип по центру */
.dOK4K21MYNJM.TWJJ2N4L5Y1 .YWNWJNY54N {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2; /* Второй по порядку */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0; /* Убираем все margin'ы */
  padding: 0; /* Убираем все padding'и */
}

/* CTA кнопки справа */
.dOK4K21MYNJM.TWJJ2N4L5Y1 .U02X1M5Y303N {
  order: 3;
}
.dOK4K21MYNJM.TWJJ2N4L5Y1 .W1W2W0Y0NJ {
  order: 0;
  display: flex !important; /* Принудительно показываем кнопки */
  gap: var(--spacing-xs);
  flex-shrink: 0;
  margin-left: auto; /* Прижимаем к правому краю */
  align-items: center; /* Центрируем элементы внутри */
  align-self: center; /* Центрируем по вертикали относительно контейнера */
}

/* Уменьшенные CTA кнопки для Minimal стиля */
.dOK4K21MYNJM.TWJJ2N4L5Y1 .VMYLNK21Z5K1 {
  padding: 4px var(--spacing-sm); /* Минимальный вертикальный паддинг */
  font-size: var(--font-size-xs);
  min-height: 28px; /* Уменьшаем минимальную высоту */
}

/* Убираем все вертикальные отступы у элементов внутри Minimal хедера */
.dOK4K21MYNJM.TWJJ2N4L5Y1 .X5MNY1LL2N {
  margin: 0;
  padding: 0;
  line-height: 1.2; /* Компактная высота строки */
}

.dOK4K21MYNJM.TWJJ2N4L5Y1 .fZOZZWK4XX3 {
  padding: 0;
  margin: 0;
}

/* Убираем паддинги у контейнера внутри Minimal хедера */
.dOK4K21MYNJM.TWJJ2N4L5Y1 .f3ZK1OXO5K5 {
  padding: 0 var(--spacing-sm); /* Минимальные горизонтальные паддинги */
}

.dOK4K21MYNJM.TWJJ2N4L5Y1 .e2ZXJ1NO {
  display: none;
}



/* Header CTA Buttons */
.W1W2W0Y0NJ {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.VMYLNK21Z5K1 {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Primary CTA Style */
.VMYLNK21Z5K1.f2KK5LZKYYZZ {
  background-color: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
  border: 2px solid transparent;
}

.VMYLNK21Z5K1.f2KK5LZKYYZZ:hover {
  background-color: var(--color-btn-primary-hover);
  color: var(--color-btn-primary-hover-text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Remove ALL animations on hover - apply clean hover style only */
.WM3L4MWZKY5:hover,
.XLWYZW501O4:hover,
.ZN125Y4WXL:hover,
.UZWX3J0KN:hover,
.W2Y21O2MXM:hover,
.VMYLNK21Z5K1:hover,
.ZO5XK12OY21:hover {
  animation: none !important;
}

/* Hide ::before and ::after pseudo-elements on hover (for pulse effect rings) */
.WM3L4MWZKY5:hover::before,
.WM3L4MWZKY5:hover::after,
.VMYLNK21Z5K1:hover::before,
.VMYLNK21Z5K1:hover::after,
.ZO5XK12OY21:hover::before,
.ZO5XK12OY21:hover::after {
  display: none !important;
}

/* Secondary CTA Style */
.VMYLNK21Z5K1.XOYYWJ4L3WXX {
  background-color: transparent;
  color: var(--color-btn-secondary-text);
  border: 2px solid var(--color-btn-secondary-border);
}

.VMYLNK21Z5K1.XOYYWJ4L3WXX:hover {
  background-color: var(--color-btn-secondary-hover-bg);
  color: var(--color-btn-secondary-hover-text);
  border-color: var(--color-btn-secondary-hover-bg);
}

/* Ghost CTA Style */
.VMYLNK21Z5K1.YX3X54ZW {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid transparent;
  padding: var(--spacing-xs) var(--spacing-sm);
}

.VMYLNK21Z5K1.YX3X54ZW:hover {
  color: var(--color-primary-dark);
  background-color: var(--color-primary-light);
}

/* ===== CTA BUTTON SHAPES ===== */

/* Rounded Shape (Default) */
body.WXL4JKNY0WLN .VMYLNK21Z5K1,
.VMYLNK21Z5K1 {
  border-radius: 6px;
}

/* Fully Rounded (Pill) Shape */
body.Y22L3OKLX .VMYLNK21Z5K1 {
  border-radius: 50px;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

/* Square Shape */
body.Z11K23OX1 .VMYLNK21Z5K1 {
  border-radius: 0;
}

/* Убеждаемся что формы кнопок работают и в sticky режиме */
body.WXL4JKNY0WLN .dOK4K21MYNJM.Y53YYZ1MK .VMYLNK21Z5K1 {
  border-radius: 6px !important;
}

body.Y22L3OKLX .dOK4K21MYNJM.Y53YYZ1MK .VMYLNK21Z5K1 {
  border-radius: 50px !important;
  padding-left: var(--spacing-lg) !important;
  padding-right: var(--spacing-lg) !important;
}

body.Z11K23OX1 .dOK4K21MYNJM.Y53YYZ1MK .VMYLNK21Z5K1 {
  border-radius: 0 !important;
}

/* ===== HEADER HEIGHT — fixed 80px / sticky 50px ===== */

/* Normal Header Height — 80px */
.dOK4K21MYNJM .bZ0M42WXY5,
.bZ0M42WXY5 {
  height: 80px !important;
  padding: 0 !important;
}

/* Sticky Header — fixed position with smooth animation */
.dOK4K21MYNJM.Y53YYZ1MK {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: 56px !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  animation: dKWNWLOKNX 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes dKWNWLOKNX {
  from {
    transform: translateY(-100%);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Body padding when sticky header is active */
body.UJ5YW044L {
  padding-top: 80px;
}

/* Sticky Header Height — 56px */
#WXYK3K0OM.Y53YYZ1MK .bZ0M42WXY5,
.dOK4K21MYNJM.Y53YYZ1MK .bZ0M42WXY5 {
  height: 56px !important;
}

/* Scrolled state — same as sticky */
#WXYK3K0OM.Y53YYZ1MK.ZX42201MKY .bZ0M42WXY5,
.dOK4K21MYNJM.Y53YYZ1MK.ZX42201MKY .bZ0M42WXY5 {
  height: 56px !important;
}

/* Mobile Header Heights */
@media (max-width: 767px) {
  .bZ0M42WXY5 {
    height: 65px !important;
    max-height: 65px !important;
  }

  #WXYK3K0OM.Y53YYZ1MK .bZ0M42WXY5,
  .dOK4K21MYNJM.Y53YYZ1MK .bZ0M42WXY5 {
    height: 50px !important;
    max-height: 50px !important;
  }
  
  .dOK4K21MYNJM.Y53YYZ1MK {
    height: 50px !important;
  }
  
  body.UJ5YW044L {
    padding-top: 65px;
  }

  /* FIX: Prevent menu button from wrapping in sticky mode */
  #WXYK3K0OM.Y53YYZ1MK .bZ0M42WXY5,
  .dOK4K21MYNJM.Y53YYZ1MK .bZ0M42WXY5 {
    flex-wrap: nowrap !important; /* Force elements to stay in one line */
  }

  /* Adjust logo and menu button size in sticky mode for better fit */
  #WXYK3K0OM.Y53YYZ1MK .YWNWJNY54N,
  .dOK4K21MYNJM.Y53YYZ1MK .YWNWJNY54N {
    height: auto !important;
    flex-shrink: 1; /* Allow logo to shrink if needed */
  }

  #WXYK3K0OM.Y53YYZ1MK .YWNWJNY54N img,
  .dOK4K21MYNJM.Y53YYZ1MK .YWNWJNY54N img {
    max-height: 35px;
    max-width: 140px;
    width: auto;
    object-fit: contain; /* Сохраняем пропорции */
  }

  /* УНИФИЦИРОВАНО: Minimal в sticky режиме использует стандартные размеры */

  #WXYK3K0OM.Y53YYZ1MK .cW35MWLLM,
  .dOK4K21MYNJM.Y53YYZ1MK .cW35MWLLM {
    flex-shrink: 0; /* Prevent button from shrinking */
    padding: 5px !important; /* Reduce padding in sticky mode */
    min-width: 35px !important;
    min-height: 35px !important;
  }

  #WXYK3K0OM.Y53YYZ1MK .cW35MWLLM .T1M0OMMLL2MZ,
  .dOK4K21MYNJM.Y53YYZ1MK .cW35MWLLM .T1M0OMMLL2MZ {
    width: 30px !important;
    height: 30px !important;
  }

  #WXYK3K0OM.Y53YYZ1MK .cW35MWLLM .YY55OWX44,
  .dOK4K21MYNJM.Y53YYZ1MK .cW35MWLLM .YY55OWX44 {
    width: 30px !important;
    height: 30px !important;
  }

  #WXYK3K0OM.Y53YYZ1MK .cW35MWLLM .a5XXWNX43M,
  .dOK4K21MYNJM.Y53YYZ1MK .cW35MWLLM .a5XXWNX43M {
    width: 24px !important;
    margin: 3px 0 !important;
  }
}

/* ===== HEADER BORDER VARIATIONS ===== */

/* Default border for all headers */
.dOK4K21MYNJM {
  border-bottom: 1px solid var(--color-primary);
}

/* Border height variations */
body.ZLLXK5XNN .dOK4K21MYNJM {
  border-bottom: none !important;
}

body.T3YLOJ4X4 .dOK4K21MYNJM {
  border-bottom: 1px solid var(--color-primary) !important;
}

body.ZOWNZWM3W3 .dOK4K21MYNJM {
  border-bottom: 2px solid var(--color-primary) !important;
}

body.UJJKMJL1 .dOK4K21MYNJM {
  border-bottom: 3px solid var(--color-primary) !important;
}

body.f20O1ML25X .dOK4K21MYNJM {
  border-bottom: 4px solid var(--color-primary) !important;
}

/* ===== PROGRESS BAR STYLES ===== */

/* Progress bar container */
.d5NKJLYYWKW3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  z-index: 10;
}

/* Progress bar fill */
.e203M2JJJ {
  height: 100%;
  width: 0%;
  background-color: var(--color-primary);
  transition: width 0.1s ease-out;
}

/* For sticky header - keep progress bar visible */
#WXYK3K0OM.Y53YYZ1MK .d5NKJLYYWKW3,
.dOK4K21MYNJM.Y53YYZ1MK .d5NKJLYYWKW3 {
  position: absolute;
  bottom: 0;
}

/* Hide progress bar when header is hidden on scroll */
#WXYK3K0OM.Y53YYZ1MK.header-hidden .d5NKJLYYWKW3,
.dOK4K21MYNJM.Y53YYZ1MK.header-hidden .d5NKJLYYWKW3 {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show progress bar when visible */
body.T3YX4LJ1 .d5NKJLYYWKW3 {
  display: block;
}

/* Hide progress bar by default if not enabled */
body:not(.T3YX4LJ1) .d5NKJLYYWKW3 {
  display: none;
}

/* ===== MOBILE MENU STYLES ===== */

/* Mobile Menu Container */
.VW5W20W3M113 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}

.VW5W20W3M113.WW1YWJXJX0 {
  transform: translateX(0);
}

/* Mobile Menu Overlay */
.U4NXZ0KKZY1 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.U4NXZ0KKZY1.WW1YWJXJX0 {
  display: block;
  opacity: 1;
}

/* Специальный оверлей для fullscreen (скрыт, так как меню и так на весь экран) */
body.UZ4OY3LON .U4NXZ0KKZY1 {
  display: none !important;
}

/* Скрываем оверлей для dropdown стиля (меню выходит из-под хедера, оверлей не нужен) */
body.W5YKNMY0MKO5 .U4NXZ0KKZY1 {
  display: none !important;
}

/* Предотвращаем прокрутку body когда fullscreen меню открыто */
body.mobile-menu-open.mobile-menu-style-fullscreen {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

/* Обеспечиваем полноэкранность для fullscreen меню на всех устройствах */
@media screen and (max-width: 9999px) {
  .bX23XMJJ5M {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Mobile Menu Header */
.Y1MYY3X4YX {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  min-height: 70px;
}

.Y1MYY3X4YX .XL3J4Y2YX1 img,
.Y1MYY3X4YX .XL3J4Y2YX1 .custom-logo {
  max-height: 45px !important;
  width: auto !important;
}

.WK5MYM3KWX {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #333;
  transition: all 0.2s ease;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.WK5MYM3KWX:hover {
  background: #f5f5f5;
  color: #000;
}

.WK5MYM3KWX:hover svg {
  stroke: #000;
}

/* Mobile Menu Navigation */
.a4YJJNZWJ {
  padding: 8px 0;
  overflow: visible;
}

.a4YJJNZWJ ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.a4YJJNZWJ li {
  margin: 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

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

/* Diamond separator between menu items */
.a4YJJNZWJ li {
  overflow: visible;
  text-align: center;
}

.a4YJJNZWJ li + li {
  border-top: 1px solid #eee;
  position: relative;
}

.a4YJJNZWJ li + li::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  background: #b8dee8;
  transform: rotate(45deg);
  z-index: 5;
}

.a4YJJNZWJ a {
  color: #1a1a2e;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  transition: background 0.15s ease, color 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.a4YJJNZWJ .menu-item-has-children > a {
  position: relative;
  padding-right: 40px;
}

.a4YJJNZWJ .menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #aaa;
  transition: transform 0.25s ease;
}

.a4YJJNZWJ .bNMOM5MZL > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.a4YJJNZWJ .sub-menu,
.a4YJJNZWJ .VJ4O1YJYK3JJ {
  display: none;
  padding-left: var(--spacing-lg);
  margin-top: var(--spacing-xs);
  border-left: 1px solid rgba(148, 163, 184, 0.2);
}

.a4YJJNZWJ .VJ4O1YJYK3JJ .VJ4O1YJYK3JJ {
  margin-left: var(--spacing-md);
  padding-left: calc(var(--spacing-lg) / 1.5);
  border-left: 1px dashed rgba(148, 163, 184, 0.25);
}

.a4YJJNZWJ .VJ4O1YJYK3JJ .menu-item-has-children > a::after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid currentColor;
  border-right: 0;
  transform: translateY(-50%);
}

.a4YJJNZWJ .VJ4O1YJYK3JJ .bNMOM5MZL > a::after {
  transform: translateY(-50%) rotate(90deg);
}

.a4YJJNZWJ .bNMOM5MZL > .VJ4O1YJYK3JJ {
  display: block;
}

.a4YJJNZWJ .sub-menu a,
.a4YJJNZWJ .VJ4O1YJYK3JJ a {
  font-size: 14px;
  padding: 14px 24px;
  font-weight: 500;
  text-transform: none;
  color: #555;
}

.a4YJJNZWJ a:hover {
  background: #f8f9fa;
  color: var(--color-primary);
}

/* Mobile Menu CTA Buttons */
.UYJNM5Z4J {
  padding: 0;
  display: flex;
  position: relative;
  margin: 0;
}

.UYJNM5Z4J .VMYLNK21Z5K1 {
  flex: 1;
  margin: 0;
  border-radius: 0 !important;
  padding: 18px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.UYJNM5Z4J .VMYLNK21Z5K1:first-child {
  background: #1a2744;
  color: #fff;
  border: none;
}

.UYJNM5Z4J .VMYLNK21Z5K1:first-child:hover {
  background: #243452;
}

.UYJNM5Z4J .VMYLNK21Z5K1:last-child {
  background: #111;
  color: #fff;
  border: none;
}

.UYJNM5Z4J .VMYLNK21Z5K1:last-child:hover {
  background: #222;
}

/* ===== RESPONSIVE STYLES ===== */

/* Mobile Styles - Применяется ко ВСЕМ стилям хедеров */
@media (max-width: 767px) {
  /* Скрываем основное меню на мобильных */
  .e2ZXJ1NO {
    display: none !important;
  }
  
  /* Показываем кнопку мобильного меню */
  .cW35MWLLM {
    display: flex !important;
  }
  
  /* Показываем мобильное меню когда активно */
  .VW5W20W3M113 {
    display: block;
  }
  
  /* Адаптируем контейнер хедера */
  .bZ0M42WXY5 {
    flex-wrap: wrap;
    align-items: center; /* Центрируем по вертикали на мобильном */
    /* Высота управляется через классы header-height-* */
  }
  
  /* Выравнивание логотипа на мобильных */
  .YWNWJNY54N {
    display: flex !important;
    align-items: center !important;
    height: 60px; /* Фиксированная высота для центрирования */
  }
  
  .fZOZZWK4XX3 {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }
  
  .custom-logo {
    max-height: 65px !important;
    max-width: 180px !important;
    width: auto;
    height: auto;
    display: block !important;
    object-fit: contain;
  }

  /* ИСКЛЮЧЕНИЕ: Для Minimal стиля логотип 95px */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .custom-logo,
  .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK .custom-logo,
  .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK.scrolled .custom-logo {
    max-width: 95px !important; /* Override 140px for Minimal style */
  }
  
  /* CTA кнопки в хедере на мобильных скрываем (кроме Minimal стиля) */
  .W1W2W0Y0NJ {
    display: none !important;
  }
  
  /* Исключение для Minimal стиля - показываем обе CTA кнопки */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .W1W2W0Y0NJ {
    display: flex !important;
  }
  
  /* Для Default стиля - показываем только Primary кнопку (первую) */
  .dOK4K21MYNJM.d25L35L4XYM4 .W1W2W0Y0NJ {
    display: flex !important;
  }
  
  .dOK4K21MYNJM.d25L35L4XYM4 .W1W2W0Y0NJ .VMYLNK21Z5K1:nth-child(2) { /* SHOW BOTH BUTTONS */
    display: inline-flex !important;
  }
  
  /* Для всех стилей хедеров убираем специфичные стили */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM {
    position: static;
    display: flex !important;
  }
  
  /* Minimal style на мобильных - сохраняем flexbox с order */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .bZ0M42WXY5 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    /* Высота управляется через классы header-height-* */
    position: relative !important;
  }
  
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM {
    order: 1;
    position: static !important;
    flex-shrink: 0;
  }
  
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .YWNWJNY54N {
    order: 2;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .W1W2W0Y0NJ {
    order: 3;
    display: flex !important; /* Показываем кнопки на мобильных в Minimal стиле */
    margin-left: auto !important;
  }
  
  /* В Minimal стиле на мобильном показываем только Primary Button (первую кнопку) */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .W1W2W0Y0NJ .VMYLNK21Z5K1:nth-child(2) { /* SHOW BOTH BUTTONS */
    display: inline-flex !important;
  }

  /* CTA кнопка ТОЛЬКО В ХЕДЕРЕ на мобильном - по размеру текста */
  .dOK4K21MYNJM .VMYLNK21Z5K1 {
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    padding: var(--spacing-xs) var(--spacing-sm) !important;
    font-size: var(--font-size-xs) !important;
    flex-shrink: 1 !important;
    white-space: nowrap !important;
  }

  /* Для Minimal стиля - еще меньше отступы */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .VMYLNK21Z5K1 {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  /* Контейнер CTA кнопок ТОЛЬКО В ХЕДЕРЕ - может сжиматься */
  .dOK4K21MYNJM .W1W2W0Y0NJ {
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }

  /* Для Minimal - контейнер тоже компактный */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .W1W2W0Y0NJ {
    gap: 6px !important;
    flex-shrink: 1 !important;
  }


  
  /* Ограничиваем ширину логотипа в Minimal стиле на мобильном */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .custom-logo,
  .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK .custom-logo,
  .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK.scrolled .custom-logo {
    max-width: 95px !important; /* Smaller logo for Minimal style on mobile */
    height: auto !important;
  }
  
  /* Sticky Minimal на мобильном - простое вертикальное выравнивание через flex */
  .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK .bZ0M42WXY5 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
}

/* Small Tablet Styles */
@media (min-width: 576px) and (max-width: 767px) {
  /* Отступ остается 0, так как container уже имеет padding */
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
  /* На планшетах тоже используем мобильное меню */
  .e2ZXJ1NO {
    display: none !important;
  }

  .cW35MWLLM {
    display: flex !important;
  }

  .VW5W20W3M113 {
    display: block;
  }

  .W1W2W0Y0NJ {
    gap: var(--spacing-xs);
  }

  .VMYLNK21Z5K1 {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-sm);
  }

  /* Скрываем вторую CTA кнопку на планшетах для всех стилей хедера */
  .dOK4K21MYNJM .W1W2W0Y0NJ .VMYLNK21Z5K1:nth-child(2) {
    display: none !important;
  }

  /* Показываем только первую CTA кнопку */
  .dOK4K21MYNJM .W1W2W0Y0NJ {
    display: flex !important;
  }

}

/* Desktop Styles */
@media (min-width: 992px) {
  /* Убеждаемся, что мобильное меню скрыто на десктопе */
  .VW5W20W3M113,
  .U4NXZ0KKZY1 {
    display: none !important;
  }
  
  /* Кнопка мобильного меню скрыта по умолчанию на десктопе */
  .cW35MWLLM {
    display: none;
  }
  
  /* Но для Minimal style показываем кнопку даже на десктопе */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Убеждаемся что иконки правильно отображаются в Minimal стиле на десктопе */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM .T1M0OMMLL2MZ {
    width: 40px;
    height: 40px;
  }
  
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM .YY55OWX44 {
    width: 40px;
    height: 40px;
  }
}



/* ===================================
   STICKY HEADER FUNCTIONALITY
   =================================== */

/* When header becomes sticky via JavaScript */
#WXYK3K0OM.Y53YYZ1MK,
.dOK4K21MYNJM.Y53YYZ1MK {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  /* Keep original header background color */
  background-color: var(--color-header-bg);
  padding: 0; /* Убираем паддинги - высота управляется через Sticky Header Height */
  display: flex;
  align-items: center; /* Вертикальное центрирование */
  justify-content: center; /* Горизонтальное центрирование */


  /* Тень для глубины */
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}


/* Optional: Add subtle effects when scrolled without changing color */
#WXYK3K0OM.Y53YYZ1MK.scrolled,
.dOK4K21MYNJM.Y53YYZ1MK.scrolled {
  /* Keep the same background color, just add backdrop filter for subtle effect */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0; /* Убираем паддинги - высота управляется через Sticky Header Height */
  display: flex;
  align-items: center; /* Вертикальное центрирование */
  justify-content: center; /* Горизонтальное центрирование */

  /* Усиленная тень при скролле */
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}






@-webkit-keyframes subtlePulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}

@keyframes subtlePulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}

#WXYK3K0OM.Y53YYZ1MK.scrolled .YWNWJNY54N img,
.dOK4K21MYNJM.Y53YYZ1MK.scrolled .YWNWJNY54N img {
  max-height: 40px;
  transition: max-height 0.3s ease;
}

/* ИСКЛЮЧЕНИЕ: Для Minimal стиля в sticky scrolled режиме логотип 95px и высота как в обычном sticky */
/* УДАЛЕНО: Дублированное правило для Minimal sticky, теперь используются стандартные размеры */

/* Sticky mode для Minimal style */
.dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK .bZ0M42WXY5 {
  /* Высота управляется через классы sticky-header-height-* */
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important; /* Вертикальное выравнивание всех элементов */
  justify-content: space-between !important;
}


/* Scrolled состояние для Minimal - центрируем сам хедер */
.dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK.scrolled {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* Для Minimal сохраняем оригинальный цвет фона без изменений */
  background-color: var(--color-header-bg) !important;
}

/* Контейнер внутри scrolled Minimal */
.dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK.scrolled .bZ0M42WXY5 {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Body padding when header is sticky - now handled by JavaScript dynamically */
/* body.has-sticky-header padding-top is set via JavaScript based on actual header height */

/* Optional: Hide header on scroll down */
#WXYK3K0OM.Y53YYZ1MK.header-hidden,
.dOK4K21MYNJM.Y53YYZ1MK.header-hidden {
  transform: translateY(-100%);
}

/* ===================================
   GUTENBERG BLOCKS SPACING
   =================================== */

/* Media & Text Block - добавляем стандартный отступ снизу */
.wp-block-media-text {
  margin-bottom: var(--spacing-lg); /* 24px - стандартный отступ между блоками */
}

/* Убираем отступ у последнего блока в контейнере */
.XXL5XY1K5MJ0 > .wp-block-media-text:last-child {
  margin-bottom: 0;
}

/* ===================================
   LIVE PREVIEW POSITIONING FIXES
   =================================== */

/* Специальные стили для live preview режима */
.wphub-live-preview-mode .VK4XX3LL1L1.live-preview-dropdown-positioned {
  position: fixed !important;
  top: var(--live-preview-menu-top, 81px) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: calc(100vh - var(--live-preview-header-height, 80px)) !important;
  z-index: 1001 !important;
  max-width: none !important;
}

.wphub-live-preview-mode .bX23XMJJ5M.live-preview-fullscreen-positioned {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  z-index: 1001 !important;
}

/* ===================================
   MOBILE MENU STYLES
   =================================== */

/* Base Mobile Menu Reset */
.VW5W20W3M113 {
  position: fixed;
  z-index: 9999;
  background: var(--color-header-bg);
  overflow-y: auto;
  transition: all 0.3s ease;
}

/* 1. Slide from Right (Default) */
.e5N020J333X {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  max-width: 100% !important;
  transform: translateX(-100%);
}

.e5N020J333X.WW1YWJXJX0 {
  transform: translateX(0);
}

/* 2. Slide from Left */
.X24N0L41ZO2Y {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  max-width: 100% !important;
  transform: translateX(-100%);
}

.X24N0L41ZO2Y.WW1YWJXJX0 {
  transform: translateX(0);
}

/* Убираем все бордеры для slide-left */
.X24N0L41ZO2Y .Y1MYY3X4YX {
  border-bottom: none !important;
}

.X24N0L41ZO2Y .UYJNM5Z4J {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* 3. Fullscreen Overlay - ПОЛНОСТЬЮ ПЕРЕДЕЛАННЫЙ */
.bX23XMJJ5M {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  background: var(--color-header-bg);
  z-index: 99999 !important;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  overflow-y: auto;
}

/* Красивый градиентный фон для fullscreen меню */
.bX23XMJJ5M::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    var(--color-header-bg) 0%, 
    var(--color-bg-secondary) 100%);
  opacity: 0.5;
  z-index: -1;
}

.bX23XMJJ5M.WW1YWJXJX0 {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

/* Хедер с логотипом по центру */
.bX23XMJJ5M .Y1MYY3X4YX {
  padding: var(--spacing-xl) var(--spacing-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  border-bottom: none !important;
}

.bX23XMJJ5M .XL3J4Y2YX1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.bX23XMJJ5M .WK5MYM3KWX {
  position: absolute;
  right: var(--spacing-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA кнопки под логотипом */
.bX23XMJJ5M .UYJNM5Z4J {
  padding: var(--spacing-lg) var(--spacing-xl);
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
  justify-content: center;
  flex-shrink: 0;
  border: none !important;
}

.bX23XMJJ5M .UYJNM5Z4J .VMYLNK21Z5K1 {
  min-width: 120px;
  text-align: center;
}

/* Навигационное меню по центру */
.bX23XMJJ5M .a4YJJNZWJ {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  overflow-y: auto;
}

.bX23XMJJ5M #T44XLZWK {
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.bX23XMJJ5M .a4YJJNZWJ li {
  margin: 0;
  padding: var(--spacing-md) 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.bX23XMJJ5M.WW1YWJXJX0 .a4YJJNZWJ li {
  opacity: 1;
  transform: translateY(0);
}

.bX23XMJJ5M .a4YJJNZWJ li:nth-child(1) { animation-delay: 0.1s; }
.bX23XMJJ5M .a4YJJNZWJ li:nth-child(2) { animation-delay: 0.15s; }
.bX23XMJJ5M .a4YJJNZWJ li:nth-child(3) { animation-delay: 0.2s; }
.bX23XMJJ5M .a4YJJNZWJ li:nth-child(4) { animation-delay: 0.25s; }
.bX23XMJJ5M .a4YJJNZWJ li:nth-child(5) { animation-delay: 0.3s; }

.bX23XMJJ5M .a4YJJNZWJ a {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-header-link);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.bX23XMJJ5M .a4YJJNZWJ a:hover {
  color: var(--color-primary);
  transform: scale(1.05);
}

/* Эффект подчеркивания при hover */
.bX23XMJJ5M .a4YJJNZWJ a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}

.bX23XMJJ5M .a4YJJNZWJ a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

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

/* 4. Dropdown from Header - FIXED WITH CLOSE BUTTON IN HEADER */
.VK4XX3LL1L1 {
  position: fixed;
  top: 80px; /* JavaScript will override this dynamically */
  left: 0;
  right: 0;
  width: 100vw;
  max-width: none;
  background: var(--color-header-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 998; /* Below header but above content */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  height: calc(100vh - 80px);
  /* Hide menu above screen initially */
  transform: translateY(-100%);
  padding: 0;
  box-sizing: border-box;
}

/* Когда активно, позиционируем точно под хедером */
.VK4XX3LL1L1.WW1YWJXJX0 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Allow JavaScript to override positioning */
.VK4XX3LL1L1 {
  top: 80px;
  height: calc(100vh - 80px);
}

/* Для мобильных устройств */
@media (max-width: 767px) {
  .VK4XX3LL1L1 {
    top: 65px;
    height: calc(100vh - 65px);
  }
  
  /* Фиксируем позицию menu-toggle в хедере для dropdown стиля */
  
  /* Для Default и Split стилей */
  body.W5YKNMY0MKO5 .dOK4K21MYNJM:not(.TWJJ2N4L5Y1) .cW35MWLLM {
    position: relative !important;
    z-index: 1005 !important;
  }
  
  /* Для Minimal стиля - кнопка остается слева */
  body.W5YKNMY0MKO5 .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM {
    position: static !important;
    order: 1;
    z-index: 1005 !important;
  }
  
  
  /* Когда меню открыто - кнопки остаются на месте */
  body.W5YKNMY0MKO5.mobile-menu-open .cW35MWLLM {
    /* Остается на тех же позициях */
  }
  
  body.W5YKNMY0MKO5.mobile-menu-open .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM {
    position: static !important;
    order: 1;
  }
  
}


/* Скрываем хедер меню для dropdown стиля - МОЩНЫЕ ПРАВИЛА */

/* Основное правило для dropdown меню */
.VK4XX3LL1L1 .Y1MYY3X4YX,
#X32MXZ1N1X.mobile-menu-dropdown .Y1MYY3X4YX {
  display: none !important;
}

/* Правила по классу body - более мощные */
body.W5YKNMY0MKO5 .Y1MYY3X4YX,
body.W5YKNMY0MKO5 #X32MXZ1N1X .Y1MYY3X4YX,
body.W5YKNMY0MKO5 .VW5W20W3M113 .Y1MYY3X4YX {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  z-index: -9999 !important;
}

/* Скрываем кнопку закрытия - МОЩНЫЕ ПРАВИЛА */
.VK4XX3LL1L1 .WK5MYM3KWX,
.VK4XX3LL1L1 #b3KWY012,
#X32MXZ1N1X.mobile-menu-dropdown .WK5MYM3KWX,
#X32MXZ1N1X.mobile-menu-dropdown #b3KWY012,
body.W5YKNMY0MKO5 .WK5MYM3KWX,
body.W5YKNMY0MKO5 #b3KWY012,
body.W5YKNMY0MKO5 .VW5W20W3M113 .WK5MYM3KWX,
body.W5YKNMY0MKO5 #X32MXZ1N1X .WK5MYM3KWX,
body.W5YKNMY0MKO5 #X32MXZ1N1X #b3KWY012 {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  z-index: -9999 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* На всякий случай - скрываем логотип в мобильном меню */
body.W5YKNMY0MKO5 .XL3J4Y2YX1,
body.W5YKNMY0MKO5 .VW5W20W3M113 .XL3J4Y2YX1,
.VK4XX3LL1L1 .XL3J4Y2YX1 {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* CTA кнопки с отступом сверху - сразу после хедера */
.VK4XX3LL1L1 .UYJNM5Z4J,
body.W5YKNMY0MKO5 .VW5W20W3M113 .UYJNM5Z4J,
body.W5YKNMY0MKO5 #X32MXZ1N1X .UYJNM5Z4J {
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
  border-bottom: none !important;
  margin-top: 15px !important; /* Отступ от края хедера */
  /* Кнопки должны быть первым элементом в меню */
  order: -1;
}

/* Навигационное меню */
.VK4XX3LL1L1 .a4YJJNZWJ {
  padding: 0;
}

.VK4XX3LL1L1 #T44XLZWK {
  margin: 0;
  padding: 0;
}

.VK4XX3LL1L1 .a4YJJNZWJ li {
  margin: 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInFromLeft 0.3s ease forwards;
}

.VK4XX3LL1L1.WW1YWJXJX0 .a4YJJNZWJ li {
  opacity: 1;
  transform: translateX(0);
}

.VK4XX3LL1L1 .a4YJJNZWJ li:nth-child(1) { animation-delay: 0.05s; }
.VK4XX3LL1L1 .a4YJJNZWJ li:nth-child(2) { animation-delay: 0.1s; }
.VK4XX3LL1L1 .a4YJJNZWJ li:nth-child(3) { animation-delay: 0.15s; }
.VK4XX3LL1L1 .a4YJJNZWJ li:nth-child(4) { animation-delay: 0.2s; }
.VK4XX3LL1L1 .a4YJJNZWJ li:nth-child(5) { animation-delay: 0.25s; }

.VK4XX3LL1L1 .a4YJJNZWJ a {
  padding: var(--spacing-md) var(--spacing-lg);
  display: block;
  font-size: var(--font-size-lg);
  color: var(--color-header-link);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.VK4XX3LL1L1 .a4YJJNZWJ a:hover {
  background: rgba(var(--color-primary-rgb, 37, 99, 235), 0.05);
  padding-left: calc(var(--spacing-lg) + 10px);
  color: var(--color-primary);
}

/* Эффект при наведении - появление линии слева */
.VK4XX3LL1L1 .a4YJJNZWJ a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}

.VK4XX3LL1L1 .a4YJJNZWJ a:hover::after {
  transform: translateY(-50%) scaleY(1);
}

/* Индикатор активной страницы */
.VK4XX3LL1L1 .a4YJJNZWJ .current-menu-item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--color-primary);
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* ===== FOOTER STYLES ===== */
.Y2MOXKJ5Z {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 0; /* Removed vertical padding */
  margin-top: var(--spacing-3xl);
}

.Y2MOXKJ5Z a {
  color: var(--color-footer-link);
  text-decoration: none;
}

.Y2MOXKJ5Z a:hover {
  color: var(--color-footer-link-hover);
  text-decoration: underline;
}

/* ===================================
   MOBILE MENU ANIMATIONS
   =================================== */

/* Smooth Animation (Default) */
.YX4KWO2LX .VW5W20W3M113 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade Animation */
.ZY5W5M5ZW .VW5W20W3M113 {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ZY5W5M5ZW .VW5W20W3M113:not(.WW1YWJXJX0) {
  opacity: 0;
}

/* Scale Animation */
.cXWMMON0W .VW5W20W3M113 {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cXWMMON0W .VW5W20W3M113:not(.WW1YWJXJX0) {
  transform: scale(0.8);
}

/* Rotate Animation */
.YYYKLMX1LW .VW5W20W3M113 {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: top right;
}

.YYYKLMX1LW .VW5W20W3M113:not(.WW1YWJXJX0) {
  transform: rotateY(-90deg);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 991px) {
}

@media (min-width: 992px) {
}

/* ==========================================================================
   FOOTER LAYOUTS
   ========================================================================== */

/* =====
   FOOTER DEFAULT
   ===== */
/* Footer Default Styles */
.bN1K4LLNKN {
  background: var(--color-footer-bg, #1a1a1a);
  color: var(--color-footer-text, #ffffff);
  margin-top: 60px;
}

/* Footer Top Section */
.T3X4X4JONM {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.a22WM24Z {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

/* Footer Brand Column */
.X03JN402 {
  max-width: 350px;
}

.X02XZMM3Y3XZ img {
  max-height: 45px;
  width: auto;
}

.TLO3NWW32ZJY {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--color-footer-text, #ffffff);
}

.W51WYMLYK {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 15px 0 25px;
}

/* Social Links */
.aJX0YO01Z0 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.TWOZL1N2MYXL {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-footer-text, #ffffff);
  transition: all 0.3s ease;
}

.TWOZL1N2MYXL:hover {
  background: var(--color-primary, #007cba);
  transform: translateY(-3px);
}

.TWOZL1N2MYXL svg {
  width: 18px;
  height: 18px;
}

/* Widget Areas Grid */
.WKN32OW4KOZ {
  flex: 1;
}

.YYNJ24YZ4N {
  display: grid;
  gap: 40px;
}

.YYNJ24YZ4N.columns-1 {
  grid-template-columns: 1fr;
}

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

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

/* Widget Styles */
.cKO431XX5 .widget {
  margin-bottom: 30px;
}

.cKO431XX5 .widget:last-child {
  margin-bottom: 0;
}

.cKO431XX5 .widget-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-footer-text, #ffffff);
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary, #007cba);
  display: inline-block;
}

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

.cKO431XX5 ul li {
  margin-bottom: 12px;
}

.cKO431XX5 ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.cKO431XX5 ul li a:hover {
  color: var(--color-primary, #007cba);
  transform: translateX(3px);
}

/* Footer Bottom */
.UKY2YZW41OJ {
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
}

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

.TXOO2LZX34Y {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Navigation */
.T13Y0LY5Y {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.T13Y0LY5Y li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.T13Y0LY5Y li a:hover {
  color: var(--color-footer-text, #ffffff);
}

/* Responsive Columns */
.aJXO110XW4 .a22WM24Z {
  grid-template-columns: 1fr;
}

.aO2L2ZLW0Z .a22WM24Z {
  grid-template-columns: 350px 1fr;
}

.eNYKOMMN4ZY .a22WM24Z {
  grid-template-columns: 350px 1fr;
}

.aJMYJ1WN1YL .a22WM24Z {
  grid-template-columns: 350px 1fr;
}

/* Responsive Design */
@media (max-width: 991px) {
  .a22WM24Z {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

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

  .aJX0YO01Z0 {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .T3X4X4JONM {
    padding: 40px 0 30px;
  }

  .YYNJ24YZ4N {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .YXW1O0JJW {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .T13Y0LY5Y {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* Center logo */
  .X02XZMM3Y3XZ {
    display: flex;
    justify-content: center;
  }

  /* Center brand/description */
  .e004O04OONX5 {
    text-align: center;
    align-items: center;
  }

  .W51WYMLYK {
    text-align: center;
  }

  /* Center footer menu columns */
  .Y1MW452JM {
    justify-content: center;
  }

  .UK13WXOJL4XK {
    text-align: center;
  }

  .UK13WXOJL4XK .footer-column-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .UK13WXOJL4XK .footer-column-links a::after {
    display: none;
  }

  /* Center copyright */
  .TXOO2LZX34Y {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .TLO3NWW32ZJY {
    font-size: 20px;
  }

  .cKO431XX5 .widget-title {
    font-size: 15px;
  }

  .TWOZL1N2MYXL {
    width: 35px;
    height: 35px;
  }
}

/* Dark Theme Support */
body.dark-theme .bN1K4LLNKN {
  background: var(--color-footer-bg, #000000);
}

body.dark-theme .UKY2YZW41OJ {
  background: rgba(0, 0, 0, 0.2);
}

/* Animation Effects */
@keyframes sjwhFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cKO431XX5 {
  animation: sjwhFadeInUp 0.5s ease-out;
}

.cKO431XX5:nth-child(2) {
  animation-delay: 0.1s;
}

.cKO431XX5:nth-child(3) {
  animation-delay: 0.2s;
}

/* =====
   FOOTER CENTERED
   ===== */
/* Centered Footer Styles */
.dWOYO5XXW10 {
  background: var(--color-footer-bg, #1a1a1a);
  color: var(--color-footer-text, #ffffff);
  padding: 60px 0 30px;
  text-align: center;
}

.aXY3XXY0M {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.WX33OZWN40YM {
  margin-bottom: 10px;
}

.WX33OZWN40YM .custom-logo {
  max-height: 50px;
  width: auto;
}

.dWOYO5XXW10 .TLO3NWW32ZJY {
  font-size: 24px;
  margin: 0;
  color: var(--color-footer-text, #fff);
}

.WMO0XZ1545 {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: 0.8;
  color: var(--color-footer-text, #fff);
}

.TN4MLNYYWN {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.TN4MLNYYWN a {
  color: var(--color-footer-text, #fff);
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.3s;
}

.TN4MLNYYWN a:hover {
  opacity: 0.7;
}

.dWOYO5XXW10 .aJX0YO01Z0 {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.dWOYO5XXW10 .dO1YKZM01O4Z {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-footer-text, #fff);
  text-decoration: none;
  transition: all 0.3s;
}

.dWOYO5XXW10 .dO1YKZM01O4Z:hover {
  background: var(--color-primary, #007cba);
  transform: translateY(-2px);
}

.Z1WK5OXKJM4J {
  font-weight: bold;
}

.YO2KLJO04M3 {
  font-size: 14px;
  color: var(--color-footer-text, #fff);
  opacity: 0.7;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 600px;
}

@media (max-width: 768px) {
  .dWOYO5XXW10 {
    padding: 40px 0 20px;
  }

  .TN4MLNYYWN {
    flex-direction: column;
    gap: 15px;
  }
}

/* =====
   FOOTER INFO
   ===== */
/* Info Footer Styles - Navigation & Social */
.Y2MOXKJ5Z.VM5OL0Y1N5,
footer.VM5OL0Y1N5,
#colophon.VM5OL0Y1N5 {
  background: var(--color-footer-bg, #1a1a2e) !important;
  color: var(--color-footer-text, #ffffff) !important;
}

/* Top Navigation Bar */
.VM5OL0Y1N5 .aOJ4O22J42,
.Y2MOXKJ5Z.VM5OL0Y1N5 .aOJ4O22J42 {
  padding: 15px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.VM5OL0Y1N5 .e2OMY0XN1,
.Y2MOXKJ5Z.VM5OL0Y1N5 .e2OMY0XN1 {
  width: 100% !important;
}

/* Navigation Columns Grid */
.VM5OL0Y1N5 .e0N21005,
.Y2MOXKJ5Z.VM5OL0Y1N5 .e0N21005 {
  display: grid !important;
  gap: 30px !important;
  width: 100% !important;
}

/* Column styles */
.VM5OL0Y1N5 .cL43W231,
.Y2MOXKJ5Z.VM5OL0Y1N5 .cL43W231 {
  display: flex !important;
  flex-direction: column !important;
}

.VM5OL0Y1N5 .a401XOXNMX,
.Y2MOXKJ5Z.VM5OL0Y1N5 .a401XOXNMX {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--color-footer-text, #ffffff) !important;
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
}

.VM5OL0Y1N5 .YKO0K53ZK,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YKO0K53ZK {
  display: flex !important;
  flex-direction: column !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 10px !important;
}

/* Grid columns based on setting */
.e2OMY0XN1.UZ4KLJNJXX .e0N21005,
.Y2MOXKJ5Z.VM5OL0Y1N5 .UZ4KLJNJXX .e0N21005 {
  grid-template-columns: 1fr !important;
}

.e2OMY0XN1.eN53JL3LNX2 .e0N21005,
.Y2MOXKJ5Z.VM5OL0Y1N5 .eN53JL3LNX2 .e0N21005 {
  grid-template-columns: repeat(2, 1fr) !important;
}

.e2OMY0XN1.YOX0O1WOO2 .e0N21005,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YOX0O1WOO2 .e0N21005 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.e2OMY0XN1.YWO0KM3M .e0N21005,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YWO0KM3M .e0N21005 {
  grid-template-columns: repeat(4, 1fr) !important;
}

.e2OMY0XN1.W01JKWWKM .e0N21005,
.Y2MOXKJ5Z.VM5OL0Y1N5 .W01JKWWKM .e0N21005 {
  grid-template-columns: repeat(5, 1fr) !important;
}

.e2OMY0XN1.Y15MX3JW20W .e0N21005,
.Y2MOXKJ5Z.VM5OL0Y1N5 .Y15MX3JW20W .e0N21005 {
  grid-template-columns: repeat(6, 1fr) !important;
}

.VM5OL0Y1N5 .YKO0K53ZK li,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YKO0K53ZK li {
  margin: 0 !important;
  list-style: none !important;
}

.VM5OL0Y1N5 .YKO0K53ZK li::marker,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YKO0K53ZK li::marker {
  content: '' !important;
}

.VM5OL0Y1N5 .YKO0K53ZK a,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YKO0K53ZK a {
  color: var(--color-footer-text, #ffffff) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: opacity 0.3s ease !important;
}

.VM5OL0Y1N5 .YKO0K53ZK a:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YKO0K53ZK a:hover {
  opacity: 0.7 !important;
}

/* Divider */
.VM5OL0Y1N5 .Z0NKK101,
.Y2MOXKJ5Z.VM5OL0Y1N5 .Z0NKK101 {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  margin: 0 !important;
}

/* Main Content */
.VM5OL0Y1N5 .eWX323YKJZM1,
.Y2MOXKJ5Z.VM5OL0Y1N5 .eWX323YKJZM1 {
  padding: 40px 0 !important;
}

.VM5OL0Y1N5 .e0XYOW45,
.Y2MOXKJ5Z.VM5OL0Y1N5 .e0XYOW45 {
  display: grid !important;
  grid-template-columns: 1fr 1.5fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* Left Side: Logo, Warning, Social */
.VM5OL0Y1N5 .UW32JKZJ041,
.Y2MOXKJ5Z.VM5OL0Y1N5 .UW32JKZJ041 {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.VM5OL0Y1N5 .YM1OLZW50,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YM1OLZW50 {
  margin-bottom: 10px !important;
}

.VM5OL0Y1N5 .YM1OLZW50 .custom-logo,
.Y2MOXKJ5Z.VM5OL0Y1N5 .YM1OLZW50 .custom-logo {
  max-height: 50px !important;
  width: auto !important;
}

.VM5OL0Y1N5 .eNWYMXWKYY4N,
.Y2MOXKJ5Z.VM5OL0Y1N5 .eNWYMXWKYY4N {
  font-size: 24px !important;
  margin: 0 !important;
  color: var(--color-footer-text, #fff) !important;
  font-weight: 600 !important;
}

.VM5OL0Y1N5 .bY3O2ZZKX,
.Y2MOXKJ5Z.VM5OL0Y1N5 /* Trust Badges/Icons */
.VM5OL0Y1N5 .Y323NM0WNZ,
.Y2MOXKJ5Z.VM5OL0Y1N5 .Y323NM0WNZ {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  align-items: center !important;
  margin: 0 0 20px 0 !important;
}

.VM5OL0Y1N5 .VZZJ30MJK3M,
.Y2MOXKJ5Z.VM5OL0Y1N5 .VZZJ30MJK3M {
  display: inline-block !important;
  margin: 0 !important;
}

.VM5OL0Y1N5 .WMON2Z53M3Y,
.Y2MOXKJ5Z.VM5OL0Y1N5 .WMON2Z53M3Y {
  display: inline-block !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.VM5OL0Y1N5 .WMON2Z53M3Y:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .WMON2Z53M3Y:hover {
  opacity: 0.8 !important;
  transform: translateY(-2px) !important;
}

.VM5OL0Y1N5 .VOXWN0ZJJXN4,
.Y2MOXKJ5Z.VM5OL0Y1N5 .VOXWN0ZJJXN4 {
  max-width: 120px !important;
  max-height: 60px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.VM5OL0Y1N5 .dN3JWJ2WZKKO,
.Y2MOXKJ5Z.VM5OL0Y1N5 .dN3JWJ2WZKKO {
  margin: 0 !important;
  font-size: 14px !important;
}

.VM5OL0Y1N5 .Y2K25M12N,
.Y2MOXKJ5Z.VM5OL0Y1N5 .Y2K25M12N {
  color: var(--color-footer-text, #fff) !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease !important;
}

.VM5OL0Y1N5 .Y2K25M12N:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .Y2K25M12N:hover {
  opacity: 0.7 !important;
  text-decoration: underline !important;
}

/* App Download Buttons */
.VM5OL0Y1N5 .aN440ZO4MY,
.Y2MOXKJ5Z.VM5OL0Y1N5 .aN440ZO4MY,
footer.VM5OL0Y1N5 .aN440ZO4MY,
#colophon.VM5OL0Y1N5 .aN440ZO4MY {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  margin-top: 20px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
}

.VM5OL0Y1N5 .aN440ZO4MY > *,
.Y2MOXKJ5Z.VM5OL0Y1N5 .aN440ZO4MY > *,
footer.VM5OL0Y1N5 .aN440ZO4MY > *,
#colophon.VM5OL0Y1N5 .aN440ZO4MY > * {
  display: inline-block !important;
  flex: 0 0 auto !important;
}

.VM5OL0Y1N5 .dOWMN5OY,
.Y2MOXKJ5Z.VM5OL0Y1N5 .dOWMN5OY,
footer.VM5OL0Y1N5 .dOWMN5OY,
#colophon.VM5OL0Y1N5 .dOWMN5OY {
  display: inline-block !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  flex-basis: auto !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  vertical-align: middle !important;
}

.VM5OL0Y1N5 .dOWMN5OY:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .dOWMN5OY:hover {
  opacity: 0.8 !important;
  transform: translateY(-2px) !important;
}

.VM5OL0Y1N5 .ZZN53XZNLK,
.Y2MOXKJ5Z.VM5OL0Y1N5 .ZZN53XZNLK {
  max-width: 150px !important;
  max-height: 45px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.VM5OL0Y1N5 .VN0KMJ4W1JXJ,
.Y2MOXKJ5Z.VM5OL0Y1N5 .VN0KMJ4W1JXJ {
  display: inline-block !important;
  padding: 8px 16px !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.VM5OL0Y1N5 .e05M4YZM2K1,
.Y2MOXKJ5Z.VM5OL0Y1N5 .e05M4YZM2K1 {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}

.VM5OL0Y1N5 .WMZO3ZWZM,
.Y2MOXKJ5Z.VM5OL0Y1N5 .WMZO3ZWZM {
  color: var(--color-footer-text, #fff) !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}

.VM5OL0Y1N5 .fW103LYMYN5J,
.Y2MOXKJ5Z.VM5OL0Y1N5 .fW103LYMYN5J {
  display: flex !important;
  gap: 10px !important;
}

.VM5OL0Y1N5 .X0MOLLN11XL,
.Y2MOXKJ5Z.VM5OL0Y1N5 .X0MOLLN11XL {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-footer-text, #fff) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.VM5OL0Y1N5 .X0MOLLN11XL:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .X0MOLLN11XL:hover {
  background: var(--color-primary, #007cba) !important;
  transform: translateY(-2px) !important;
}

.VM5OL0Y1N5 .X0MOLLN11XL.Z12X1X4W5K1:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .X0MOLLN11XL.Z12X1X4W5K1:hover {
  background: #1877f2 !important;
}

.VM5OL0Y1N5 .X0MOLLN11XL.d2YLYYXNMZ:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .X0MOLLN11XL.d2YLYYXNMZ:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.VM5OL0Y1N5 .X0MOLLN11XL.bWXXYX1ML:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .X0MOLLN11XL.bWXXYX1ML:hover {
  background: #000000 !important;
}

.VM5OL0Y1N5 .X0MOLLN11XL.fX4WXOZO00:hover,
.Y2MOXKJ5Z.VM5OL0Y1N5 .X0MOLLN11XL.fX4WXOZO00:hover {
  background: #ff0000 !important;
}

/* Right Side: Description */
.VM5OL0Y1N5 .WKYWOLYOZO,
.Y2MOXKJ5Z.VM5OL0Y1N5 .WKYWOLYOZO {
  color: rgba(255, 255, 255, 0.7) !important;
}

.VM5OL0Y1N5 .VYYMJYLKWL,
.Y2MOXKJ5Z.VM5OL0Y1N5 .VYYMJYLKWL {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.VM5OL0Y1N5 .VYYMJYLKWL p,
.Y2MOXKJ5Z.VM5OL0Y1N5 .VYYMJYLKWL p {
  margin: 0 0 15px 0 !important;
}

.VM5OL0Y1N5 .VYYMJYLKWL p:last-child,
.Y2MOXKJ5Z.VM5OL0Y1N5 .VYYMJYLKWL p:last-child {
  margin-bottom: 0 !important;
}

/* Bottom: Copyright */
.VM5OL0Y1N5 .c4WL0M51KK,
.Y2MOXKJ5Z.VM5OL0Y1N5 .c4WL0M51KK {
  padding: 20px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.VM5OL0Y1N5 .TWOM5JXLMW,
.Y2MOXKJ5Z.VM5OL0Y1N5 .TWOM5JXLMW {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 0 !important;
}

.VM5OL0Y1N5 .ZXJN4OX5JM,
.Y2MOXKJ5Z.VM5OL0Y1N5 .ZXJN4OX5JM {
  font-size: 14px !important;
  color: var(--color-footer-text, #fff) !important;
}

/* Responsive Design */
@media (max-width: 991px) {
  .VM5OL0Y1N5 .e0XYOW45,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .e0XYOW45 {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .VM5OL0Y1N5 .UW32JKZJ041,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .UW32JKZJ041 {
    text-align: center !important;
  }

  .VM5OL0Y1N5 .e05M4YZM2K1,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .e05M4YZM2K1 {
    justify-content: center !important;
  }

  .VM5OL0Y1N5 .TWOM5JXLMW,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .TWOM5JXLMW {
    flex-direction: column !important;
    text-align: center !important;
  }

  .VM5OL0Y1N5 .Y4Z0YJYZ0,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .Y4Z0YJYZ0 {
    justify-content: center !important;
  }

  /* Navigation columns responsive - reduce to 2 columns on tablet */
  .e2OMY0XN1.YOX0O1WOO2 .e0N21005,
  .e2OMY0XN1.YWO0KM3M .e0N21005,
  .e2OMY0XN1.W01JKWWKM .e0N21005,
  .e2OMY0XN1.Y15MX3JW20W .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .YOX0O1WOO2 .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .YWO0KM3M .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .W01JKWWKM .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .Y15MX3JW20W .e0N21005 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .VM5OL0Y1N5 .eWX323YKJZM1,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .eWX323YKJZM1 {
    padding: 30px 0 !important;
  }

  .VM5OL0Y1N5 .YKO0K53ZK,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .YKO0K53ZK {
    gap: 10px !important;
  }


  /* Navigation columns mobile - all become single column */
  .e2OMY0XN1.eN53JL3LNX2 .e0N21005,
  .e2OMY0XN1.YOX0O1WOO2 .e0N21005,
  .e2OMY0XN1.YWO0KM3M .e0N21005,
  .e2OMY0XN1.W01JKWWKM .e0N21005,
  .e2OMY0XN1.Y15MX3JW20W .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .eN53JL3LNX2 .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .YOX0O1WOO2 .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .YWO0KM3M .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .W01JKWWKM .e0N21005,
  .Y2MOXKJ5Z.VM5OL0Y1N5 .Y15MX3JW20W .e0N21005 {
    grid-template-columns: 1fr !important;
  }
}

/* =====
   FOOTER INFO 2
   ===== */
/* Info 2 Footer Styles - Logo & Social | Badges | Menu */
.Y2MOXKJ5Z.X3MKZ0WNNXKO,
footer.X3MKZ0WNNXKO,
#colophon.X3MKZ0WNNXKO {
  background: var(--color-footer-bg, #1a1a2e) !important;
  color: var(--color-footer-text, #ffffff) !important;
}

/* Main Content */
.X3MKZ0WNNXKO .X01OX0ONL4NM,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .X01OX0ONL4NM {
  padding: 40px 0 !important;
}

.X3MKZ0WNNXKO .TXOWZ34O2Y,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .TXOWZ34O2Y {
  display: grid !important;
  grid-template-columns: 1fr 2fr 1fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* Left: Logo & Social */
.X3MKZ0WNNXKO .bLZKW45OW,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .bLZKW45OW {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.X3MKZ0WNNXKO .bXWLK0ZKZ5K4,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .bXWLK0ZKZ5K4 {
  margin-bottom: 10px !important;
}

.X3MKZ0WNNXKO .bXWLK0ZKZ5K4 .custom-logo,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .bXWLK0ZKZ5K4 .custom-logo {
  max-height: 50px !important;
  width: auto !important;
}

.X3MKZ0WNNXKO .eLMKOXN5KL,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .eLMKOXN5KL {
  font-size: 24px !important;
  margin: 0 !important;
  color: var(--color-footer-text, #fff) !important;
  font-weight: 600 !important;
}

.X3MKZ0WNNXKO .cK3WJ412ZO10,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .cK3WJ412ZO10 {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.X3MKZ0WNNXKO .Y5YK5J5X5K,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .Y5YK5J5X5K {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-footer-text, #fff) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.X3MKZ0WNNXKO .Y5YK5J5X5K:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .Y5YK5J5X5K:hover {
  background: var(--color-primary, #007cba) !important;
  transform: translateY(-2px) !important;
}

.X3MKZ0WNNXKO .Y5YK5J5X5K.Z12X1X4W5K1:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .Y5YK5J5X5K.Z12X1X4W5K1:hover {
  background: #1877f2 !important;
}

.X3MKZ0WNNXKO .Y5YK5J5X5K.d2YLYYXNMZ:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .Y5YK5J5X5K.d2YLYYXNMZ:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.X3MKZ0WNNXKO .Y5YK5J5X5K.bWXXYX1ML:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .Y5YK5J5X5K.bWXXYX1ML:hover {
  background: #000000 !important;
}

.X3MKZ0WNNXKO .Y5YK5J5X5K.fX4WXOZO00:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .Y5YK5J5X5K.fX4WXOZO00:hover {
  background: #ff0000 !important;
}

/* Email */
.X3MKZ0WNNXKO .aYW3OJ12,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .aYW3OJ12 {
  margin: 12px 0 0 0 !important;
  font-size: 14px !important;
}

.X3MKZ0WNNXKO .d1O32LNJ,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .d1O32LNJ {
  color: var(--color-footer-text, #fff) !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease !important;
}

.X3MKZ0WNNXKO .d1O32LNJ:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .d1O32LNJ:hover {
  opacity: 0.7 !important;
  text-decoration: underline !important;
}

/* App Download Buttons */
.X3MKZ0WNNXKO .YX3JO24JN,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .YX3JO24JN,
footer.X3MKZ0WNNXKO .YX3JO24JN,
#colophon.X3MKZ0WNNXKO .YX3JO24JN {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  margin: 0 !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: 100% !important;
}

.X3MKZ0WNNXKO .YX3JO24JN > *,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .YX3JO24JN > *,
footer.X3MKZ0WNNXKO .YX3JO24JN > *,
#colophon.X3MKZ0WNNXKO .YX3JO24JN > * {
  display: inline-block !important;
  flex: 0 0 auto !important;
}

.X3MKZ0WNNXKO .ZY54X5OY31O,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .ZY54X5OY31O,
footer.X3MKZ0WNNXKO .ZY54X5OY31O,
#colophon.X3MKZ0WNNXKO .ZY54X5OY31O {
  display: inline-block !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  flex-basis: auto !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  vertical-align: middle !important;
}

.X3MKZ0WNNXKO .ZY54X5OY31O:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .ZY54X5OY31O:hover {
  opacity: 0.8 !important;
  transform: translateY(-2px) !important;
}

.X3MKZ0WNNXKO .YMWL3NM3K01O,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .YMWL3NM3K01O {
  max-width: 150px !important;
  max-height: 45px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.X3MKZ0WNNXKO .dJK2M4KO,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .dJK2M4KO {
  display: inline-block !important;
  padding: 8px 16px !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

/* Center: Badges */
.X3MKZ0WNNXKO .fJX23LN0L4N,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .fJX23LN0L4N {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
}

.X3MKZ0WNNXKO .UZJLK0MMLJJ,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .UZJLK0MMLJJ {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.X3MKZ0WNNXKO .VKJL2X0ZM,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .VKJL2X0ZM {
  display: inline-block !important;
  margin: 0 !important;
}

.X3MKZ0WNNXKO .d0M5J30K3,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .d0M5J30K3 {
  display: inline-block !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.X3MKZ0WNNXKO .d0M5J30K3:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .d0M5J30K3:hover {
  opacity: 0.8 !important;
  transform: translateY(-2px) !important;
}

/* Auto-size badges for up to 6 badges - responsive sizing */
.X3MKZ0WNNXKO .VKJL2X0ZM,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .VKJL2X0ZM {
  flex: 0 1 auto !important;
  min-width: 0 !important;
}

/* Adjust badge image size based on container */
.X3MKZ0WNNXKO .Y23WJM2WN0,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .Y23WJM2WN0 {
  max-width: 100% !important;
  max-height: 60px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Responsive badge sizing - up to 6 badges in a row */
@media (min-width: 768px) {
  .X3MKZ0WNNXKO .UZJLK0MMLJJ .VKJL2X0ZM {
    max-width: calc((100% - 50px) / 6) !important;
  }
  
  .X3MKZ0WNNXKO .UZJLK0MMLJJ .VKJL2X0ZM:nth-child(n+7) {
    max-width: calc((100% - 50px) / 6) !important;
  }
}

@media (max-width: 767px) {
  .X3MKZ0WNNXKO .UZJLK0MMLJJ {
    gap: 8px !important;
  }
  
  .X3MKZ0WNNXKO .VKJL2X0ZM {
    max-width: calc((100% - 40px) / 3) !important;
  }
  
  .X3MKZ0WNNXKO .Y23WJM2WN0 {
    max-height: 50px !important;
  }
}

/* Bottom Row: Description (66%) and App Buttons (34%) */
.X3MKZ0WNNXKO .cYWLXXZX,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .cYWLXXZX {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  margin-top: 30px !important;
  width: 100% !important;
  align-items: center !important;
}

.X3MKZ0WNNXKO .YJ3M204O,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .YJ3M204O {
  flex: 0 0 66% !important;
  max-width: 66% !important;
  box-sizing: border-box !important;
}

.X3MKZ0WNNXKO .TZ00MWY25O1X,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .TZ00MWY25O1X {
  flex: 0 0 34% !important;
  max-width: 34% !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

.X3MKZ0WNNXKO .TZ00MWY25O1X .YX3JO24JN,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .TZ00MWY25O1X .YX3JO24JN {
  justify-content: flex-end !important;
}

.X3MKZ0WNNXKO .XKJNZO5N,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .XKJNZO5N {
  text-align: left !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--color-footer-text, #ffffff) !important;
  margin: 0 !important;
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* Right: Menu */
.X3MKZ0WNNXKO .YW5MW3M3NMJM,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .YW5MW3M3NMJM {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

.X3MKZ0WNNXKO .Y1K2LW0KZY1,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .Y1K2LW0KZY1 {
  display: flex !important;
  flex-direction: column !important;
}

.X3MKZ0WNNXKO .UY53J3KMK,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .UY53J3KMK {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--color-footer-text, #ffffff) !important;
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
}

.X3MKZ0WNNXKO .f053M2L3ZWNW,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .f053M2L3ZWNW {
  display: flex !important;
  flex-direction: column !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 10px !important;
}

.X3MKZ0WNNXKO .f053M2L3ZWNW li,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .f053M2L3ZWNW li {
  margin: 0 !important;
  list-style: none !important;
}

.X3MKZ0WNNXKO .f053M2L3ZWNW li::marker,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .f053M2L3ZWNW li::marker {
  content: '' !important;
}

.X3MKZ0WNNXKO .f053M2L3ZWNW a,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .f053M2L3ZWNW a {
  color: var(--color-footer-text, #ffffff) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: opacity 0.3s ease !important;
}

.X3MKZ0WNNXKO .f053M2L3ZWNW a:hover,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .f053M2L3ZWNW a:hover {
  opacity: 0.7 !important;
}

/* Divider */
.X3MKZ0WNNXKO .aNL2X3OK5,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .aNL2X3OK5 {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  margin: 0 !important;
}

/* Bottom: Copyright */
.X3MKZ0WNNXKO .XN3ZNN5WYWOO,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .XN3ZNN5WYWOO {
  padding: 20px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-top: 20px !important;
}

.X3MKZ0WNNXKO .V3KMJ5O142J4,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .V3KMJ5O142J4 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 0 !important;
}

/* Mobile: Bottom row stack vertically */
@media (max-width: 767px) {
  .X3MKZ0WNNXKO .cYWLXXZX,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .cYWLXXZX {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .X3MKZ0WNNXKO .YJ3M204O,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .YJ3M204O {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  
  .X3MKZ0WNNXKO .TZ00MWY25O1X,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .TZ00MWY25O1X {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
  }
  
  .X3MKZ0WNNXKO .XKJNZO5N {
    text-align: left !important;
  }
}

.X3MKZ0WNNXKO .cW3MNK5035Y5,
.Y2MOXKJ5Z.X3MKZ0WNNXKO .cW3MNK5035Y5 {
  font-size: 14px !important;
  color: var(--color-footer-text, #fff) !important;
}

/* Responsive Design */
@media (max-width: 991px) {
  .X3MKZ0WNNXKO .TXOWZ34O2Y,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .TXOWZ34O2Y {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .X3MKZ0WNNXKO .bLZKW45OW,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .bLZKW45OW {
    text-align: center !important;
    align-items: center !important;
  }

  .X3MKZ0WNNXKO .cK3WJ412ZO10,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .cK3WJ412ZO10 {
    justify-content: center !important;
  }

  .X3MKZ0WNNXKO .YW5MW3M3NMJM,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .YW5MW3M3NMJM {
    justify-content: center !important;
  }

  .X3MKZ0WNNXKO .Y1K2LW0KZY1,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .Y1K2LW0KZY1 {
    align-items: center !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .X3MKZ0WNNXKO .X01OX0ONL4NM,
  .Y2MOXKJ5Z.X3MKZ0WNNXKO .X01OX0ONL4NM {
    padding: 30px 0 !important;
  }
}

/* =====
   FOOTER MINIMAL
   ===== */
/* Minimal Footer Styles */
.X1JNX3WYLM {
  padding: 20px 0;
  border-top: 1px solid var(--color-primary, #007cba);
}

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

.XJ4M000L {
  font-size: 14px;
  color: var(--color-text-primary, #1a1a1a);
}

.eWXMX1M4Z {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.eWXMX1M4Z a {
  font-size: 14px;
  color: var(--color-text-primary, #1a1a1a);
  text-decoration: none;
  transition: color 0.3s;
}

.eWXMX1M4Z a:hover {
  color: var(--color-primary, #007cba);
}

@media (max-width: 768px) {
  .eJXMKY241W2Y {
    flex-direction: column;
    text-align: center;
  }

  .eWXMX1M4Z {
    justify-content: center;
  }
}

/* ===================================
   DESKTOP SIDEBAR MENU (Minimal Style Only)
   =================================== */

/* Боковое меню - скрыто по умолчанию */
.W4W521O45,
.Z31Z51Z0 {
  display: none;
}

/* Показываем ТОЛЬКО для Minimal стиля на десктопе */
@media (min-width: 992px) {
  /* Показываем sidebar для Minimal header (без :has для совместимости) */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 ~ #colophon ~ .W4W521O45,
  body.dM25MKJY4 .W4W521O45 {
    display: flex !important;
  }
  
  .dOK4K21MYNJM.TWJJ2N4L5Y1 ~ #colophon ~ .Z31Z51Z0,
  body.dM25MKJY4 .Z31Z51Z0 {
    display: block !important;
  }
  .W4W521O45 {
    position: fixed;
    top: 0;
    left: -320px; /* Скрыто слева */
    bottom: 0;
    width: 320px;
    background: var(--color-header-bg); /* Используем цвет фона хедера */
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  
  /* Активное состояние меню - ВАЖНО для показа */
  .W4W521O45.WW1YWJXJX0 {
    left: 0;
    display: flex !important; /* Форсируем показ */
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Внутренний контейнер */
  .Y4JYWWNJ43 {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Заголовок бокового меню */
  .dW5JZ4LKN {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--color-header-bg);
    flex-shrink: 0;
  }
  
  .c5ZMMYX000MZ {
    flex: 1;
  }
  
  .c5ZMMYX000MZ img {
    max-height: 50px;
    max-width: 140px; /* Ограничиваем ширину логотипа в боковом меню */
    width: auto;
    object-fit: contain; /* Сохраняем пропорции */
  }
  
  .UMYMW0ZOJ05J {
    margin: 0;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-header-text);
  }
  
  /* Кнопка закрытия */
  .eYMOXO2O {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-header-text);
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
    flex-shrink: 0;
  }
  
  .eYMOXO2O:hover {
    color: var(--color-primary-contrast);
    transform: rotate(90deg);
  }
  
  /* Навигация */
  .YL5N03X5J5 {
    flex: 1;
    padding: var(--spacing-lg) 0;
    overflow-y: auto;
  }
  
  .W4Y0JYMWXYO5 {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .W4Y0JYMWXYO5 li {
    margin: 0;
    position: relative;
  }
  
  .W4Y0JYMWXYO5 a {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-xl);
    color: var(--color-header-link);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
  }
  
  /* Индикатор активного пункта */
  .W4Y0JYMWXYO5 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--color-primary);
    transition: height 0.3s ease;
  }
  
  .W4Y0JYMWXYO5 a:hover {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    padding-left: calc(var(--spacing-xl) + var(--spacing-sm));
  }
  
  .W4Y0JYMWXYO5 a:hover::before {
    height: 70%;
  }
  
  /* Текущая страница */
  .W4Y0JYMWXYO5 .current-menu-item > a {
    background: rgba(var(--color-primary-rgb), 0.15);
    color: var(--color-primary);
  }
  
  .W4Y0JYMWXYO5 .current-menu-item > a::before {
    height: 100%;
  }
  
  /* Подменю */
  .W4Y0JYMWXYO5 .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.05);
  }
  
  .W4Y0JYMWXYO5 .sub-menu a {
    padding-left: calc(var(--spacing-xl) + var(--spacing-lg));
    font-size: var(--font-size-sm);
  }

  /* Отключение всех focus стилей в боковом меню */
  .W4W521O45 *:focus,
  .W4W521O45 a:focus,
  .W4W521O45 button:focus,
  .YL5N03X5J5 *:focus,
  .W4Y0JYMWXYO5 a:focus,
  .c5ZMMYX000MZ a:focus,
  .W3ZMNNK4W050 a:focus,
  .W3ZMNNK4W050 button:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .W4W521O45 *:focus-visible,
  .W4W521O45 a:focus-visible,
  .W4Y0JYMWXYO5 a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }

  
  /* CTA кнопки в боковом меню (под логотипом) */
  .W3ZMNNK4W050 {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex-shrink: 0;
  }
  
  /* Используем стили обычных CTA кнопок */
  .W3ZMNNK4W050 .VMYLNK21Z5K1 {
    display: flex !important;
    width: 100%;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }
  
  /* Footer бокового меню */
  .YZ152OXJOKW {
    padding: var(--spacing-lg) var(--spacing-xl);
    background: rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
  }
  
  .YX04OJ4XX11 {
    text-align: center;
    color: var(--color-header-text);
    opacity: 0.7;
    font-size: var(--font-size-sm);
  }
  
  .YX04OJ4XX11 p {
    margin: var(--spacing-xs) 0;
  }
  
  .cZ0234KZ {
    color: var(--color-header-text);
    opacity: 0.5;
    font-size: var(--font-size-xs);
  }
  
  /* Оверлей для десктопного меню */
  .Z31Z51Z0 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .Z31Z51Z0.WW1YWJXJX0 {
    opacity: 1;
    visibility: visible;
  }
  
  /* Push эффект для контента ТОЛЬКО для Minimal стиля */
  body:has(.dOK4K21MYNJM.TWJJ2N4L5Y1).XLNN224LN #page {
    transform: translateX(320px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Обязательная анимация для плавного возврата */
  body:has(.dOK4K21MYNJM.TWJJ2N4L5Y1) #page {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Никакого смещения для НЕ-Minimal стилей */
  body:not(:has(.dOK4K21MYNJM.TWJJ2N4L5Y1)).XLNN224LN #page {
    transform: none !important;
  }
  
  /* Особый стиль для кнопки меню в Minimal header на десктопе */
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM {
    transition: all 0.3s ease;
  }
  
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM:hover {
    background: transparent;
    transform: scale(1.1);
  }
  
  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM:hover svg {
    fill: var(--color-primary-dark);
  }

  .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM:hover .YY55OWX44 .WM4M323O51 {
    background: var(--color-primary-dark);
  }

  /* Когда меню открыто, меняем иконку */
  body.XLNN224LN .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM {
    background: transparent;
  }

  body.XLNN224LN .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM svg,
  body.XLNN224LN .dOK4K21MYNJM.TWJJ2N4L5Y1 .cW35MWLLM .YY55OWX44 .WM4M323O51 {
    fill: var(--color-primary-dark);
  }
  
  /* Анимация появления пунктов меню - ИСПРАВЛЕНО */
  .W4W521O45 .W4Y0JYMWXYO5 li {
    opacity: 1;
    transform: translateX(0);
  }
  
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li {
    animation: slideInLeft 0.5s ease both; /* both вместо forwards для правильной работы */
  }
  
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li:nth-child(1) { animation-delay: 0.1s; }
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li:nth-child(2) { animation-delay: 0.15s; }
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li:nth-child(3) { animation-delay: 0.2s; }
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li:nth-child(4) { animation-delay: 0.25s; }
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li:nth-child(5) { animation-delay: 0.3s; }
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li:nth-child(6) { animation-delay: 0.35s; }
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li:nth-child(7) { animation-delay: 0.4s; }
  .W4W521O45.WW1YWJXJX0 .W4Y0JYMWXYO5 li:nth-child(8) { animation-delay: 0.45s; }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* Скрываем десктопное боковое меню на мобильных */
@media (max-width: 991px) {
  .W4W521O45,
  .Z31Z51Z0 {
    display: none !important;
  }
  
  /* На мобильных для Minimal используется обычное мобильное меню */
  body.XLNN224LN #page {
    transform: none !important;
  }
}

/* ========================================================================
   HERO SECTION STYLES
   ======================================================================== */

/* Base Hero Styles */
.U31K54NY1 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.U31K54NY1.TN105W24 {
  background-size: cover;
  background-position: center;
}

/* Hero mobile background moved to dynamic CSS for proper obfuscation */

/* Hero Height Variants - АДАПТИВНАЯ ВЫСОТА */
/* МОБИЛЬНЫЕ ПЕРВЫЕ - адаптивная высота по содержимому */
.cKX30MML {
  min-height: 350px; /* Базовый минимум для мобильных */
}

.WM4X331JJZ {
  min-height: 400px; /* Базовый минимум для мобильных */
}

.d24KY5NK4XOK {
  min-height: 450px; /* Базовый минимум для мобильных */
}

.UZK42K30 {
  min-height: 100vh; /* Полный экран на всех устройствах */
}

/* ДЕСКТОП - ФИКСИРОВАННАЯ ВЫСОТА (только на больших экранах) */
@media (min-width: 769px) {
  .cKX30MML {
    height: 40vh;
    min-height: 400px;
  }

  .WM4X331JJZ {
    height: 60vh;
    min-height: 500px;
  }

  .d24KY5NK4XOK {
    height: 80vh;
    min-height: 600px;
  }

  .UZK42K30 {
    height: 100vh;
  }
}

/* Hero Container */
.Z0X54K41KX3 {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Hero Content */
.U3LZOXK1 {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero Title */
.YW5KK3NK {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--color-h1);
}

/* Hero Subtitle */
.T5KXKZMZ {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.5;
  margin: 0 0 30px;
  color: var(--color-h1);
  max-width: 800px;
}

/* Text Alignment */
.U31K54NY1.XXNK2X3LOM .U3LZOXK1 {
  text-align: left;
}

.U31K54NY1.YXY3LW0JX .U3LZOXK1 {
  text-align: center;
}

.U31K54NY1.YXY3LW0JX .T5KXKZMZ {
  margin-left: auto;
  margin-right: auto;
}

.U31K54NY1.dKJ24YX2K .U3LZOXK1 {
  text-align: right;
}

.U31K54NY1.dKJ24YX2K .T5KXKZMZ {
  margin-left: auto;
}

/* Hero Overlay Variants */
.T544345ZK {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.fW0YJJK4L .T544345ZK {
  display: none;
}

.W3YLJ5120Z .T544345ZK {
  background: rgba(0, 0, 0, 0.2);
}

.VYJN5JKKK .T544345ZK {
  background: rgba(0, 0, 0, 0.4);
}

.UK2W5NW2KO .T544345ZK {
  background: rgba(0, 0, 0, 0.6);
}

.a1WKOLOK3W .T544345ZK {
  background: linear-gradient(135deg,
    rgba(var(--color-primary-rgb, 37, 99, 235), 0.8) 0%,
    rgba(var(--color-primary-rgb, 37, 99, 235), 0.6) 100%);
}

/* Hero Featured Image Overlay */
.W1LXY3NJZ31 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.YZL5N421JY4 .W1LXY3NJZ31 {
  display: none;
}

.Y4OKYN44N .W1LXY3NJZ31 {
  background: rgba(0, 0, 0, 0.2);
}

.UXMY5NNX .W1LXY3NJZ31 {
  background: rgba(0, 0, 0, 0.4);
}

.cO50MZJWMXNX .W1LXY3NJZ31 {
  background: rgba(0, 0, 0, 0.6);
}

.dJLOJ0MN2M0 .W1LXY3NJZ31 {
  background: rgba(0, 0, 0, 0.8);
}

.XXJK44ZWKY .W1LXY3NJZ31 {
  background: linear-gradient(135deg,
    rgba(var(--color-primary-rgb, 37, 99, 235), 0.8) 0%,
    rgba(var(--color-primary-rgb, 37, 99, 235), 0.6) 100%);
}

/* Hero Color Overlay (when no featured image) */
.XNOWK3JJ {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

/* Hero Buttons */
.XXKNMLNNO {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.U31K54NY1.YXY3LW0JX .XXKNMLNNO {
  justify-content: center;
}

.U31K54NY1.dKJ24YX2K .XXKNMLNNO {
  justify-content: flex-end;
}

.ZO5XK12OY21 {
  /* СИНХРОНИЗИРОВАНО С HEADER CTA КНОПКАМИ */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 36px;
}

/* Button Shapes */
.W14NXKWK {
  border-radius: 6px;
}

.f1XLYY53WY {
  border-radius: 50px;
}

.YZ05W35WZ1N {
  border-radius: 0;
}

/* Button Styles */
.ZO5XK12OY21.T254N2YYZXK {
  /* PRIMARY ВСЕГДА ЗАМЕТНЫЙ - на любом фоне */
  background-color: var(--color-btn-primary-bg, var(--color-primary));
  color: var(--color-btn-primary-text, #ffffff);
  border: 2px solid transparent;
}

/* На очень светлом фоне можно использовать более темный primary */
.bO0J014NY5 .ZO5XK12OY21.T254N2YYZXK,
.T1KOJYXYN0WW .ZO5XK12OY21.T254N2YYZXK {
  background-color: var(--color-btn-primary-bg, var(--color-primary));
  color: var(--color-btn-primary-text, #ffffff);
}

.ZO5XK12OY21.T254N2YYZXK:hover {
  /* УНИВЕРСАЛЬНЫЙ HOVER - темнее на 20% */
  background-color: var(--color-btn-primary-hover, var(--color-primary-dark));
  color: var(--color-btn-primary-hover-text, #ffffff);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.ZO5XK12OY21.dW4OM143JM {
  /* ИДЕНТИЧНО HEADER CTA-SECONDARY - используем primary цвет */
  background-color: transparent;
  color: var(--color-btn-secondary-text); /* Используем primary из CSS переменной */
  border: 2px solid var(--color-btn-secondary-border); /* Используем primary из CSS переменной */
}

.ZO5XK12OY21.dW4OM143JM:hover {
  /* ИДЕНТИЧНО HEADER CTA-SECONDARY:HOVER - реверс цветов */
  background-color: var(--color-btn-secondary-hover-bg);
  color: var(--color-btn-secondary-hover-text);
  border-color: var(--color-btn-secondary-hover-bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.ZO5XK12OY21.XJWO211XW20 {
  /* ИДЕНТИЧНО HEADER CTA-GHOST - используем primary цвет */
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid transparent;
  padding: var(--spacing-xs) var(--spacing-sm);
}

.ZO5XK12OY21.XJWO211XW20:hover {
  /* ИДЕНТИЧНО HEADER CTA-GHOST:HOVER */
  color: var(--color-primary-dark);
  background-color: var(--color-primary-light);
}

/* СПЕЦИАЛЬНЫЕ МОДИФИКАТОРЫ ДЛЯ HERO С ОЧЕНЬ ТЕМНЫМ/КОНТРАСТНЫМ ФОНОМ */
/* Если hero имеет очень темный фон и primary цвет плохо виден, используйте класс .U4W14M5W3Z */
.U4W14M5W3Z .ZO5XK12OY21.dW4OM143JM {
  color: var(--color-text-inverse, #ffffff);
  border-color: var(--color-text-inverse, #ffffff);
}

.U4W14M5W3Z .ZO5XK12OY21.dW4OM143JM:hover {
  background-color: var(--color-text-inverse, #ffffff);
  color: var(--color-primary);
  border-color: var(--color-text-inverse, #ffffff);
}

.U4W14M5W3Z .ZO5XK12OY21.XJWO211XW20 {
  color: var(--color-text-inverse, #ffffff);
}

.U4W14M5W3Z .ZO5XK12OY21.XJWO211XW20:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-inverse, #ffffff);
}

/* Hero Style: Default */
.YJ42304Z3K {
  /* Default style uses base styles */
}

/* Hero Style: Split - Content Left, Image Right */
.W24Y5LW2YJ22 {
  display: flex;
  align-items: stretch; /* Важно для равной высоты колонок */
}

.W24Y5LW2YJ22 .Z0X54K41KX3 {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none; /* Убираем ограничение ширины для split layout */
  padding: 0;
  gap: 0;
}

.W24Y5LW2YJ22 .U3LZOXK1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  z-index: 2;
}

.W24Y5LW2YJ22 .c0NJ4KK1 {
  flex: 1;
  height: 100%; /* Занимает всю высоту hero секции */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Hero Style: Split Reverse - Image Left, Content Right */
.dZW5X4WY4J {
  display: flex;
  align-items: stretch;
}

.dZW5X4WY4J .Z0X54K41KX3 {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0;
  gap: 0;
  flex-direction: row-reverse; /* Меняем порядок для reverse */
}

.dZW5X4WY4J .U3LZOXK1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  z-index: 2;
}

.dZW5X4WY4J .c0NJ4KK1 {
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Адаптивность для split стилей */
@media (max-width: 991px) {
  .W24Y5LW2YJ22 .Z0X54K41KX3,
  .dZW5X4WY4J .Z0X54K41KX3 {
    flex-direction: column;
  }

  .W24Y5LW2YJ22 .U3LZOXK1,
  .dZW5X4WY4J .U3LZOXK1 {
    padding: 40px 30px;
  }

  .W24Y5LW2YJ22 .c0NJ4KK1,
  .dZW5X4WY4J .c0NJ4KK1 {
    min-height: 300px; /* Минимальная высота на планшетах */
  }
}

@media (max-width: 768px) {
  .W24Y5LW2YJ22 .U3LZOXK1,
  .dZW5X4WY4J .U3LZOXK1 {
    padding: 30px 20px;
  }

  .W24Y5LW2YJ22 .c0NJ4KK1,
  .dZW5X4WY4J .c0NJ4KK1 {
    min-height: 250px; /* Минимальная высота на мобильных */
    background-size: contain; /* Показывать всё изображение на мобильных */
    background-position: center center;
  }
}

/* =================================================
   GUTENBERG BUTTON BLOCKS STYLING
   ================================================= */

/* WordPress Gutenberg Button Blocks inherit CTA button styles */
.wp-block-button__link,
.wp-block-buttons .wp-block-button__link,
.wp-block-button .wp-block-button__link,
div.wp-block-button .wp-block-button__link,
div.wp-block-buttons .wp-block-button .wp-block-button__link {
  /* Base button styling - inherit from .btn */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  font-size: var(--font-size-base) !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  text-align: center !important;
  text-decoration: none !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  min-height: 44px !important; /* Touch-friendly */
  min-width: 44px !important;

  /* SMART COLOR LOGIC: Use primary color with automatic contrast text */
  background: var(--color-btn-primary-bg, var(--color-primary, #2563eb)) !important;
  color: var(--color-btn-primary-text, var(--color-primary-contrast, #ffffff)) !important;
  border-color: var(--color-btn-primary-bg, var(--color-primary, #2563eb)) !important;

  /* Apply global button shape */
  border-radius: 6px !important; /* Default rounded */
}

/* =================================================
   GLOBAL BUTTON SHAPE SYSTEM - APPLIES TO ALL BUTTONS
   ================================================= */

/* ROUNDED SHAPE - applies to ALL buttons (CTA + Gutenberg + Mobile + Sidebar) */
body.bXZNYXJZX3O .wp-block-button__link,
body.bXZNYXJZX3O div.wp-block-button .wp-block-button__link,
body.bXZNYXJZX3O .VMYLNK21Z5K1,
body.bXZNYXJZX3O .btn,
body.bXZNYXJZX3O .ZO5XK12OY21,
body.bXZNYXJZX3O .UYJNM5Z4J .VMYLNK21Z5K1,
body.bXZNYXJZX3O .W3ZMNNK4W050 .VMYLNK21Z5K1 {
  border-radius: 6px !important;
}

/* PILL SHAPE - applies to ALL buttons (CTA + Gutenberg + Mobile + Sidebar) */
body.Y0JO1OWO .wp-block-button__link,
body.Y0JO1OWO div.wp-block-button .wp-block-button__link,
body.Y0JO1OWO .VMYLNK21Z5K1,
body.Y0JO1OWO .btn,
body.Y0JO1OWO .ZO5XK12OY21,
body.Y0JO1OWO .UYJNM5Z4J .VMYLNK21Z5K1,
body.Y0JO1OWO .W3ZMNNK4W050 .VMYLNK21Z5K1 {
  border-radius: 50px !important;
}

/* PILL SHAPE - extra padding for CTA buttons и HERO buttons */
body.Y0JO1OWO .VMYLNK21Z5K1,
body.Y0JO1OWO .ZO5XK12OY21,
body.Y0JO1OWO .UYJNM5Z4J .VMYLNK21Z5K1,
body.Y0JO1OWO .W3ZMNNK4W050 .VMYLNK21Z5K1 {
  padding-left: var(--spacing-lg) !important;
  padding-right: var(--spacing-lg) !important;
}

/* SQUARE SHAPE - applies to ALL buttons (CTA + Gutenberg + Mobile + Sidebar) */
body.UOY2Z400Y21J .wp-block-button__link,
body.UOY2Z400Y21J div.wp-block-button .wp-block-button__link,
body.UOY2Z400Y21J .VMYLNK21Z5K1,
body.UOY2Z400Y21J .btn,
body.UOY2Z400Y21J .ZO5XK12OY21,
body.UOY2Z400Y21J .UYJNM5Z4J .VMYLNK21Z5K1,
body.UOY2Z400Y21J .W3ZMNNK4W050 .VMYLNK21Z5K1 {
  border-radius: 0 !important;
}

/* ENSURE GLOBAL SHAPE WORKS EVERYWHERE - MAXIMUM SPECIFICITY */
body.bXZNYXJZX3O .dOK4K21MYNJM.Y53YYZ1MK .VMYLNK21Z5K1,
body.bXZNYXJZX3O .Y2MOXKJ5Z .VMYLNK21Z5K1,
body.bXZNYXJZX3O .W14NXKWK,
body.bXZNYXJZX3O .f1XLYY53WY,
body.bXZNYXJZX3O .YZ05W35WZ1N {
  border-radius: 6px !important;
}

body.Y0JO1OWO .dOK4K21MYNJM.Y53YYZ1MK .VMYLNK21Z5K1,
body.Y0JO1OWO .Y2MOXKJ5Z .VMYLNK21Z5K1,
body.Y0JO1OWO .W14NXKWK,
body.Y0JO1OWO .f1XLYY53WY,
body.Y0JO1OWO .YZ05W35WZ1N {
  border-radius: 50px !important;
}

/* PILL SHAPE - extra padding for all contexts (включая HERO) */
body.Y0JO1OWO .dOK4K21MYNJM.Y53YYZ1MK .VMYLNK21Z5K1,
body.Y0JO1OWO .Y2MOXKJ5Z .VMYLNK21Z5K1,
body.Y0JO1OWO .ZO5XK12OY21 {
  padding-left: var(--spacing-lg) !important;
  padding-right: var(--spacing-lg) !important;
}

body.UOY2Z400Y21J .dOK4K21MYNJM.Y53YYZ1MK .VMYLNK21Z5K1,
body.UOY2Z400Y21J .Y2MOXKJ5Z .VMYLNK21Z5K1,
body.UOY2Z400Y21J .W14NXKWK,
body.UOY2Z400Y21J .f1XLYY53WY,
body.UOY2Z400Y21J .YZ05W35WZ1N {
  border-radius: 0 !important;
}

/* OVERRIDE OLD CTA-SHAPE SYSTEM - GLOBAL TAKES PRIORITY */
body.bXZNYXJZX3O.Y22L3OKLX .VMYLNK21Z5K1,
body.bXZNYXJZX3O.Z11K23OX1 .VMYLNK21Z5K1 {
  border-radius: 6px !important;
  padding-left: var(--spacing-md) !important;
  padding-right: var(--spacing-md) !important;
}

body.Y0JO1OWO.WXL4JKNY0WLN .VMYLNK21Z5K1,
body.Y0JO1OWO.Z11K23OX1 .VMYLNK21Z5K1 {
  border-radius: 50px !important;
  padding-left: var(--spacing-lg) !important;
  padding-right: var(--spacing-lg) !important;
}

body.UOY2Z400Y21J.WXL4JKNY0WLN .VMYLNK21Z5K1,
body.UOY2Z400Y21J.Y22L3OKLX .VMYLNK21Z5K1 {
  border-radius: 0 !important;
  padding-left: var(--spacing-md) !important;
  padding-right: var(--spacing-md) !important;
}

/* HOVER EFFECTS WITH HERO STYLE DARKENING - same as CTA buttons */
.wp-block-button__link:hover,
.wp-block-buttons .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:hover,
div.wp-block-button .wp-block-button__link:hover,
div.wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  /* HERO STYLE DARKENING: Background becomes darker, text stays white */
  background: var(--color-btn-primary-hover, var(--color-primary-dark, #1e40af)) !important;
  color: var(--color-btn-primary-hover-text, var(--color-primary-contrast, #ffffff)) !important;
  border-color: var(--color-btn-primary-hover-text, var(--color-primary-contrast, #ffffff)) !important;

  /* Visual feedback effects */
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1)) !important;
}

/* Focus states for accessibility */
.wp-block-button__link:focus,
.wp-block-buttons .wp-block-button__link:focus {
  outline: 2px solid var(--color-focus, #3b82f6);
  outline-offset: 2px;
}

/*
=================================================================
HERO STYLE DARKENING LOGIC EXPLANATION:
=================================================================

NORMAL STATE:
- Background: var(--color-primary) - фон кнопки в основном цвете темы
- Text: var(--color-primary-contrast) - автоматический контрастный цвет

HOVER STATE (HERO DARKENING):
- Background: var(--color-primary-dark) - фон становится темнее
- Text: var(--color-primary-contrast) - текст остается белым

ПРИМЕР РАБОТЫ:
1. Темная тема (primary: #2563eb, primary-dark: #1e40af, contrast: #ffffff):
   Normal: синий фон + белый текст
   Hover: темно-синий фон + белый текст

2. Светлая тема (primary: #ffeb3b, primary-dark: #e6d12e, contrast: #1a1a1a):
   Normal: желтый фон + черный текст
   Hover: темно-желтый фон + черный текст

Это создает элегантный эффект затемнения как в Hero секции!
=================================================================
*/

/* Color variants support - OUTLINE BUTTONS */
.wp-block-button.is-style-outline .wp-block-button__link,
div.wp-block-button.is-style-outline .wp-block-button__link,
div.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  /* Secondary button style - outline version with smart colors */
  background: transparent !important;
  color: var(--color-btn-secondary-text, var(--color-primary, #2563eb)) !important;
  border: 2px solid var(--color-btn-secondary-border, var(--color-primary, #2563eb)) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
div.wp-block-button.is-style-outline .wp-block-button__link:hover,
div.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  /* Secondary button hover - reverse colors with smart contrast */
  background: var(--color-btn-secondary-hover-bg, var(--color-primary, #2563eb)) !important;
  color: var(--color-btn-secondary-hover-text, var(--color-primary-contrast, #ffffff)) !important;
  border-color: var(--color-btn-secondary-hover-bg, var(--color-primary, #2563eb)) !important;
}

/* Button groups container */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm, 0.75rem);
  align-items: center;
}

/* Override Gutenberg default styles that might conflict - HIGHEST SPECIFICITY */
.wp-block-button:not(.is-style-outline) .wp-block-button__link,
div.wp-block-button:not(.is-style-outline) .wp-block-button__link,
div.wp-block-buttons .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  /* Ensure our SMART color styling takes precedence */
  background: var(--color-btn-primary-bg, var(--color-primary, #2563eb)) !important;
  color: var(--color-btn-primary-text, var(--color-primary-contrast, #ffffff)) !important;
  border-color: var(--color-btn-primary-bg, var(--color-primary, #2563eb)) !important;
}

/* Override Gutenberg default hover styles - HIGHEST SPECIFICITY */
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
div.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
div.wp-block-buttons .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  /* Apply our color reversal logic on hover */
  background: var(--color-btn-primary-hover, var(--color-primary-dark, #1e40af)) !important;
  color: var(--color-btn-primary-hover-text, var(--color-primary-contrast, #ffffff)) !important;
  border-color: var(--color-btn-primary-hover-text, var(--color-primary-contrast, #ffffff)) !important;
}

/* Large button variant */
.wp-block-button.wp-block-button__width-25 .wp-block-button__link,
.wp-block-button.wp-block-button__width-50 .wp-block-button__link,
.wp-block-button.wp-block-button__width-75 .wp-block-button__link,
.wp-block-button.wp-block-button__width-100 .wp-block-button__link {
  width: 100%;
  justify-content: center;
}

/* EMERGENCY OVERRIDE: Force our color logic even if WordPress overrides it */
.wp-block-button .wp-block-button__link,
.wp-block-buttons .wp-block-button .wp-block-button__link,
[class*="wp-block-button"] .wp-block-button__link {
  background-color: var(--color-btn-primary-bg, var(--color-primary, #2563eb)) !important;
  color: var(--color-btn-primary-text, var(--color-primary-contrast, #ffffff)) !important;
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button .wp-block-button__link:hover,
[class*="wp-block-button"] .wp-block-button__link:hover {
  background-color: var(--color-btn-primary-hover, var(--color-primary-dark, #1e40af)) !important;
  color: var(--color-btn-primary-hover-text, var(--color-primary-contrast, #ffffff)) !important;
  border-color: var(--color-btn-primary-hover-text, var(--color-primary-contrast, #ffffff)) !important;
}

/* Support for Gutenberg custom colors with automatic contrast */
.wp-block-button__link[style*="background-color"] {
  /* When user sets custom background color, try to maintain good contrast */
  border-color: currentColor !important;
}

.wp-block-button__link[style*="background-color"]:hover {
  /* For custom colored buttons, create subtle hover effect */
  opacity: 0.85 !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1)) !important;
}

/* Responsive adjustments for Gutenberg buttons */
@media (max-width: 768px) {
  .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .wp-block-button__link {
    justify-content: center;
    text-align: center;
  }
}

/* Responsive Styles for Hero */
@media (max-width: 768px) {
  .Z0X54K41KX3 {
    padding: 40px 20px;
  }

  .YW5KK3NK {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .T5KXKZMZ {
    font-size: clamp(1rem, 3vw, 1.25rem);
  }

  .XXKNMLNNO {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .ZO5XK12OY21 {
    text-align: center;
    min-width: 180px; /* Минимальная ширина для удобства тапа */
  }

  .U31K54NY1.XXNK2X3LOM .XXKNMLNNO {
    align-items: flex-start;
  }

  .U31K54NY1.dKJ24YX2K .XXKNMLNNO {
    align-items: flex-end;
  }

  /* МОБИЛЬНАЯ АДАПТАЦИЯ ИЗОБРАЖЕНИЙ - умное отображение */
  .hero {
    background-size: cover; /* Покрывать контейнер, но без !important */
    background-position: center center;
    background-repeat: no-repeat;
  }

  /* Если изображение очень широкое, показывать его полностью */
  .hero[style*="background-image"] {
    background-size: contain;
    background-position: center center;
  }

  /* На мобильных убираем фиксированную высоту - пусть адаптируется по содержимому */
  .WM4X331JJZ {
    min-height: 400px; /* Базовый минимум - без фиксированной высоты */
  }

  .d24KY5NK4XOK {
    min-height: 450px; /* Базовый минимум - без фиксированной высоты */
  }

}

@media (max-width: 480px) {
  .Z0X54K41KX3 {
    padding: 30px 15px;
  }

  .XXKNMLNNO {
    gap: 10px;
  }

  .ZO5XK12OY21 {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 150px; /* Чуть меньше для маленьких экранов */
  }

  /* Дополнительная страховка для логотипа на очень маленьких экранах */
  .custom-logo,
  .dOK4K21MYNJM .custom-logo,
  .dOK4K21MYNJM.Y53YYZ1MK .custom-logo,
  .YWNWJNY54N img {
    max-width: 140px; /* Убираем !important чтобы Minimal правила могли перебить */
    object-fit: contain !important;
  }

  /* ИСКЛЮЧЕНИЕ: Для Minimal стиля логотип должен быть 95px - МАКСИМАЛЬНАЯ СПЕЦИФИЧНОСТЬ */
  body .dOK4K21MYNJM.TWJJ2N4L5Y1 .custom-logo,
  body .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK .custom-logo,
  body .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK.scrolled .custom-logo,
  body .dOK4K21MYNJM.TWJJ2N4L5Y1 .YWNWJNY54N img,
  body .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK .YWNWJNY54N img,
  body .dOK4K21MYNJM.TWJJ2N4L5Y1.Y53YYZ1MK.scrolled .YWNWJNY54N img,
  /* УДАЛЕНО: !important правила для body.dM25MKJY4 - теперь используются стандартные размеры */
}

/* =================================================
   FINAL GUTENBERG OVERRIDE - MAXIMUM SPECIFICITY
   ================================================= */

/* =================================================
   FINAL OVERRIDE - FORCE GLOBAL BUTTON SYSTEM
   ================================================= */

/* FORCE GLOBAL BUTTON SHAPES - MAXIMUM SPECIFICITY */
html body.bXZNYXJZX3O .wp-block-button .wp-block-button__link,
html body.bXZNYXJZX3O .VMYLNK21Z5K1,
html body.bXZNYXJZX3O .btn,
html body.bXZNYXJZX3O .ZO5XK12OY21 {
  border-radius: 6px !important;
}

html body.Y0JO1OWO .wp-block-button .wp-block-button__link,
html body.Y0JO1OWO .VMYLNK21Z5K1,
html body.Y0JO1OWO .btn,
html body.Y0JO1OWO .ZO5XK12OY21 {
  border-radius: 50px !important;
}

html body.Y0JO1OWO .VMYLNK21Z5K1 {
  padding-left: var(--spacing-lg) !important;
  padding-right: var(--spacing-lg) !important;
}

html body.UOY2Z400Y21J .wp-block-button .wp-block-button__link,
html body.UOY2Z400Y21J .VMYLNK21Z5K1,
html body.UOY2Z400Y21J .btn,
html body.UOY2Z400Y21J .ZO5XK12OY21 {
  border-radius: 0 !important;
}

/* =================================================
   UNIFIED HOVER EFFECTS FOR ALL BUTTONS
   ================================================= */

/* ENSURE ALL BUTTONS HAVE CONSISTENT TRANSITIONS */
.T4ZZ4JXOZW,
.VMYLNK21Z5K1,
.ZO5XK12OY21,
.wp-block-button__link,
.UYJNM5Z4J .VMYLNK21Z5K1,
.W3ZMNNK4W050 .VMYLNK21Z5K1 {
  transition: all var(--transition-fast, 0.15s ease-in-out) !important;
}

/* UNIFIED HOVER EFFECTS - ALL BUTTON TYPES */
.T4ZZ4JXOZW:hover,
.XW5ZZL0L3K0:hover,
.Y5NZY3Z5O0:hover,
.VMYLNK21Z5K1.f2KK5LZKYYZZ:hover,
.VMYLNK21Z5K1.XOYYWJ4L3WXX:hover,
.VMYLNK21Z5K1.YX3X54ZW:hover,
.ZO5XK12OY21.T254N2YYZXK:hover,
.ZO5XK12OY21.dW4OM143JM:hover,
.ZO5XK12OY21.XJWO211XW20:hover,
.UYJNM5Z4J .VMYLNK21Z5K1:hover,
.W3ZMNNK4W050 .VMYLNK21Z5K1:hover {
  /* SIGNATURE HOVER EFFECT - LIFT AND SHADOW */
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1)) !important;
}

/* ==========================================================================
   HERO SPLIT LAYOUTS
   ========================================================================== */

/* Hero Split Base */
.W24Y5LW2YJ22 {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.W33K41XN {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: stretch;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.f3N2XYJKL0WZ,
.W423WXM1XZ4 {
  flex: 0 0 50%;
  width: 50%;
}

.f3N2XYJKL0WZ {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  color: var(--color-text-light);
  position: relative;
  min-height: 400px;
}

.YZ2WNZLN52 {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.W24Y5LW2YJ22 .YW5KK3NK {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-h1);
  line-height: 1.2;
}

.W24Y5LW2YJ22 .T5KXKZMZ {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  color: var(--color-h1);
  line-height: 1.6;
}

.W24Y5LW2YJ22 .XXKNMLNNO {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.W423WXM1XZ4 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 400px;
}

.W3OMYZWOKML {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
}

.W423WXM1XZ4 img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.YLN4ZNY4 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Split Reverse Base */
.dZW5X4WY4J {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.dZW5X4WY4J .W33K41XN {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: stretch;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.dZW5X4WY4J .f3N2XYJKL0WZ,
.dZW5X4WY4J .W423WXM1XZ4 {
  flex: 0 0 50%;
  width: 50%;
}

.dZW5X4WY4J .f3N2XYJKL0WZ {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  color: var(--color-text-light);
  position: relative;
  min-height: 400px;
}

.dZW5X4WY4J .YZ2WNZLN52 {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.dZW5X4WY4J .YW5KK3NK {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-h1);
  line-height: 1.2;
}

.dZW5X4WY4J .T5KXKZMZ {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  color: var(--color-h1);
  line-height: 1.6;
}

.dZW5X4WY4J .XXKNMLNNO {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dZW5X4WY4J .W423WXM1XZ4 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 400px;
}

.dZW5X4WY4J .W3OMYZWOKML {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
}

.dZW5X4WY4J .W423WXM1XZ4 img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.dZW5X4WY4J .YLN4ZNY4 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Large screens */
@media (min-width: 1600px) {
  .W33K41XN {
    max-width: 1320px;
  }

  .dZW5X4WY4J .W33K41XN {
    max-width: 1320px;
  }
}

/* Tablet and smaller */
@media (max-width: 1319px) {
  .W33K41XN {
    max-width: 100%;
    padding: 0 20px;
  }

  .dZW5X4WY4J .W33K41XN {
    max-width: 100%;
    padding: 0 20px;
  }
}

/* Mobile responsive */
@media (max-width: 991px) {
  .W33K41XN {
    flex-direction: column;
    padding: 0;
  }

  .f3N2XYJKL0WZ,
  .W423WXM1XZ4 {
    width: 100%;
    flex: 0 0 auto;
  }

  .f3N2XYJKL0WZ {
    padding: 60px 20px;
    min-height: auto;
  }

  .W423WXM1XZ4 {
    min-height: 300px;
    padding: 30px 20px;
  }

  .W24Y5LW2YJ22 .YW5KK3NK {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .W24Y5LW2YJ22 .T5KXKZMZ {
    font-size: 1.1rem;
  }

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

  .c3N2ZKYJ4 .W423WXM1XZ4 {
    display: none;
  }

  .dZW5X4WY4J .W33K41XN {
    flex-direction: column;
    padding: 0;
  }

  .dZW5X4WY4J .f3N2XYJKL0WZ,
  .dZW5X4WY4J .W423WXM1XZ4 {
    width: 100%;
    flex: 0 0 auto;
  }

  .dZW5X4WY4J .f3N2XYJKL0WZ {
    padding: 60px 20px;
    min-height: auto;
  }

  .dZW5X4WY4J .W423WXM1XZ4 {
    min-height: 300px;
    padding: 30px 20px;
  }

  .dZW5X4WY4J .YW5KK3NK {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .dZW5X4WY4J .T5KXKZMZ {
    font-size: 1.1rem;
  }

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

  .YO31N3L1W5 .W423WXM1XZ4 {
    display: none;
  }
}

@media (max-width: 575px) {
  .f3N2XYJKL0WZ {
    padding: 30px 15px;
  }

  .W24Y5LW2YJ22 .XXKNMLNNO {
    flex-direction: column;
    align-items: stretch;
  }

  .W24Y5LW2YJ22 .XXKNMLNNO .T4ZZ4JXOZW {
    text-align: center;
    min-width: 150px;
  }

  .dZW5X4WY4J .f3N2XYJKL0WZ {
    padding: 30px 15px;
  }

  .dZW5X4WY4J .XXKNMLNNO {
    flex-direction: column;
    align-items: stretch;
  }

  .dZW5X4WY4J .XXKNMLNNO .T4ZZ4JXOZW {
    text-align: center;
    min-width: 150px;
  }
}

/* FINAL OVERRIDE: Gutenberg Button Colors */
body .wp-block-button .wp-block-button__link,
body div.wp-block-button .wp-block-button__link,
body .wp-block-buttons .wp-block-button .wp-block-button__link,
body div.wp-block-buttons div.wp-block-button .wp-block-button__link,
html body .XXL5XY1K5MJ0 .wp-block-button .wp-block-button__link,
html body .post-content .wp-block-button .wp-block-button__link {
  /* FORCE HERO STYLE DARKENING LOGIC */
  background-color: var(--color-btn-primary-bg, var(--color-primary, #2563eb)) !important;
  color: var(--color-btn-primary-text, var(--color-primary-contrast, #ffffff)) !important;
  border-color: var(--color-btn-primary-bg, var(--color-primary, #2563eb)) !important;
}

body .wp-block-button .wp-block-button__link:hover,
body div.wp-block-button .wp-block-button__link:hover,
body .wp-block-buttons .wp-block-button .wp-block-button__link:hover,
body div.wp-block-buttons div.wp-block-button .wp-block-button__link:hover,
html body .XXL5XY1K5MJ0 .wp-block-button .wp-block-button__link:hover,
html body .post-content .wp-block-button .wp-block-button__link:hover {
  /* FORCE HERO STYLE DARKENING ON HOVER + UNIFIED EFFECTS */
  background-color: var(--color-btn-primary-hover, var(--color-primary-dark, #1e40af)) !important;
  color: var(--color-btn-primary-hover-text, var(--color-primary-contrast, #ffffff)) !important;
  border-color: var(--color-btn-primary-hover-text, var(--color-primary-contrast, #ffffff)) !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1)) !important;
}
/* ========================================
   Footer Menu Columns System
   ======================================== */

/* Container grid for footer menu columns */
.Y1MW452JM {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

/* Individual column */
.UK13WXOJL4XK {
  flex: 1 1 200px;
  min-width: 200px;
}

/* Column title */
.UK13WXOJL4XK .footer-column-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--color-footer-heading, var(--color-text-primary, #1a1a1a));
  letter-spacing: -0.01em;
}

/* Column links list */
.UK13WXOJL4XK .footer-column-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.UK13WXOJL4XK .footer-column-links li {
  margin-bottom: 0.75rem;
}

.UK13WXOJL4XK .footer-column-links li:last-child {
  margin-bottom: 0;
}

.UK13WXOJL4XK .footer-column-links a {
  color: var(--color-footer-link, var(--color-text-secondary, #666));
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  position: relative;
}

.UK13WXOJL4XK .footer-column-links a:hover {
  color: var(--color-footer-link-hover, var(--color-primary, #007cba));
}

.UK13WXOJL4XK .footer-column-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-footer-link-hover, var(--color-primary, #007cba));
  transition: width 0.3s ease;
}

.UK13WXOJL4XK .footer-column-links a:hover::after {
  width: 100%;
}

/* Current page indicator */
.UK13WXOJL4XK .footer-column-links .current-menu-item a {
  color: var(--color-footer-link-hover, var(--color-primary, #007cba));
  font-weight: 500;
}

/* No menu assigned message */
.Y1MW452JM .no-menu-assigned {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  color: var(--color-text-secondary, #666);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .Y1MW452JM {
    gap: 30px;
  }

  .UK13WXOJL4XK {
    flex: 1 1 180px;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .Y1MW452JM {
    gap: 25px;
  }

  .UK13WXOJL4XK {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 150px;
  }

  .UK13WXOJL4XK .footer-column-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .UK13WXOJL4XK .footer-column-links li {
    margin-bottom: 0.5rem;
  }

  .UK13WXOJL4XK .footer-column-links a {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .Y1MW452JM {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .UK13WXOJL4XK {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: center;
  }
}

/* ========================================
   Footer Menu Columns - Footer Styles Integration
   ======================================== */

/* Wrapper for columns in centered footer */
.dWOYO5XXW10 .W5OL32OZKLNK {
  width: 100%;
  margin: 30px 0;
}

.dWOYO5XXW10 .Y1MW452JM {
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Wrapper for columns in complex footer */
.W443ZXZX1Z .W5OL32OZKLNK {
  grid-column: 1 / -1;
  width: 100%;
}

/* Wrapper for columns in default footer */
.bN1K4LLNKN .W5OL32OZKLNK {
  width: 100%;
}

.bN1K4LLNKN .WKN32OW4KOZ {
  flex: 1 1 100%;
  width: 100%;
}

/* Adjust column min-width in default footer to fit in grid layout */
.bN1K4LLNKN .UK13WXOJL4XK {
  flex: 1 1 150px;
  min-width: 150px;
}

/* Make menu columns grid span full width in default footer */
.bN1K4LLNKN .WKN32OW4KOZ:has(.Y1MW452JM) {
  grid-column: 1 / -1;
  margin-top: 30px;
}

/* ========================================
   UNIQUE STYLES FOR EACH FOOTER STYLE
   ======================================== */

/* ===== FOOTER DEFAULT - Classic with Underline Animation ===== */
.bN1K4LLNKN .footer-column-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--color-primary, #007cba);
  padding-bottom: 0.5rem;
}

.bN1K4LLNKN .footer-column-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
}

.bN1K4LLNKN .footer-column-links a:hover {
  color: rgba(255, 255, 255, 1);
  padding-left: 5px;
}

/* Animated underline for default */
.bN1K4LLNKN .footer-column-links a::after {
  background-color: var(--color-primary, #007cba);
  height: 1px;
}

.bN1K4LLNKN .footer-column-links .current-menu-item a {
  color: var(--color-primary, #007cba);
  font-weight: 600;
}

/* ===== FOOTER CENTERED - Minimal with Background on Hover ===== */
.dWOYO5XXW10 .footer-column-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
  margin-bottom: 1rem;
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dWOYO5XXW10 .footer-column-links {
  text-align: center;
}

.dWOYO5XXW10 .footer-column-links a {
  color: var(--color-text-primary, #1a1a1a);
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.dWOYO5XXW10 .footer-column-links a:hover {
  background-color: var(--color-primary, #007cba);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Remove default underline for centered */
.dWOYO5XXW10 .footer-column-links a::after {
  display: none;
}

.dWOYO5XXW10 .footer-column-links .current-menu-item a {
  background-color: var(--color-primary, #007cba);
  color: #ffffff;
  font-weight: 500;
}

/* ===== FOOTER COMPLEX - Modern with Glowing Dots ===== */
.W443ZXZX1Z .footer-column-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.02em;
}

.W443ZXZX1Z .footer-column-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  padding-left: 18px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Bullet point before link */
.W443ZXZX1Z .footer-column-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Hover state - enlarge and glow */
.W443ZXZX1Z .footer-column-links a:hover {
  color: rgba(255, 255, 255, 1);
  padding-left: 22px;
}

.W443ZXZX1Z .footer-column-links a:hover::before {
  width: 8px;
  height: 8px;
  background: var(--color-primary, #007cba);
  box-shadow: 0 0 8px var(--color-primary, #007cba);
}

/* Underline on hover */
.W443ZXZX1Z .footer-column-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 18px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary, #007cba) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.W443ZXZX1Z .footer-column-links a:hover::after {
  opacity: 1;
}

/* Current page indicator */
.W443ZXZX1Z .footer-column-links .current-menu-item a {
  color: var(--color-primary, #007cba);
  font-weight: 500;
}

.W443ZXZX1Z .footer-column-links .current-menu-item a::before {
  width: 8px;
  height: 8px;
  background: var(--color-primary, #007cba);
  box-shadow: 0 0 6px var(--color-primary, #007cba);
}

.W443ZXZX1Z .footer-column-links .current-menu-item a::after {
  opacity: 1;
}

/* ===== FOOTER MINIMAL - Simple No Effects ===== */
.X1JNX3WYLM .footer-column-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
  margin-bottom: 0.875rem;
  text-transform: none;
  letter-spacing: normal;
}

.X1JNX3WYLM .footer-column-links a {
  color: var(--color-text-primary, #1a1a1a);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.X1JNX3WYLM .footer-column-links a:hover {
  color: var(--color-primary, #007cba);
}

/* Remove all effects for minimal */
.X1JNX3WYLM .footer-column-links a::before,
.X1JNX3WYLM .footer-column-links a::after {
  display: none;
}

.X1JNX3WYLM .footer-column-links .current-menu-item a {
  color: var(--color-primary, #007cba);
  font-weight: 500;
}

/* ===== LANGUAGE / GEO SWITCHER ===== */
.XZK5KO3OJ {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.XXNK131N1MNO {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--color-primary, #2563eb);
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.4;
  white-space: nowrap;
}
.XXNK131N1MNO:hover {
  background: rgba(0, 0, 0, 0.04);
}
.YLNMOYLLZX .XXNK131N1MNO {
  border-color: currentColor;
  opacity: 0.9;
}
.bL2LWW0WZL2Z,
.X1YYN41513 {
  font-size: 1.1em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.XZY2O0J2WNY3 {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
}
.ZL4334MNY {
  font-size: 0.7em;
  opacity: 0.8;
}
.eLJ2ZZJZ {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 180px;
  margin: 4px 0 0;
  padding: 6px 0;
  list-style: none;
  background: var(--color-bg-primary, #fff);
  border: 1px solid var(--color-header-border, #e2e8f0);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.eLJ2ZZJZ[hidden] {
  display: none !important;
}
.YK2WLYNN {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--color-text-primary, #1a1a1a);
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
}
.YK2WLYNN:hover {
  background: var(--color-bg-secondary, #f8fafc);
}
.fMNMMMYNY4 {
  font-weight: 600;
  color: var(--color-primary, #2563eb);
}
.U02X1M5Y303N {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm, 12px);
}
.bZ0M42WXY5 .XZK5KO3OJ {
  margin-left: 0;
}
.eW0Z1O3NLZ {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-footer-bg, #1a1a1a);
}
.eW0Z1O3NLZ .XXNK131N1MNO {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-footer-text, #fff);
}
.eW0Z1O3NLZ .eLJ2ZZJZ {
  background: var(--color-bg-dark, #0f172a);
  border-color: rgba(255, 255, 255, 0.15);
}
.eW0Z1O3NLZ .YK2WLYNN {
  color: var(--color-footer-text, #fff);
}
.eW0Z1O3NLZ .YK2WLYNN:hover {
  background: rgba(255, 255, 255, 0.1);
}
.W0LW4OMN51W3 {
  padding: 12px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.W0LW4OMN51W3 .eLJ2ZZJZ {
  position: static;
  margin-top: 8px;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.W0LW4OMN51W3 .XXNK131N1MNO[aria-expanded="true"] + .eLJ2ZZJZ {
  display: block !important;
}
.W0LW4OMN51W3 .eLJ2ZZJZ[hidden] {
  display: none !important;
}

/* На мобилке в хедере: только флаг в кнопке, полное название — в дропдауне */
@media (max-width: 767px) {
  .U02X1M5Y303N .XXNK131N1MNO .UOJMO2502 {
    display: none !important;
  }
  .U02X1M5Y303N .XXNK131N1MNO {
    padding: 6px 10px;
    gap: 4px;
  }
}

/* ===================================
   MOBILE BOTTOM NAVIGATION BAR
   =================================== */

.XOXYNXLZK1 {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a2e;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 6px 0;
  padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

@media (max-width: 991px) {
  .XOXYNXLZK1 {
    display: flex;
  }
  
  /* Hide hamburger from header on mobile - it is in bottom nav now */
  .cW35MWLLM {
    display: none !important;
  }
  
  /* Add bottom padding to body so content is not hidden behind bottom nav */
  body {
    padding-bottom: 70px;
  }
}

.ZYMJ1LY3WZ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  min-width: 60px;
}

.ZYMJ1LY3WZ:hover,
.ZYMJ1LY3WZ:focus {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  outline: none;
}

.ZYMJ1LY3WZ svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ZYMJ1LY3WZ span {
  line-height: 1;
  white-space: nowrap;
}

/* Active state */
.ZYMJ1LY3WZ.U1WXZOL4W4Z2 {
  color: var(--color-primary, #3b82f6);
}

.ZYMJ1LY3WZ.U1WXZOL4W4Z2 svg {
  filter: drop-shadow(0 0 6px var(--color-primary, #3b82f6));
}

/* Menu button active state when mobile menu is open */
.ZYMJ1LY3WZ.X23JXN5W1 {
  color: var(--color-primary, #3b82f6);
}

/* ===================================
   ICE FISHING GAME - CUSTOM HERO
   =================================== */

/* Dark gradient background when no featured image */
/* Ice hero - fullscreen height accounting for header + bottom nav */
.XLNWN5XZ {
  min-height: calc(100vh - 80px) !important;
  height: calc(100vh - 80px) !important;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .XLNWN5XZ {
    min-height: calc(100vh - 80px - 70px) !important;
    height: calc(100vh - 80px - 70px) !important;
    min-height: calc(100dvh - 80px - 70px) !important;
    height: calc(100dvh - 80px - 70px) !important;
  }
}

.XLNWN5XZ .YX53K402N1WO {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0a1628 0%, #0f2847 35%, #0c1f3d 65%, #061224 100%);
  z-index: 0;
}

/* Decorative glow orb */
.XLNWN5XZ .Y541XWNZ32 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 152, 236, 0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 1;
  pointer-events: none;
  animation: U0OXNMM1M 6s ease-in-out infinite;
}

@keyframes U0OXNMM1M {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -55%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -55%) scale(1.15); }
}

/* Floating particles */
.XLNWN5XZ .W3L1WW0LO {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.XLNWN5XZ .bYJ24XZN {
  position: absolute;
  border-radius: 50%;
  background: rgba(147, 210, 255, 0.25);
  animation: aW3ZJ24OW linear infinite;
}

.XLNWN5XZ .W24JY4ML30 {
  width: 6px; height: 6px; left: 10%; top: -10px; animation-duration: 12s; animation-delay: 0s;
}
.XLNWN5XZ .XXWJ0K512Y {
  width: 4px; height: 4px; left: 25%; top: -10px; animation-duration: 16s; animation-delay: 2s;
}
.XLNWN5XZ .YYNMK4W505K {
  width: 8px; height: 8px; left: 50%; top: -10px; animation-duration: 14s; animation-delay: 4s;
  background: rgba(147, 210, 255, 0.15);
}
.XLNWN5XZ .WWK0LKX3 {
  width: 3px; height: 3px; left: 70%; top: -10px; animation-duration: 18s; animation-delay: 1s;
}
.XLNWN5XZ .Y501LOJ11Z {
  width: 5px; height: 5px; left: 85%; top: -10px; animation-duration: 13s; animation-delay: 3s;
}
.XLNWN5XZ .XX4YYLJ5012 {
  width: 7px; height: 7px; left: 40%; top: -10px; animation-duration: 20s; animation-delay: 6s;
  background: rgba(255, 255, 255, 0.1);
}

@keyframes aW3ZJ24OW {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(600px) rotate(360deg); opacity: 0; }
}

/* Hero title override for ice theme */
.XLNWN5XZ .YW5KK3NK {
  color: #fff;
  font-size: clamp(1.3rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

.XLNWN5XZ .T5KXKZMZ {
  font-style: italic;
  color: rgba(200, 220, 255, 0.8);
  font-size: clamp(0.9rem, 2.2vw, 1.25rem);
  font-weight: 400;
  max-width: 600px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}

/* Hero buttons styling */
.XLNWN5XZ .XXKNMLNNO {
  display: flex;
  gap: 10px;
  margin-top: clamp(12px, 2vh, 24px);
  flex-wrap: wrap;
}

.XLNWN5XZ.YXY3LW0JX .XXKNMLNNO {
  justify-content: center;
}

.XLNWN5XZ .ZO5XK12OY21 {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Trust badges */
.Z35244KOMY {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.XLNWN5XZ.YXY3LW0JX .Z35244KOMY {
  justify-content: center;
}

.T3ZLMZZ5YLN {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(180, 210, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
}

.T3ZLMZZ5YLN svg {
  opacity: 0.7;
  flex-shrink: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .XLNWN5XZ .Z0X54K41KX3 {
    padding: 20px 16px;
  }
  
  .XLNWN5XZ .XXKNMLNNO {
    flex-direction: column;
    align-items: stretch;
  }
  
  .XLNWN5XZ .ZO5XK12OY21 {
    text-align: center;
    padding: clamp(10px, 1.5vh, 16px) 24px;
    font-size: clamp(13px, 1.8vh, 16px);
  }

  .XLNWN5XZ .Y541XWNZ32 {
    width: 300px;
    height: 300px;
  }
  
  .Z35244KOMY {
    justify-content: center;
    gap: 12px;
    margin-top: clamp(10px, 1.5vh, 20px);
  }
  
  .T3ZLMZZ5YLN {
    font-size: 9px;
  }
}

/* Ice hero with featured image - strong dark overlay */
.XLNWN5XZ .W1LXY3NJZ31 {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.88) 0%, rgba(15, 40, 71, 0.82) 35%, rgba(12, 31, 61, 0.85) 65%, rgba(6, 18, 36, 0.92) 100%) !important;
  z-index: 1;
}

/* ===================================
   HERO SPLIT LAYOUT + GAME CARD
   =================================== */

/* Split layout */
.W24Y5LW2YJ22 {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.dYOWY3N0Z0 {
  flex: 1;
  text-align: left;
}

.XLNWN5XZ .dYOWY3N0Z0 .YW5KK3NK {
  text-align: left;
}

.XLNWN5XZ .dYOWY3N0Z0 .T5KXKZMZ {
  text-align: left;
}

.XLNWN5XZ .dYOWY3N0Z0 .XXKNMLNNO {
  justify-content: flex-start;
}

.XLNWN5XZ .dYOWY3N0Z0 .Z35244KOMY {
  justify-content: flex-start;
}

/* Game card column */
.ULMWZ40XLM {
  flex: 0 0 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Game card */
.W5213125MMYY {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(56, 152, 236, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.W5213125MMYY:hover {
  transform: scale(1.02);
}



/* Card glow behind */
.XM252KKW1O5K {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(56, 152, 236, 0.2) 0%, transparent 70%);
  z-index: -1;
  animation: U0OXNMM1M 4s ease-in-out infinite;
}

/* Card image */
.aX5L215XJYX {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Card label overlay */
.Y1N53540ON {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  border-radius: 0 0 20px 20px;
}

.d53OJWN2J24L {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.f05N40YYKOW {
  background: #e53e3e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mobile: stack vertically, card on top */
@media (max-width: 768px) {
  .W24Y5LW2YJ22 {
    flex-direction: column-reverse;
    gap: clamp(16px, 2.5vh, 28px);
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .dYOWY3N0Z0 {
    text-align: center;
  }
  
  .XLNWN5XZ .dYOWY3N0Z0 .YW5KK3NK,
  .XLNWN5XZ .dYOWY3N0Z0 .T5KXKZMZ {
    text-align: center;
  }
  
  .XLNWN5XZ .dYOWY3N0Z0 .XXKNMLNNO {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .XLNWN5XZ .dYOWY3N0Z0 .Z35244KOMY {
    justify-content: center;
  }
  
  .ULMWZ40XLM {
    flex: none;
    width: clamp(130px, 25vh, 240px);
  }
  
  .W5213125MMYY {
    border-radius: 16px;
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.4),
      0 0 24px rgba(56, 152, 236, 0.12);
  }
  
  .aX5L215XJYX {
    border-radius: 16px;
  }
  
  .Y1N53540ON {
    border-radius: 0 0 16px 16px;
    padding: 8px 12px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 991px) {
  .ULMWZ40XLM {
    flex: 0 0 260px;
  }
}

/* ===================================
   HERO GAME STATS STRIP
   =================================== */

.UKM2J05XXKLJ {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: clamp(12px, 2vh, 20px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 0;
}

.Y0KLKW3Z25L {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ZYMKKOXLK5 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.Y3WX0NN12M1 {
  color: rgba(180, 210, 255, 0.4) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.f420K4Y2X {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.XLNWN5XZ .dYOWY3N0Z0 .UKM2J05XXKLJ {
  max-width: 420px;
}

@media (max-width: 768px) {
  .ZYMKKOXLK5 {
    font-size: 10px;
  }
  
  .Y3WX0NN12M1 {
    font-size: 11px !important;
  }
  
  .f420K4Y2X {
    height: 20px;
  }
  
  .UKM2J05XXKLJ {
    padding: 6px 0;
    border-radius: 8px;
  }
}


/* Hide badges on very small screens */
@media (max-height: 700px) and (max-width: 768px) {
  .Z35244KOMY {
    display: none;
  }
}


/* Header hide on scroll down */
.dOK4K21MYNJM.Y53YYZ1MK.b44OMY1MJ {
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dOK4K21MYNJM.Y53YYZ1MK:not(.b44OMY1MJ) {
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky header logo size */
.dOK4K21MYNJM.Y53YYZ1MK .WJLM3M4JM,
.dOK4K21MYNJM.Y53YYZ1MK .custom-logo,
.dOK4K21MYNJM.Y53YYZ1MK .YWNWJNY54N img {
  max-height: 40px !important;
  transition: max-height 0.3s ease;
}

@media (max-width: 767px) {
  .dOK4K21MYNJM.Y53YYZ1MK .WJLM3M4JM,
  .dOK4K21MYNJM.Y53YYZ1MK .custom-logo,
  .dOK4K21MYNJM.Y53YYZ1MK .YWNWJNY54N img {
    max-height: 36px !important;
  }
}

/* Hide bottom nav when mobile menu is open */
body.WM2MM0W20 .XOXYNXLZK1 {
  display: none !important;
}


/* Hide bottom nav when mobile menu is open */
body.WM2MM0W20 .XOXYNXLZK1 {
  display: none !important;
}

/* Admin bar offset for mobile menu */
.admin-bar .VW5W20W3M113 {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .VW5W20W3M113 {
    top: 46px;
  }
  
  .admin-bar .VW5W20W3M113 .UYJNM5Z4J {
    bottom: 0;
  }
}

/* Mobile menu CTA - remove rounded corners */
.VW5W20W3M113 .UYJNM5Z4J .VMYLNK21Z5K1,
.VW5W20W3M113 .UYJNM5Z4J .ZO5XK12OY21 {
  border-radius: 0 !important;
  padding: 18px 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 13px !important;
}

/* Mobile menu flex order: header -> nav -> CTA */
.VW5W20W3M113 .Y1MYY3X4YX {
  order: 1;
}

.VW5W20W3M113 .UYJNM5Z4J {
  order: 3;
}

.VW5W20W3M113 .a4YJJNZWJ {
  order: 2;
}

/* Force flex on active mobile menu for ordering */
.VW5W20W3M113.WW1YWJXJX0 {
  display: flex !important;
  flex-direction: column !important;
}

/* Force square CTA buttons in mobile menu */
.VW5W20W3M113 .UYJNM5Z4J .W14NXKWK,
.VW5W20W3M113 .UYJNM5Z4J .f1XLYY53WY,
.VW5W20W3M113 .UYJNM5Z4J .YZ05W35WZ1N,
.VW5W20W3M113 .UYJNM5Z4J .ZO5XK12OY21,
.VW5W20W3M113 .UYJNM5Z4J a {
  border-radius: 0 !important;
}

/* Override global button shape in mobile menu CTA - must be square */
body.bXZNYXJZX3O .VW5W20W3M113 .UYJNM5Z4J .VMYLNK21Z5K1,
body.Y0JO1OWO .VW5W20W3M113 .UYJNM5Z4J .VMYLNK21Z5K1,
body.UOY2Z400Y21J .VW5W20W3M113 .UYJNM5Z4J .VMYLNK21Z5K1,
body .VW5W20W3M113 .UYJNM5Z4J .ZO5XK12OY21.W14NXKWK,
body .VW5W20W3M113 .UYJNM5Z4J .ZO5XK12OY21.f1XLYY53WY {
  border-radius: 0 !important;
}

/* Disable glow animation on CTA buttons in mobile menu */
.VW5W20W3M113 .UYJNM5Z4J .XLWYZW501O4,
.VW5W20W3M113 .UYJNM5Z4J .XLWYZW501O4::before,
.VW5W20W3M113 .UYJNM5Z4J .XLWYZW501O4::after {
  animation: none !important;
  box-shadow: none !important;
}

/* ===================================
   FOOTER - ICE FISHING (EVOLUTION STYLE)
   =================================== */

.Z14451M24 {
  background: #fff;
  color: #555;
  text-align: center;
  padding: 0;
  margin-top: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-top: 1px solid #eee;
}

/* Social section */
.WJK0XZ3K3 {
  padding: 40px 24px 24px;
  border-bottom: 1px solid #eee;
}

.eMYJMNKZ11 {
  color: #1a1a2e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.UYJ312XK4W {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.TWOZL1N2MYXL {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
}

.TWOZL1N2MYXL:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Legal text */
.Z1JXJ0MJ {
  padding: 28px 24px;
  max-width: 800px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}

.TLJK1ZN21LM {
  font-size: 12px;
  line-height: 1.7;
  color: #999;
  margin: 0;
}

/* Policy links */
.eJ50YJNY23O {
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}

.eJ50YJNY23O a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.eJ50YJNY23O a:hover {
  color: #1a1a2e;
}

.VX33YJ0O04N {
  color: #ccc;
  font-size: 12px;
}

/* Badges */
.X252ZJ5ZJZ {
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}

.dMJN4J2M {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.25s ease;
}

.dMJN4J2M:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.dMJWWKNX14 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.03em;
}

.TZ52MK5W {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.TZ52MK5W:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

/* Copyright */
.TXOO2LZX34Y {
  padding: 20px 24px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
}

.TXOO2LZX34Y p {
  font-size: 12px;
  color: #bbb;
  margin: 0;
}

/* Mobile bottom nav padding */
@media (max-width: 991px) {
  .TXOO2LZX34Y {
    padding-bottom: calc(20px + 70px);
  }
}

/* Force white social icons */
.TWOZL1N2MYXL svg {
  fill: #fff !important;
  color: #fff !important;
}

/* ===================================
   WP BLOCK TABLE - STYLED
   =================================== */

/* Reset ALL table borders first */
.XXL5XY1K5MJ0 figure.wp-block-table,
.XXL5XY1K5MJ0 .wp-block-table,
.XXL5XY1K5MJ0 .wp-block-table.is-style-stripes {
  border: none !important;
  border-bottom: none !important;
  margin: 24px 0 !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  border-radius: 10px !important;
}

.XXL5XY1K5MJ0 table,
.XXL5XY1K5MJ0 .wp-block-table table,
.XXL5XY1K5MJ0 figure.wp-block-table table {
  width: 100% !important;
  border-collapse: collapse !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Header cells */
.XXL5XY1K5MJ0 table thead th,
.XXL5XY1K5MJ0 .wp-block-table thead th,
.XXL5XY1K5MJ0 figure.wp-block-table thead th {
  background: var(--color-primary, #e53e3e) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  padding: 14px 16px !important;
  border: none !important;
  border-right: 1px solid rgba(255,255,255,0.12) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.XXL5XY1K5MJ0 table thead th:last-child,
.XXL5XY1K5MJ0 .wp-block-table thead th:last-child {
  border-right: none !important;
}

/* Body cells */
.XXL5XY1K5MJ0 table tbody td,
.XXL5XY1K5MJ0 .wp-block-table tbody td,
.XXL5XY1K5MJ0 figure.wp-block-table tbody td {
  padding: 14px 16px !important;
  border: none !important;
  border-bottom: 1px solid #f0f0f0 !important;
  border-right: 1px solid #f0f0f0 !important;
  color: #374151 !important;
  font-size: 14px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  background: #fff !important;
}

.XXL5XY1K5MJ0 table tbody td:last-child,
.XXL5XY1K5MJ0 .wp-block-table tbody td:last-child {
  border-right: none !important;
}

.XXL5XY1K5MJ0 table tbody tr:last-child td,
.XXL5XY1K5MJ0 .wp-block-table tbody tr:last-child td {
  border-bottom: none !important;
}

/* Alternating rows */
.XXL5XY1K5MJ0 table tbody tr:nth-child(even) td,
.XXL5XY1K5MJ0 .wp-block-table tbody tr:nth-child(even) td,
.XXL5XY1K5MJ0 .wp-block-table.is-style-stripes tbody tr:nth-child(odd) td {
  background: #f9fafb !important;
}

/* Hover */
.XXL5XY1K5MJ0 table tbody tr:hover td,
.XXL5XY1K5MJ0 .wp-block-table tbody tr:hover td {
  background: rgba(var(--color-primary-rgb, 229, 62, 62), 0.06) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .XXL5XY1K5MJ0 table thead th,
  .XXL5XY1K5MJ0 .wp-block-table thead th {
    padding: 10px 12px !important;
    font-size: 11px !important;
  }
  
  .XXL5XY1K5MJ0 table tbody td,
  .XXL5XY1K5MJ0 .wp-block-table tbody td {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
}


/* ===================================
   TABLE STYLING - Gutenberg Panel Classes
   =================================== */

/* --- Table Style: Minimal --- */
.W42J2OKW table,
figure.wp-block-table.W42J2OKW table {
    border-collapse: collapse !important;
    border: none !important;
}
.W42J2OKW table thead th {
    background: var(--color-primary, #e53e3e) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
    border-bottom: 2px solid rgba(0,0,0,0.1) !important;
}
.W42J2OKW table tbody td {
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.W42J2OKW table tbody tr:last-child td {
    border-bottom: none !important;
}

/* --- Table Style: Bordered --- */
.bJMYMNZONO5W table,
figure.wp-block-table.bJMYMNZONO5W table {
    border-collapse: collapse !important;
    border: 1px solid #e5e7eb !important;
}
.bJMYMNZONO5W table thead th {
    background: var(--color-primary, #e53e3e) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
}
.bJMYMNZONO5W table tbody td {
    border: 1px solid #e5e7eb !important;
}

/* --- Table Style: Striped --- */
.TZYJL113NM table,
figure.wp-block-table.TZYJL113NM table {
    border-collapse: collapse !important;
    border: 1px solid #e5e7eb !important;
}
.TZYJL113NM table thead th {
    background: var(--color-primary, #e53e3e) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
}
.TZYJL113NM table tbody td {
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.TZYJL113NM table tbody tr:nth-child(even) td {
    background: #f9fafb !important;
}
.TZYJL113NM table tbody tr:nth-child(odd) td {
    background: #fff !important;
}

/* --- Table Padding: Compact --- */
.a0OKW5W3N table thead th,
.a0OKW5W3N table tbody td {
    padding: 6px 10px !important;
}

/* --- Table Padding: Normal --- */
.WK2M34XZWM table thead th,
.WK2M34XZWM table tbody td {
    padding: 14px 16px !important;
}

/* --- Table Padding: Spacious --- */
.W5WLWWYY2X table thead th,
.W5WLWWYY2X table tbody td {
    padding: 20px 24px !important;
}

/* --- Table Rounded Corners --- */
.bKJ21X14N table {
    border-radius: 10px !important;
    overflow: hidden !important;
}
.bKJ21X14N {
    border-radius: 10px !important;
    overflow: hidden !important;
}

/* --- Table Layout: Fixed --- */
.YW5M3O2OZN table {
    table-layout: fixed !important;
}

/* --- Table Layout: Auto --- */
.eK22J32X4X2 table {
    table-layout: auto !important;
}

/* --- Dynamic border color via inline style fallback ---
   Border color is encoded in class name as sjwh-table-border-XXXXXX
   For CSS-only approach, common colors are pre-defined.
   Custom colors should use inline styles added by the block. */


/* ==========================================================================
   List Styling Classes (Gutenberg sidebar panel)
   ========================================================================== */

/* --- Spacing --- */
.e0N2132X1YZ li {
  margin-bottom: 4px !important;
}
.YXWXJYOM li {
  margin-bottom: 8px !important;
}
.aNWY5LX0NWX li {
  margin-bottom: 12px !important;
}

/* --- Indentation --- */
.f4K3YX55YM20 {
  padding-left: 20px !important;
}
.fKY32502N {
  padding-left: 30px !important;
}
.XW4WN5LN2X5 {
  padding-left: 40px !important;
}

/* --- Marker Styles (unordered lists) --- */
ul.T31J45O21 {
  list-style-type: disc;
}
ul.T31J45O21 li::marker {
  color: var(--list-marker-color, var(--color-primary));
}

ul.UYW21M5O {
  list-style: none !important;
}
ul.UYW21M5O > li::before {
  content: "\2192\0020";
  color: var(--list-marker-color, var(--color-primary));
  font-weight: bold;
}

ul.fK1NLK45J40O {
  list-style: none !important;
}
ul.fK1NLK45J40O > li::before {
  content: "\2713\0020";
  color: var(--list-marker-color, var(--color-primary));
  font-weight: bold;
}

ul.UOJYZ3N3MX {
  list-style: none !important;
}
ul.UOJYZ3N3MX > li::before {
  content: "\2022\0020";
  color: var(--list-marker-color, var(--color-primary));
  font-weight: bold;
  font-size: 1.2em;
}

/* --- Marker Styles (ordered lists) --- */
ol.T31J45O21 li::marker {
  color: var(--list-marker-color, var(--color-primary));
}
ol.UYW21M5O li::marker,
ol.fK1NLK45J40O li::marker,
ol.UOJYZ3N3MX li::marker {
  color: var(--list-marker-color, var(--color-primary));
}

/* ===================================
   APP INSTALL BANNER
   =================================== */

.bXLW5YO2N {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.Y4002WY4WOZW {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
}

/* Close button */
.VZKWLK322W {
    background: none;
    border: none;
    font-size: 22px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}
.VZKWLK322W:hover {
    color: #374151;
}

/* App icon */
.Y50YWO3Z {
    flex-shrink: 0;
}
.Y50YWO3Z img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Info */
.aXKZ24WM2NX {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bK5Y3MJ2Y31 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.W3KJLNKLJ2W {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}
.fMOOO4XKJ {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.TYMZ0YJWOZL4 {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-left: 4px;
}

/* Bonus badge */
.V53X1JNW50N {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    align-self: flex-start;
    white-space: nowrap;
}

/* Action */
.eXYMXYY344 {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.W1L5NW54Z31N {
    display: inline-block;
    background: var(--color-primary, #e53e3e);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.W1L5NW54Z31N:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
}
.WL3L0OKM {
    font-size: 10px;
    color: #9ca3af;
    white-space: nowrap;
}

/* Hide on desktop wider than 768px - optional, remove if want always visible */
/* @media (min-width: 769px) { .bXLW5YO2N { display: none !important; } } */

@media (max-width: 480px) {
    .Y4002WY4WOZW {
        gap: 10px;
        padding: 8px 12px;
    }
    .Y50YWO3Z img {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    .W3KJLNKLJ2W {
        font-size: 13px;
    }
    .W1L5NW54Z31N {
        padding: 7px 18px;
        font-size: 12px;
    }
    .V53X1JNW50N {
        font-size: 10px;
        padding: 2px 8px;
    }
}

/* App banner button shapes */
.W1L5NW54Z31N.W14NXKWK {
    border-radius: 6px;
}
.W1L5NW54Z31N.f1XLYY53WY {
    border-radius: 50px;
}
.W1L5NW54Z31N.YZ05W35WZ1N {
    border-radius: 0;
}





/* Mobile menu must be ABOVE the banner */
.VW5W20W3M113 {
    z-index: 99999 !important;
}
.U4NXZ0KKZY1 {
    z-index: 99998 !important;
}

/* ===================================
   HERO - APP DOWNLOAD TEMPLATE
   =================================== */

/* App Stats Row */




.WK4134MW {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}







/* Download Badges */
.cN3JZ4OX004 {
    display: flex;
    gap: 12px;
    margin-top: clamp(16px, 2vh, 24px);
    flex-wrap: wrap;
}

.TMMW1YWOOL {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--color-primary, #e53e3e);
    color: #fff !important;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 140px;
}
.TMMW1YWOOL:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    color: #fff;
}
.TMMW1YWOOL small {
    display: block;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.8;
    color: #fff;
    line-height: 1.2;
    font-family: -apple-system, sans-serif !important;
}
.TMMW1YWOOL strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    font-family: -apple-system, sans-serif !important;
}

/* Phone Image */
.T41J2XZ2XL {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.Z21WJ0OKLM {
    max-width: 100%;
    max-height: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(56,152,236,0.15);
    object-fit: contain;
}

.bZWOYWXL {
    width: 200px;
    height: 340px;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .cN3JZ4OX004 {
        justify-content: center;
    }
    .Z21WJ0OKLM {
        max-height: 200px;
    }


}

/* ===================================
   HERO - DEMO TEMPLATE EXTRAS
   =================================== */



/* Trailer Modal */
.YJWN4Z4K5 {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cMMOJ10KWNK {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cLZYKZMNXWX {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.WX34W15533 {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* ===================================
   DEMO HERO - VIDEO PLAYER
   =================================== */

.dM1JLNWYNN {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(56,152,236,0.15);
    aspect-ratio: 1/1;
    max-width: 360px;
    width: 100%;
    z-index: 2;
}

/* Cover (game card overlay) */
.WYOZNXLY {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

.XWK1LZ2NZ {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fNZWJJ45WJY {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.WYOZNXLY:hover .fNZWJJ45WJY {
    background: rgba(0,0,0,0.15);
}

/* Play button */
.eONJJ3KOJ {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(var(--color-primary-rgb, 229,62,62), 0.9);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    padding-left: 4px;
}

.eONJJ3KOJ:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-primary, #e53e3e);
    box-shadow: 0 0 30px rgba(var(--color-primary-rgb, 229,62,62), 0.5);
}

/* Pulse animation on play button */
.eONJJ3KOJ::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(var(--color-primary-rgb, 229,62,62), 0.4);
    animation: Y4L55MW45XW 2s ease-in-out infinite;
}

@keyframes Y4L55MW45XW {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0; }
}

/* DEMO tag */
.cNZ5JJ02 {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--color-primary, #e53e3e);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    z-index: 3;
    font-family: -apple-system, sans-serif !important;
}

/* Video (iframe or local) */
.fL2MW53W001 {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 20px;
    background: #000;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .dM1JLNWYNN {
        max-width: 220px;
        margin: 0 auto;
    }
    .eONJJ3KOJ {
        width: 56px;
        height: 56px;
    }
    .eONJJ3KOJ svg {
        width: 36px;
        height: 36px;
    }
}


/* Demo card wrapper */
.f5ZMZYY3W {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.XY22NYY22 {
    text-decoration: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.XY22NYY22:hover {
    transform: scale(1.02);
}

.XY22NYY22 .W5213125MMYY {
    position: relative;
}

/* Demo tag uses primary color */
.WLY4400MN44 {
    background: var(--color-primary, #e53e3e) !important;
}

/* Play button on card */
.eONJJ3KOJ {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(var(--color-primary-rgb, 229,62,62), 0.85);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding-left: 3px;
    transition: all 0.3s ease;
}

.XY22NYY22:hover .eONJJ3KOJ {
    background: var(--color-primary, #e53e3e);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 24px rgba(var(--color-primary-rgb, 229,62,62), 0.5);
}

.eONJJ3KOJ::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(var(--color-primary-rgb, 229,62,62), 0.4);
    animation: Y4L55MW45XW 2s ease-in-out infinite;
}

/* Cover overlay */
.fNZWJJ45WJY {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 2;
    transition: background 0.3s ease;
    border-radius: 20px;
}

.XY22NYY22:hover .fNZWJJ45WJY {
    background: rgba(0,0,0,0.1);
}

/* Small Trailer button */
.WOO0K1L3K20N {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: -apple-system, sans-serif !important;
}

.WOO0K1L3K20N:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .eONJJ3KOJ {
        width: 52px;
        height: 52px;
    }
    .eONJJ3KOJ svg {
        width: 28px;
        height: 28px;
    }
}

/* Demo hero - landscape card + badge on top */
.WYN5NM4KZZ .W5213125MMYY {
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
}

.WYN5NM4KZZ .aX5L215XJYX {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.WYN5NM4KZZ .Y1N53540ON {
    top: 0;
    bottom: auto;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
    padding: 14px 16px;
}

.WYN5NM4KZZ .ULMWZ40XLM {
    flex: 0 0 400px;
}

@media (max-width: 768px) {
    .WYN5NM4KZZ .ULMWZ40XLM {
        flex: none;
        width: clamp(200px, 60vw, 300px);
    }
}

/* Demo badge on top of card, above overlay */
.Z325YXXM0 {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-primary, #e53e3e);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    z-index: 5;
    font-family: -apple-system, sans-serif !important;
    text-transform: uppercase;
}

/* Card badges inherit primary color and button shape */
.f05N40YYKOW,
.Z325YXXM0,
.f05N40YYKOW.WLY4400MN44 {
    background: var(--color-primary, #e53e3e) !important;
    color: #fff !important;
}

/* Badge shape inherits from global button shape */
body.bXZNYXJZX3O .f05N40YYKOW,
body.bXZNYXJZX3O .Z325YXXM0,
body.WXL4JKNY0WLN .f05N40YYKOW,
body.WXL4JKNY0WLN .Z325YXXM0 {
    border-radius: 6px !important;
}

body.Y0JO1OWO .f05N40YYKOW,
body.Y0JO1OWO .Z325YXXM0,
body.Y22L3OKLX .f05N40YYKOW,
body.Y22L3OKLX .Z325YXXM0 {
    border-radius: 50px !important;
}

body.UOY2Z400Y21J .f05N40YYKOW,
body.UOY2Z400Y21J .Z325YXXM0,
body.Z11K23OX1 .f05N40YYKOW,
body.Z11K23OX1 .Z325YXXM0 {
    border-radius: 0 !important;
}

/* App Download hero - bigger image column */
.Y0J0Y1N35W .ULMWZ40XLM {
    flex: 0 0 380px;
}

@media (max-width: 768px) {
    .Y0J0Y1N35W .ULMWZ40XLM {
        flex: none;
        width: clamp(140px, 40vw, 220px);
    }
    .Z21WJ0OKLM {
        max-height: 220px;
        border-radius: 16px;
    }




    .cN3JZ4OX004 {
        justify-content: center;
    }
    .TMMW1YWOOL {
        padding: 8px 14px;
        font-size: 12px;
        min-width: 120px;
    }
    .TMMW1YWOOL small {
        font-size: 0.5rem;
    }
    .TMMW1YWOOL strong {
        font-size: 0.85rem;
    }
    .WW2M0XJOW svg {
        width: 16px;
        height: 16px;
    }
    .XK5KYY4X1J {
        font-size: 11px;
    }
}

/* App card wrapper - image + stats stacked */
.aX054550 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.aX054550 .WK5OJONWX0 {
    width: 100%;
    max-width: 360px;
}

/* Rating row under app image */
.aY2Z5X2MJW35 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 8px;
}

.Z55LOKMOYWZ {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-left: 6px;
    font-family: -apple-system, sans-serif !important;
}

/* Rating block under app image */






/* Rating pill under app image */
.U42O2MY0M4 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 6px 16px;
    border: 1.5px solid var(--color-primary, #e53e3e);
    border-radius: 24px;
    background: rgba(var(--color-primary-rgb, 229,62,62), 0.1);
}

.U42O2MY0M4 .Z55LOKMOYWZ {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-left: 4px;
    font-family: -apple-system, sans-serif !important;
}

@media (max-width: 768px) {
    .U42O2MY0M4 {
        padding: 5px 12px;
    }
    .U42O2MY0M4 svg {
        width: 14px;
        height: 14px;
    }
    .U42O2MY0M4 .Z55LOKMOYWZ {
        font-size: 12px;
    }
}

/* Reduce gaps in app hero */
.Y0J0Y1N35W .U42O2MY0M4 {
    margin-top: 8px;
}



/* Bigger download buttons */
.Y0J0Y1N35W .cN3JZ4OX004 {
    margin-top: clamp(10px, 1.5vh, 16px);
}

.Y0J0Y1N35W .TMMW1YWOOL {
    padding: 12px 22px;
}

@media (max-width: 768px) {
    .Y0J0Y1N35W .TMMW1YWOOL {
        padding: 12px 18px;
        flex: 1;
        justify-content: center;
    }



}


/* App Banner - fixed BELOW sticky header */
.bXLW5YO2N {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.bXLW5YO2N.XMK2X5YZ {
    top: -100px;
}

.bXLW5YO2N.TLJJ1401N {
    top: 56px;
}

/* Match sticky header height */
body:not(.UJ5YW044L) .bXLW5YO2N.TLJJ1401N {
    top: 80px;
}

/* Admin bar */
.admin-bar .bXLW5YO2N.TLJJ1401N {
    top: 88px;
}

@media (max-width: 782px) {
    .admin-bar .bXLW5YO2N.TLJJ1401N {
        top: 96px;
    }
}

@media (max-width: 767px) {
    .bXLW5YO2N.TLJJ1401N {
        top: 50px;
    }
    .admin-bar .bXLW5YO2N.TLJJ1401N {
        top: 96px;
    }
}

/* App banner - only mobile/tablet, hide on desktop */
@media (min-width: 992px) {
    .bXLW5YO2N {
        display: none !important;
    }
}

/* ===================================
   CTA BUTTON ANIMATIONS
   =================================== */

/* GLOW animation */
.XLWYZW501O4 {
    animation: eM1X45O355 2s ease-in-out infinite;
}

@keyframes eM1X45O355 {
    0%, 100% {
        box-shadow: 0 0 5px rgba(var(--color-primary-rgb, 229,62,62), 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(var(--color-primary-rgb, 229,62,62), 0.6), 0 0 40px rgba(var(--color-primary-rgb, 229,62,62), 0.2);
    }
}

/* PULSE animation */
.WM3L4MWZKY5 {
    animation: WJ4515WK 2s ease-in-out infinite;
}

@keyframes WJ4515WK {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* SHINE animation */
.YOL53YXWX0 {
    position: relative;
    overflow: hidden;
}

.YOL53YXWX0::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.15) 55%,
        transparent 100%
    );
    transform: rotate(25deg) translateX(-200%);
    animation: XK4JL1N5NO 3s ease-in-out infinite;
}

@keyframes XK4JL1N5NO {
    0% { transform: rotate(25deg) translateX(-200%); }
    100% { transform: rotate(25deg) translateX(200%); }
}

/* SHAKE animation */
.ZN125Y4WXL {
    animation: VZ112NWM 3s ease-in-out infinite;
}

@keyframes VZ112NWM {
    0%, 85%, 100% { transform: translateX(0); }
    87% { transform: translateX(-4px); }
    89% { transform: translateX(4px); }
    91% { transform: translateX(-3px); }
    93% { transform: translateX(3px); }
    95% { transform: translateX(-2px); }
    97% { transform: translateX(0); }
}

/* BOUNCE animation */
.UZWX3J0KN {
    animation: c0L01LLN 2.5s ease-in-out infinite;
}

@keyframes c0L01LLN {
    0%, 80%, 100% { transform: translateY(0); }
    85% { transform: translateY(-6px); }
    90% { transform: translateY(0); }
    93% { transform: translateY(-3px); }
    96% { transform: translateY(0); }
}

/* BREATHING animation */
.W2Y21O2MXM {
    animation: X3L334MW 3s ease-in-out infinite;
}

@keyframes X3L334MW {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(var(--color-primary-rgb, 229,62,62), 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 4px 16px rgba(var(--color-primary-rgb, 229,62,62), 0.4);
    }
}
