/* ========== ИМПОРТ ШРИФТОВ ========== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ========== CSS ПЕРЕМЕННЫЕ ========== */
:root {
  --colors-base-black: rgb(13, 3, 35);
  --colors-base-100: rgb(43, 14, 66);
  --colors-base-200: rgb(44, 20, 95);
  --colors-primary: #2dd444;
  --text-color: var(--colors-base-200);
  --backgrounds-b: var(--colors-base-100);
  --backgrounds-c: var(--colors-base-200);
  --borders-a: var(--colors-base-black);
  --gradient-a: linear-gradient(180deg, #1A083E 0%, #13052F 100%);
  --gradient-b: linear-gradient(180deg, #13052F 0%, #1A083D 100%);
  --gradient-c: linear-gradient(180deg, #1D1041 0%, #2B1E48 100%);
  --site-radius: 12px;
  --border-light: rgba(255, 255, 255, 0.1);
  --gray-dark: #ffffff;
  --white: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --overlay-dark: rgba(0, 0, 0, 0.3);
  --game-hover: rgba(0, 0, 0, 0.7);
  --danger: #ff4757;
  --header-background-color: var(--colors-primary);
  --primary-color: var(--colors-primary);
  --font-title-heading: 'Open Sans', sans-serif;
}

/* ========== BASE ========== */
html, body {
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Open Sans', system-ui, sans-serif;
  background: var(--colors-base-black);
  background-attachment: fixed;
  color: #e6d9f5;
  position: relative;
}

/* Добавляем декоративный фон с магическими элементами */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(106, 76, 147, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(61, 32, 99, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(106, 76, 147, 0.05) 0%, transparent 30%);
  pointer-events: none;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--site-radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ========== SIDEBAR ========== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 180px;
  height: 100vh;
  background: var(--gradient-b);
  border-right: 3px solid var(--borders-a);
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.4);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 900;
  box-sizing: border-box;
}

/* Декоративная рамка для сайдбара */
.sidebar::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(106, 76, 147, 0.3);
  border-radius: var(--site-radius);
  opacity: 0.3;
  pointer-events: none;
}

.logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #e6d9f5;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  background: linear-gradient(45deg, #e6d9f5, #c2a6de);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo .chip {
  color: #c2a6de;
  text-shadow: none;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--site-radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--backgrounds-b);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

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

.menu a:hover::before {
  left: 100%;
}

.menu a:hover {
  background: var(--backgrounds-c);
  border-color: var(--colors-primary);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.icon {
  font-size: 1.2rem;
  color: #e6d9f5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.support-btn {
  display: block;
  width: auto;
  min-width: 100px;
  text-align: center;
  background: var(--colors-primary);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  border: 2px solid var(--colors-primary);
  text-shadow: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-btn::before {
  content: '✨';
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { left: -30px; opacity: 0; }
  50% { left: calc(100% + 10px); opacity: 1; }
}

.support-btn:hover {
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
  transform: translateY(-3px);
}

/* Скрыть sidebar на мобильных */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
/* ========== BURGER ========== */
.burger {
  display: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1100;
  background: var(--backgrounds-b);
  color: #e6d9f5;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--site-radius);
  cursor: pointer;
}

/* ========== ЛОГОТИП В ТОПБАРЕ ========== */
.topbar-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: 1rem;
  flex-shrink: 0;
}

.topbar-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

.topbar-logo-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e6d9f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #e6d9f5, var(--colors-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Обновляем структуру топбара */
.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--gradient-a);
  border-bottom: 3px solid var(--borders-a);
  padding: 0.75rem 1rem;
  height: 60px;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Декоративные элементы для топбара */
.topbar::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-c);
}

/* ====== BURGER (mobile only) ====== */
.subnav-toggle {
  font-size: 1.2rem !important;
  line-height: 1 !important;
  padding: 0.5rem !important;
  width: auto !important;
  height: auto !important;
  display: none;
  background: var(--backgrounds-b);
  border: 2px solid var(--border-light);
  color: #e6d9f5;
  cursor: pointer;
  position: relative;
  border-radius: var(--site-radius);
  transition: all 0.3s ease;
  order: -1;
  margin-right: 1rem;
}

.subnav-toggle:hover {
  background: var(--backgrounds-c);
  border-color: var(--colors-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ====== SUBNAV (левое меню) ====== */
.subnav {
  display: flex;
  margin-left: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.subnav a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--site-radius);
  color: #e6d9f5;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--backgrounds-b);
  border: 2px solid var(--border-light);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.subnav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.subnav a:hover::before {
  transform: translateX(100%);
}

.subnav a:hover,
.subnav a:focus {
  background: var(--backgrounds-c);
  border-color: var(--colors-primary);
  color: #e6d9f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}
 /*========== LANGUAGE SWITCHER ========== */
        .language-switcher {
            position: relative;
            display: inline-block;
            z-index: 99999 !important;
        }

        .lang-current {
            background: transparent;
            color: #FFD700;
            border: 2px solid #FFD700;
            border-radius: 25px;
            padding: 0.425rem 0.85rem;
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
            font-size: 0.765rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.425rem;
            user-select: none;
        }

        .lang-current::after {
            content: '▼';
            font-size: 0.595rem;
            transition: transform 0.3s ease;
        }

        .lang-current:hover {
            background: #FFD700;
            color: #1A0E0E;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
            transform: translateY(-2px);
        }

        .language-switcher.active .lang-current::after {
            transform: rotate(180deg);
        }

        .language-switcher.active .lang-current {
            background: #FFD700;
            color: #1A0E0E;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
            transform: translateY(-2px);
        }

        .lang-dropdown {
            display: none;
            position: absolute;
            top: 110%;
            right: 0;
            background: #1A0E0E;
            border: 2px solid #FFD700;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            z-index: 99999 !important;
            min-width: 102px;
        }

        .language-switcher.active .lang-dropdown {
            display: block;
            animation: dropdownFadeIn 0.3s ease;
        }

        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lang-option {
            display: block;
            padding: 0.6375rem 0.85rem;
            color: #e6d9f5;
            text-decoration: none;
            font-family: 'Open Sans', sans-serif;
            font-weight: 500;
            font-size: 0.765rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid #4A2F2F;
            cursor: pointer;
        }

        .lang-option:last-child {
            border-bottom: none;
            border-radius: 0 0 13px 13px;
        }

        .lang-option:first-child {
            border-radius: 13px 13px 0 0;
        }

        .lang-option:only-child {
            border-radius: 13px;
        }

        .lang-option:hover {
            background: #FFD700;
            color: #1A0E0E;
            transform: translateX(5px);
        }
/* обёртка для правых кнопок */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
}

.topbar-right .btn {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Фон и текст для Register */
.topbar-right .btn-register {
  background: var(--colors-primary);
  color: var(--white);
  border: 2px solid var(--colors-primary);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.topbar-right .btn-register:hover {
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
  transform: translateY(-3px);
}

/* Обводка для Log In */
.topbar-right .btn-login {
  background: transparent;
  color: #e6d9f5;
  border: 2px solid var(--border-light);
}

.topbar-right .btn-login:hover {
  background: var(--backgrounds-b);
  box-shadow: 0 6px 20px rgba(106, 76, 147, 0.4);
  transform: translateY(-2px);
  border-color: var(--colors-primary);
}

/* ====== СТИЛИ ДЛЯ БОЛЬШИХ ПЛАНШЕТОВ И МАЛЕНЬКИХ ДЕСКТОПОВ ====== */
@media (min-width: 1025px) and (max-width: 1400px) {
  .topbar {
    padding: 0.75rem 0.75rem;
  }
  
  .subnav {
    margin-left: 1rem;
    gap: 0.75rem;
  }
  
  .subnav a {
    padding: 0.45rem 0.65rem;
    font-size: 0.85rem;
  }
  
  .language-switcher {
    margin-right: 0.75rem;
  }
  
  .lang-current {
    width: 70px;
    font-size: 0.8rem;
  }
  
  .lang-dropdown {
    width: 70px;
  }
  
  .topbar-right .btn {
    font-size: 0.85rem;
    padding: 0.45rem 0.85rem;
  }
}

/* ====== СТИЛИ ДЛЯ ПЛАНШЕТОВ ====== */
@media (min-width: 769px) and (max-width: 1024px) {
  .topbar {
    padding: 0.75rem 0.5rem;
  }
  
  .topbar-logo {
    margin-left: 0.5rem;
  }
  
  .topbar-logo img {
    height: 30px;
  }
  
  .topbar-logo-text {
    font-size: 1.1rem;
  }
  
  .subnav-toggle {
    display: block;
  }
  
  .subnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--gradient-b);
    flex-direction: column;
    padding: 1rem;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border-top: 2px solid var(--border-light);
  }
  
  .subnav.active {
    display: flex;
  }
  
  .subnav a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .subnav a:last-child {
    border-bottom: none;
  }
  
  .language-switcher {
    margin-right: 0.5rem;
  }
  
  .lang-current {
    width: 65px;
    font-size: 0.8rem;
  }
  
  .lang-dropdown {
    width: 65px;
  }
  
  .topbar-right .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }
}

/* ====== МОБИЛЬНЫЕ СТИЛИ ====== */
@media (max-width: 768px) {
  .topbar {
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    position: relative;
  }
  
  .topbar-logo {
    margin-left: 0;
    margin-right: 0.5rem;
  }
  
  .topbar-logo img {
    height: 28px;
  }
  
  .topbar-logo-text {
    font-size: 1rem;
  }
  
  .subnav-toggle {
    display: block;
    margin-right: 0.5rem;
    font-size: 1rem !important;
    padding: 0.4rem 0.6rem !important;
  }
  
  .subnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gradient-b);
    flex-direction: column;
    padding: 1rem;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border-top: 2px solid var(--border-light);
  }
  
  .subnav.active {
    display: flex;
  }
  
  .subnav a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .subnav a:last-child {
    border-bottom: none;
  }
  
  .topbar-right {
    gap: 0.5rem;
  }
  
  .language-switcher {
    margin-right: 0.25rem;
  }
  
  .lang-current {
    width: 55px;
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
  }
  
  .lang-dropdown {
    width: 55px;
  }
  
  .lang-option {
    font-size: 0.75rem;
    padding: 0.5rem;
  }
  
  .topbar-right .btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
}

/* ====== ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ ====== */
@media (max-width: 480px) {
  .topbar {
    padding: 0.5rem 0.25rem;
  }
  
  .topbar-logo img {
    height: 24px;
  }
  
  .topbar-logo-text {
    font-size: 0.9rem;
  }
  
  .subnav-toggle {
    font-size: 0.9rem !important;
    padding: 0.3rem 0.5rem !important;
  }
  
  .lang-current {
    width: 45px;
    font-size: 0.7rem;
    padding: 0.3rem 0.4rem;
  }
  
  .lang-dropdown {
    width: 45px;
  }
  
  .lang-option {
    font-size: 0.7rem;
    padding: 0.4rem;
  }
  
  .topbar-right .btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
}

/* ====== ОЧЕНЬ БОЛЬШИЕ ЭКРАНЫ ====== */
@media (min-width: 1401px) {
  .topbar {
    padding: 0.75rem 2rem;
  }
  
  .topbar-logo {
    margin-left: 1rem;
  }
  
  .subnav {
    margin-left: 3rem;
    gap: 1.25rem;
  }
  
  .language-switcher {
    margin-right: 1.5rem;
  }
  
  .topbar-right {
    gap: 1rem;
  }
}

/* ========== MAIN ========== */
.main {
  padding: 2rem 1rem;
  margin-top: 20px;
  margin-left: 100px;
  width: calc(100% - 240px);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .main {
    margin-left: 0;
    width: 100%; 
  }
}

/* ========== HERO ========== */
.hero-section {
  position: relative;
  background: var(--gradient-b);
  border-radius: var(--site-radius);
  border: 4px solid var(--borders-a);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e6d9f5;
  margin-bottom: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Декоративная рамка для героя */
.hero-section::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--site-radius);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
}

.hero-title {
  font-family: var(--font-title-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #e6d9f5;
  text-shadow: 
    0 0 30px rgba(0, 0, 0, 1),
    6px 6px 12px rgba(0, 0, 0, 1),
    12px 12px 24px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(255, 107, 53, 0.7);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.8rem);
  margin-bottom: 1.5em;
  color: #e6d9f5;
  text-shadow: 
    0 0 40px rgba(0, 0, 0, 1),
    6px 6px 12px rgba(0, 0, 0, 1),
    12px 12px 24px rgba(0, 0, 0, 0.95),
    0 0 60px rgba(255, 107, 53, 0.8);
  font-weight: 600;
  line-height: 1.4;
}

.hero-btn {
  display: inline-block;
  padding: 0.75em 2em;
  background: var(--colors-primary);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  border: 3px solid var(--colors-primary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-btn:hover {
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
  transform: translateY(-5px);
}

/* Большие экраны - делаем еще шире и выше */
@media (min-width: 1200px) {
  .hero-section {
    max-width: 2200px;
    min-height: 400px;
    border-radius: var(--site-radius);
  }
  
  .hero-content {
    padding: 3rem;
  }
}

/* Средние экраны */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-section {
    max-width: 1200px;
    min-height: 55vh;
  }
}

/* Планшеты */
@media (max-width: 767px) {
  .hero-section {
    border-radius: var(--site-radius);
    min-height: 45vh;
    margin-bottom: 2rem;
    border: 3px solid var(--borders-a);
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-section::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: calc(var(--site-radius) - 4px);
  }
}

/* Мобильные телефоны */
@media (max-width: 480px) {
  .hero-section {
    border-radius: var(--site-radius);
    min-height: 40vh;
    margin-bottom: 1.5rem;
    border: 2px solid var(--borders-a);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;  
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-btn {
    padding: 0.6em 1.5em;
  }
}

/* ========== GAME SECTIONS ========== */
.game-section {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--backgrounds-b);
  border: 4px solid var(--borders-a);
  border-radius: var(--site-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--border-light);
  border-radius: calc(var(--site-radius) - 4px);
  pointer-events: none;
}

.game-section.hidden {
  display: none;
}

/* ========== GAME SECTION HEADER ========== */
.game-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--borders-a);
}

.game-section-title {
  font-family: var(--font-title-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #e6d9f5;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-section-controls {
  display: flex;
  gap: 0.5rem;
}

.game-nav-prev,
.game-nav-next {
  background: var(--backgrounds-c);
  color: #e6d9f5;
  border: 2px solid var(--colors-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.game-nav-prev:hover,
.game-nav-next:hover {
  background: var(--colors-primary);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  transform: translateY(-2px) scale(1.1);
}

.game-nav-prev:active,
.game-nav-next:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
}

/* ========== GAMES GRID ========== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ===== GAME NAVIGATION ===== */
.game-nav {
  background: var(--gradient-c);
  padding-right: 20px; 
  padding-left: 20px;
  margin-bottom: 30px;
  border-radius: var(--site-radius);
  overflow: hidden;
}

.game-nav-container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.game-nav-container::-webkit-scrollbar {
  display: none;
}

.game-nav-tab {
  background: transparent;
  border: none;
  color: var(--gray-dark);
  padding: 16px 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.game-nav-tab:hover {
  color: var(--gray-dark);
  background: var(--border-light);
}

.game-nav-tab.active {
  color: var(--colors-primary);
  border-bottom-color: var(--colors-primary);
  background: rgba(255, 107, 53, 0.1);
}

/* ===== GAME SECTIONS ===== */
.game-section {
  padding-left: 20px;
  padding-right: 20px; 
  margin-bottom: 50px;
}

.game-section.hidden {
  display: none;
}

.game-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.game-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-dark);
  font-family: var(--font-title-heading);
}

.game-section-controls {
  display: flex;
  gap: 8px;
}

.game-nav-prev,
.game-nav-next {
  background: var(--backgrounds-c);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-nav-prev:hover,
.game-nav-next:hover {
  background: var(--colors-primary);
  transform: scale(1.1);
}

/* ===== GAMES GRID ===== */
.games-grid {
  padding-left: 20px;
  padding-right: 20px; 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 20px;
}

.game-card {
  background: var(--backgrounds-b);
  border-radius: var(--site-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-color) 0 4px 12px;
  border: 1px solid var(--border-light);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--overlay-dark);
  border-color: var(--colors-primary);
}

.game-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

.game-card:hover .game-image {
  transform: scale(1.05);
}

/* ===== GAME ACTIONS OVERLAY ===== */
.game-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--game-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-actions {
  opacity: 1;
}

.btn-demo,
.btn-play,
.btn-play-single {
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.btn-demo {
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #ffffff;
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-play,
.btn-play-single {
  background: var(--colors-primary);
  color: #ffffff;
  border: 2px solid var(--colors-primary);
}

.btn-play:hover,
.btn-play-single:hover {
  background: rgba(255, 107, 53, 0.8);
  border-color: rgba(255, 107, 53, 0.8);
  transform: translateY(-2px);
}

/* ===== BADGES ===== */
.jackpot-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--colors-primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-color) 0 2px 10px;
}

.jackpot-icon {
  font-size: 14px;
}

.exclusive-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-title {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
  text-align: center;
  line-height: 1.4;
}

/* ========== BONUS TILES ========== */
.bonus-tiles {
  display: grid;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 0 1rem;
  grid-auto-rows: 1fr;
}

@media (max-width: 768px) { 
  .bonus-tiles { 
    grid-template-columns: 1fr; 
    padding: 0 0.5rem; 
  } 
}
@media (min-width: 769px) and (max-width: 1024px) { 
  .bonus-tiles { 
    grid-template-columns: repeat(2, 1fr); 
  } 
}
@media (min-width: 1025px) { 
  .bonus-tiles { 
    grid-template-columns: repeat(3, 1fr); 
  } 
}

.bonus-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--backgrounds-b);
  border: 3px solid var(--borders-a);
  padding: 1.5rem;
  border-radius: var(--site-radius);
  color: #e6d9f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-tile::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--border-light);
  border-radius: calc(var(--site-radius) - 4px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.bonus-tile:hover::before {
  border-color: var(--colors-primary);
  box-shadow: 0 0 25px rgba(255, 107, 53, 0.3);
}

.bonus-tile:hover {
  transform: translateY(-10px);
  border-color: var(--colors-primary);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.bonus-tile .image-wrapper {
  height: 150px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: calc(var(--site-radius) - 4px);
}

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

.bonus-tile:hover .image-wrapper img {
  transform: scale(1.1);
}

.bonus-tile h3 {
  font-family: var(--font-title-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #e6d9f5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.bonus-tile p {
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.6;
}

.bonus-tile a {
  display: inline-block;
  background: var(--colors-primary);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  border: 2px solid var(--colors-primary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.bonus-tile a:hover {
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
  transform: translateY(-3px);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-nav,
.mobile-menu-panel {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-b);
    border-top: 3px solid var(--borders-a);
    padding: 0.5rem 0;
    justify-content: space-around;
    z-index: 999;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu-panel.open {
    display: flex !important;
  }

  .mobile-nav a {
    color: #e6d9f5;
    font-size: 0.7rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: var(--colors-primary);
  }

  .mobile-menu-panel {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: var(--gradient-b);
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    z-index: 999;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-menu-panel a {
    display: block;
    color: #e6d9f5;
    padding: 0.75rem 1rem;
    background: var(--backgrounds-b);
    border-radius: var(--site-radius);
    text-align: center;
    transition: all 0.3s ease;
  }

  .mobile-menu-panel a:hover {
    background: var(--backgrounds-c);
    color: var(--colors-primary);
  }
}

/* ========== TOP NAVIGATION (MOBILE ONLY) ========== */
.topnav {
  background: var(--gradient-b);
  padding: 0.4rem 0.5rem;
  border-bottom: 3px solid var(--borders-a);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: none; /* скрыто по умолчанию */
}

/* Показываем topnav только на мобилке */
@media (max-width: 768px) {
  .topnav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .topnav-visible {
    display: flex;
    gap: 0.2rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-x: auto;
  }

  .topnav-visible .more-toggle {
    display: flex !important;
  }
}

/* Скрываем topnav и topnav-visible на десктопе */
@media (min-width: 769px) {
  .topnav,
  .topnav-visible {
    display: none !important;
  }
}

.topnav-visible a {
  flex: 1 1 18%;
  min-width: 48px;
  background: var(--backgrounds-b);
  border: 2px solid var(--border-light);
  border-radius: var(--site-radius);
  color: #e6d9f5;
  text-align: center;
  font-size: 0.65rem;
  padding: 0.4rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.topnav-visible a:hover {
  background: var(--backgrounds-c);
  border-color: var(--colors-primary);
  color: var(--colors-primary);
}

.topnav-visible a i {
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  color: inherit;
}

.topnav-hidden {
  display: none;
}

.topnav-hidden.open {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.mobile-logo {
  display: none;
  font-size: 1.5rem;
  font-weight: normal;
  color: #e6d9f5;
  margin-bottom: 0.5rem;
  text-align: center;
}

.mobile-logo .chip {
  color: var(--colors-primary);
}

/* ==== Показываем логотип и ограничиваем его размер на мобилке ==== */
@media (max-width: 768px) {
  .mobile-logo {
    display: none !important;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .mobile-logo img {
    max-width: 120px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.logo img {
  height: 36px;
  object-fit: contain;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gradient-b);
  color: #e6d9f5;
  margin-top: auto;
  border-top: 4px solid var(--borders-a);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-c);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Основная сетка футера */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

/* Брендинг */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

.footer-title {
  font-family: var(--font-title-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #e6d9f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-description {
  color: rgba(226, 217, 245, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Колонки навигации */
.footer-column h3 {
  color: #e6d9f5;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}

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

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

.footer-column a {
  color: rgba(226, 217, 245, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--colors-primary);
  transform: translateX(3px);
}

/* Контактная информация */
.footer-contact h3 {
  color: #e6d9f5;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-contact p {
  margin: 0.5rem 0;
  color: rgba(226, 217, 245, 0.8);
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(226, 217, 245, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--colors-primary);
}

/* Нижняя часть футера */
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

.footer-copyright {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(226, 217, 245, 0.6);
}

.footer-text {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(226, 217, 245, 0.6);
}

/* Большие планшеты */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Планшеты */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
  
  .footer-logo {
    height: 36px;
  }
  
  .footer-title {
    font-size: 1.4rem;
  }
}

/* Мобильные стили */
@media (max-width: 768px) {
  .footer-container {
    padding: 1.5rem 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    grid-column: 1;
    align-items: center;
  }
  
  .footer-logo {
    height: 32px;
  }
  
  .footer-title {
    font-size: 1.25rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-bottom-left {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-bottom-logo {
    height: 20px;
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  .footer-container {
    padding: 1rem 0.5rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-logo {
    height: 28px;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .footer-column h3,
  .footer-contact h3 {
    font-size: 1rem;
  }
  
  .footer-column a,
  .footer-contact p {
    font-size: 0.85rem;
  }
  
  .footer-bottom-logo {
    height: 18px;
  }
  
  .footer-copyright,
  .footer-text {
    font-size: 0.8rem;
  }
}
/* ========== PROSE ========== */
.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: #e6d9f5;
  margin-top: 3rem;
  font-family: 'Open Sans', sans-serif;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  font-family: var(--font-title-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #e6d9f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#TableOfContents {
  border: 3px solid var(--borders-a);
  padding: 1.5rem;
  border-radius: var(--site-radius);
  font-size: 1rem;
  margin: 2rem 0;
  color: #e6d9f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: var(--backgrounds-b);
}

#TableOfContents ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#TableOfContents li {
  margin-bottom: 1rem;
}

#TableOfContents a {
  color: #e6d9f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

#TableOfContents a:hover {
  color: var(--colors-primary);
}

/* ========== TABLES ========== */
.table-container {
  background: var(--backgrounds-b);
  border: 3px solid var(--borders-a);
  border-radius: var(--site-radius);
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  color: #e6d9f5;
  background-color: transparent;
  font-family: 'Open Sans', sans-serif;
}

thead {
  background: var(--backgrounds-c);
}

th {
  padding: 1rem 0.75rem;
  text-align: left;
  font-family: var(--font-title-heading);
  font-weight: 600;
  color: #e6d9f5;
  border-bottom: 2px solid var(--borders-a);
}

td {
  padding: 0.875rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

tbody tr:hover {
  background: var(--backgrounds-c);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Ссылки в таблице */
table a {
  color: #e6d9f5;
  text-decoration: none;
  font-weight: 500;
}

table a:hover {
  color: var(--colors-primary);
  text-decoration: underline;
}

/* ========== FAQ ========== */
.faq-block {
  background: var(--backgrounds-b);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: var(--site-radius);
  border: 4px solid var(--borders-a);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.faq-heading {
  font-family: var(--font-title-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #e6d9f5;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.faq-item {
  background: var(--backgrounds-c);
  border: 3px solid var(--borders-a);
  border-radius: var(--site-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: #e6d9f5;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.faq-item h3 {
  font-family: var(--font-title-heading);
  font-size: 1.4rem;
  color: #e6d9f5;
  margin-bottom: 1rem;
}

.faq-item div {
  line-height: 1.7;
}

.faq-item:hover {
  background: var(--backgrounds-b);
  border-color: var(--colors-primary);
}

@media (max-width: 768px) {
  .prose table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    table-layout: fixed;
    border-collapse: collapse;
  }

  .prose thead,
  .prose tbody {
    display: table;
    width: 790px;
    table-layout: fixed;
  }

  .prose tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .prose th,
  .prose td {
    white-space: normal;
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
    text-align: left;
  }

  .prose thead th {
    background-color: var(--backgrounds-c);
    color: #e6d9f5;
  }

  .prose tbody tr {
    border-bottom: 1px solid var(--border-light);
  }
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
  padding: 10px 14px;
  font-size: 18px;
  background-color: var(--colors-primary);
  color: var(--white);
  border: 3px solid var(--colors-primary);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: rgba(255, 107, 53, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

