* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* ===== PARTICLES.JS ФОН ===== */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Основной контейнер сайта */
.site-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* Делаем все основные блоки поверх частиц */
.header,
.hero,
.exchange-container,
.modern-features,
.tradingview-widget-container,
.tradingview-news {
  position: relative;
  z-index: 3;
}

/* Полупрозрачные блоки с размытием */
.exchange-form {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(10px);
}

.pairs-section {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(10px);
}

.feature-card {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px);
}

.exchange-info {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.pair-card {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
}

.tradingview-widget-container,
.tradingview-news {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

* {
  transition: color 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease;
}

/* Плавное переключение языков */
.lang-uk,
.lang-en {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.language-uk .lang-en,
.language-en .lang-uk {
  opacity: 0;
  transform: translateY(-5px);
}

.language-uk .lang-uk,
.language-en .lang-en {
  opacity: 1;
}

/* Анимация парения для карточек */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.pair-card {
  animation: float 8s ease-in-out infinite;
}

.pair-card:hover {
  animation-play-state: paused;
}

/* Пульсация для выбранных элементов */
@keyframes gentlePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(52, 152, 219, 0);
  }
}

.selected-currency.pulse {
  animation: gentlePulse 1s ease-out;
}

/* Плавное появление формы */
.exchange-form-container {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Улучшенные градиенты для кнопок */
.exchange-button,
.submit-btn,
.pair-badge {
  background-size: 200% 200%;
  transition: background-position 0.6s ease, transform 0.3s ease;
}

.exchange-button:hover,
.submit-btn:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
}

/* Микро-анимации для валют */
.currency-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.currency-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), transparent);
  transition: width 0.3s ease;
}

.currency-item:hover::before {
  width: 100%;
}

/* Плавное появление списка валют */
.currency-list.active .currency-item {
  animation: slideInUp 0.4s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.currency-list.active .currency-item:nth-child(1) {
  animation-delay: 0.05s;
}
.currency-list.active .currency-item:nth-child(2) {
  animation-delay: 0.1s;
}
.currency-list.active .currency-item:nth-child(3) {
  animation-delay: 0.15s;
}
.currency-list.active .currency-item:nth-child(4) {
  animation-delay: 0.2s;
}
.currency-list.active .currency-item:nth-child(5) {
  animation-delay: 0.25s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Плавные бордеры */
.form-field input,
.form-field textarea,
.currency-selector {
  border: 2px solid #e9ecef;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field input:focus,
.form-field textarea:focus,
.currency-selector:hover {
  border-color: #29ac56;
  border-width: 2px;
}

/* Легкий подъем при наведении */
.pair-card,
.feature,
.currency-selector {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pair-card:hover,
.feature:hover {
  transform: translateY(-5px);
}

/* Плавное появление формы */
.exchange-form-container {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Улучшенные градиенты для кнопок */
.exchange-button,
.submit-btn,
.pair-badge {
  background-size: 200% 200%;
  transition: background-position 0.6s ease, transform 0.3s ease;
}

.exchange-button:hover,
.submit-btn:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
}

/* Микро-анимации для валют */
.currency-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.currency-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), transparent);
  transition: width 0.3s ease;
}

.currency-item:hover::before {
  width: 100%;
}

/* Плавное появление списка валют */
.currency-list.active .currency-item {
  animation: slideInUp 0.4s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.currency-list.active .currency-item:nth-child(1) {
  animation-delay: 0.05s;
}
.currency-list.active .currency-item:nth-child(2) {
  animation-delay: 0.1s;
}
.currency-list.active .currency-item:nth-child(3) {
  animation-delay: 0.15s;
}
.currency-list.active .currency-item:nth-child(4) {
  animation-delay: 0.2s;
}
.currency-list.active .currency-item:nth-child(5) {
  animation-delay: 0.25s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Плавные бордеры */
.form-field input,
.form-field textarea,
.currency-selector {
  border: 2px solid #e9ecef;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field input:focus,
.form-field textarea:focus,
.currency-selector:hover {
  border-color: #29ac56;
  border-width: 2px;
}

/* Легкий подъем при наведении */
.pair-card,
.feature,
.currency-selector {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pair-card:hover,
.feature:hover {
  transform: translateY(-5px);
}

/* Альтернативный вариант - бордер только у контейнера */
.currency-selector {
  border: 1px solid #e9ecef !important;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input {
  border: none !important; /* ← убираем бордер у инпута */
  border-radius: 1px;
}

.currency-selector:focus-within {
  border-color: #29ac56 !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Header Styles */
.header {
  position: fixed;
  background-color: white;
  backdrop-filter: blur(20px);
  padding: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10000;
  width: 100%;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;
}

.logo {
  background-image: url("/src/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 150px; /* подберите под размер лого */
  height: 40px; /* подберите под размер лого */
  text-indent: -9999px; /* скрываем текст */
}

.logo2 {
  background-image: url("/src/logo2.png");
  background-size: cover;
  width: 200px; /* подберите под размер лого */
  height: 70px; /* подберите под размер лого */
  text-indent: -9999px; /* скрываем текст */
}
.logo::after {
  display: none; /* убираем подчеркивание */
}

.logo:hover::after {
  transform: scaleX(1);
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #5a5a5a;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;

  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover {
  color: #29ac56;
}

.nav-links a:hover::after {
  width: 100%;
}

.language-switcher {
  display: flex;
  gap: 8px;
  background: rgba(182, 182, 182, 0.1);
  padding: 4px;
  border-radius: 1px;
}

.lang-btn {
  padding: 8px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #2c3e50;
}

.lang-btn.active {
  background: #ffffff;
  color: #29ac56;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

/* Mobile Navigation */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 1px;
  transition: all 0.3s ease;
  z-index: 10001;
  position: relative;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: linear-gradient(135deg, #29ac56, #764ba2);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.nav-mobile.active {
  transform: translateX(0);
}

.mobile-links {
  list-style: none;
  padding: 40px 20px;
  flex: 1;
}

.mobile-links li {
  margin-bottom: 24px;
}

.mobile-links a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-links a:hover {
  color: #29ac56;
  padding-left: 10px;
}

.mobile-language {
  padding: 30px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-language .language-switcher {
  justify-content: center;
}

/* Responsive */
@media (max-width: 968px) {
  .nav-desktop {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .header-content {
    height: 70px;
  }

  .logo {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.6rem;
  }

  .mobile-links a {
    font-size: 1.2rem;
  }
}

/* Demo content */
.demo-content {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.demo-content h1 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.demo-content p {
  color: #666;
  line-height: 1.6;
}

/* Main Exchange Styles */
.exchange-container {
  max-width: 1200px;
  margin: 0 auto 40px;
  background: #d1d1d1;
  border-radius: 1px;
  border: 1px solid #29ac56;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.exchange-header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: rgb(0, 0, 0);
  padding: 30px;
  text-align: center;
}

.exchange-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.exchange-header p {
  opacity: 0.8;
  font-size: 1.1rem;
}

.exchange-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.exchange-form {
  padding: 40px;
  background: #f8f9fa;
  border-right: 1px solid #d1d1d1;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
}

.currency-selector {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  background: white;
  transition: all 0.3s;
  outline: none;
}

.search-input:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
  outline: none;
}

.search-input::placeholder {
  color: #7f8c8d;
  outline: none;
}

.currency-list {
  max-height: 300px;
  overflow-y: auto;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: white;
  margin-top: 5px;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.currency-list.active {
  display: block;
}

.currency-item {
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid #f1f2f6;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s;
}

.currency-item:hover {
  background-color: #f8f9fa;
}

.currency-item:last-child {
  border-bottom: none;
}

.currency-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  overflow: hidden;
  padding: 2px;
}

.currency-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.currency-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}
.currency-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  overflow: hidden;
  padding: 2px;
}

.currency-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.currency-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.currency-name {
  font-weight: 500;
  color: #2c3e50;
}

.currency-details {
  margin-left: auto;
  text-align: right;
}

.currency-symbol {
  font-weight: 600;
  color: #3498db;
}

.currency-network {
  font-size: 12px;
  color: #7f8c8d;
}

.exchange-arrow {
  text-align: center;
  margin: 30px 0;
  font-size: 24px;
  color: #7f8c8d;
}

.exchange-info {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  border-left: 4px solid #00b894;
}

.exchange-rate {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
}

.exchange-fee {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.exchange-button {
  width: 100%;
  background: linear-gradient(135deg, #00b894, #00a085);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.exchange-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
}

.pairs-section {
  padding: 40px;
  background: white;
}

.section-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f2f6;
}

.pairs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}

.pair-card {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pair-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #29ac56, #764ba2);
}

.pair-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #3498db;
}

.pair-card.active {
  border-color: #3498db;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.pair-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.pair-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pair-arrow {
  color: #7f8c8d;
  font-weight: bold;
  font-size: 18px;
}

.pair-badge {
  background: linear-gradient(135deg, #00b894, #00a085);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pair-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.pair-description {
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.pair-features {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #7f8c8d;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3498db;
}

/* Exchange Form Container */
.exchange-form-container {
  margin-top: 30px;
  padding: 25px;
  background: white;
  border-radius: 1px;
  border: 2px solid #e9ecef;
}

.exchange-form-container h3 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #3498db;
  outline: none;
}

.amount-input {
  position: relative;
}

.currency-symbol-display {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: #7f8c8d;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #00b894, #00a085);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
}

@media (max-width: 968px) {
  .exchange-content {
    grid-template-columns: 1fr;
  }

  .exchange-form {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }

  .pairs-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .exchange-header h1 {
    font-size: 2rem;
  }

  .exchange-form {
    padding: 25px;
  }

  .pairs-section {
    padding: 25px;
  }

  .pair-features {
    flex-direction: column;
    gap: 8px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

.currency-list::-webkit-scrollbar,
.pairs-grid::-webkit-scrollbar {
  width: 6px;
}

.currency-list::-webkit-scrollbar-track,
.pairs-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.currency-list::-webkit-scrollbar-thumb,
.pairs-grid::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.currency-list::-webkit-scrollbar-thumb:hover,
.pairs-grid::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Language specific */
.lang-en {
  display: none;
}

.language-en .lang-uk {
  display: none;
}

.language-en .lang-en {
  display: block;
}

/* ЗАМЕНИ ЭТИ СТРОКИ: */
.language-en .search-input[placeholder="Оберіть валюту..."] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.language-en .search-input[placeholder="Select currency..."] {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.language-uk .search-input[placeholder="Select currency..."] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.language-uk .search-input[placeholder="Оберіть валюту..."] {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

/* Скрываем английские лейблы в украинской версии */
.language-uk .lang-en {
  display: none;
}

/* Добавь это для правильного позиционирования */
.currency-selector {
  position: relative;
}

.currency-selector .search-input {
  width: 100%;
}

/* Hero Section Styles */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d01b3 0%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 16px 60px;
  min-height: 70vh;
  margin-top: 0;
}

/* Учитываем высоту фиксированной шапки */

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  color: white;
  text-align: center;
  padding: 0 16px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 0;
  padding-top: 0;
}

.hero-gradient {
  background: linear-gradient(45deg, #00b894, #00cec9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Планшеты (768px и выше) */
@media (min-width: 768px) {
  .hero {
    padding: 100px 32px 80px;
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(135deg, #0d01b3 0%, #000000 100%);
  }

  .hero-container {
    gap: 50px;
  }

  .hero-title {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 24px;
    width: 700px;
  }

  .hero-description {
    font-size: 1.15rem;
    margin-bottom: 36px;
  }

  .hero-stats {
    gap: 32px;
    margin-bottom: 36px;
  }
}

/* Ноутбуки (1024px и выше) */
@media (min-width: 1024px) {
  .hero {
    padding: 120px 40px 100px;
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(135deg, #0d01b3 0%, #000000 100%);
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hero-content {
    text-align: left;
    padding: 0;
  }

  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    margin-top: 0;
    padding-top: 0;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.2rem;
    margin-bottom: 40px;
  }

  .hero-stats {
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 40px;
  }
}

/* Большие экраны (1440px и выше) */
@media (min-width: 1440px) {
  .hero {
    padding: 140px 60px 120px;
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(135deg, #0d01b3 0%, #000000 100%);
  }

  .hero-title {
    font-size: 4rem;
  }
}

/* Очень маленькие устройства (менее 375px) */
@media (max-width: 374px) {
  :root {
    --header-height: 60px;
  }

  .hero {
    padding: 60px 12px 40px;
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(135deg, #0d01b3 0%, #000000 100%);
  }

  .hero-title {
    font-weight: 700;
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Поддержка landscape режима на мобильных */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: calc(120vh - var(--header-height));
    padding: 60px 16px 30px;
    background: linear-gradient(135deg, #0d01b3 0%, #000000 100%);
  }

  .hero-title {
    font-size: 2rem;
    margin-top: 20px;
  }

  .hero-container {
    gap: 20px;
  }
}

/* Учет высоты шапки при скролле */
html {
  scroll-padding-top: var(--header-height);
}

/* Дополнительные стили для безопасности */
body {
  padding-top: 0;
}

/* Если шапка имеет определенную высоту, можно задать явно */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
}

/* Дополнительный отступ для якорных ссылок */
@media (max-width: 768px) {
  html {
    scroll-padding-top: calc(var(--header-height) + 10px);
  }
}

.btn-primary,
.btn-secondary {
  padding: 16px 72px;
  border: none;
  border-radius: 1px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #00b894, #00cec9);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 184, 148, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 200px;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.btc-card {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.eth-card {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

.usdt-card {
  bottom: 20%;
  left: 33%;
  animation-delay: 4s;
}

.card-icon {
  font-size: 2rem;
}

.card-amount {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Background Animation */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.gradient-orbit {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: orbit 20s linear infinite;
}

.gradient-orbit:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-duration: 25s;
}

.gradient-orbit:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -250px;
  left: -250px;
  animation-duration: 30s;
}

.gradient-orbit:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 20%;
  animation-duration: 20s;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    margin-top: 50px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 300px;
  }

  .floating-card {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 15px 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

.modern-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 60px 0;
  padding: 0 20px;
}

.stat-card {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 30px 25px;
  color: white;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stat-card:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(2) .stat-icon {
  animation-delay: 0.5s;
}

.stat-card:nth-child(3) .stat-icon {
  animation-delay: 1s;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover .stat-glow {
  opacity: 1;
}

/* Анимации */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Анимация появления чисел */
.stat-number {
  animation: countUp 1.5s ease-out forwards;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .modern-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

.advantages-asymmetric {
  padding: 100px 0;
  background: #fff;
}

.advantages-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.advantages-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.advantages-text > p {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 50px;
  font-weight: 300;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.item-marker {
  font-size: 1.5rem;
  color: #667eea;
  margin-top: 2px;
}

.item-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.item-content strong {
  font-size: 1.3rem;
  color: #1a1a1a;
  font-weight: 600;
}

.item-content span {
  color: #666;
  font-size: 1rem;
}

.advantages-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-card {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 30px;
  width: 320px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.card-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.card-title {
  flex: 1;
}

.card-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.card-badge {
  background: #4caf50;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  display: inline-block;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
}
.simple-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0px;
  font-family: system-ui, -apple-system, sans-serif;
}

.content-block h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  text-align: left;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  text-align: left;
}

.features-list {
  margin-bottom: 50px;
}

.feature {
  margin-bottom: 30px;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.feature p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.stats-row {
  display: flex;
  gap: 60px;
  justify-content: flex-start;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.modern-features {
  padding: 50px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  margin-top: 150px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #00b894;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 123, 255, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: #00b894;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
}

.card-icon {
  font-size: 3.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover .card-icon {
  transform: scale(1.1);
}

.card-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  transition: color 0.3s ease;
}

.feature-card:hover .card-content p {
  color: #555;
}

.card-number {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1rem;
  font-weight: 700;
  color: #00b894;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.feature-card:hover .card-number {
  opacity: 0.7;
}

/* Анимации появления */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.card-icon {
  animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .card-icon {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .card-icon {
  animation-delay: 1s;
}

.feature-card:nth-child(4) .card-icon {
  animation-delay: 1.5s;
}

/* Переключение языков */
.lang-en {
  display: none;
}

.language-en .lang-en {
  display: block;
}

.language-en .lang-uk {
  display: none;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .modern-features {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .card-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .modern-features {
    padding: 60px 0;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .card-content h3 {
    font-size: 1.3rem;
  }
}

.tradingview-widget-container {
  max-width: 1150px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
}

@media (max-width: 1200px) {
  .tradingview-widget-container {
    width: 90%;
    border-radius: 0;
  }
}

.tradingview-widget-container__widget {
  margin-top: 50px;
}

.tradingview-news {
  max-width: 1200px;
  width: 100%;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Для мобильных */
@media (max-width: 1200px) {
  .tradingview-news {
    width: 90%;
    margin-top: 60px;
  }
}

/* Блок "Как это работает" */
.how-it-works {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 80px;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.step-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.step-icon {
  font-size: 1.8rem;
}

.step-content {
  max-width: 250px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-content p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.step-connector {
  position: absolute;
  top: 50px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #667eea, transparent);
  z-index: 1;
}

.step:last-child .step-connector {
  display: none;
}

/* Примечание процесса */
.process-note {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 16px;
  padding: 25px 30px;
  margin-top: 60px;
  backdrop-filter: blur(10px);
}

.note-icon {
  font-size: 2rem;
  margin-right: 20px;
}

.process-note p {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 500;
  margin: 0;
}

/* Адаптивность */
@media (max-width: 968px) {
  .steps-container {
    flex-direction: column;
    gap: 50px;
  }

  .step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .step-circle {
    margin-bottom: 0;
    margin-right: 25px;
    flex-shrink: 0;
  }

  .step-connector {
    display: none;
  }

  .step-content {
    max-width: none;
  }

  .process-note {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .note-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 60px 0;
  }

  .step-circle {
    width: 80px;
    height: 80px;
  }

  .step-icon {
    font-size: 1.5rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }
}

.floating-card {
  color: white;
}

/* Блок "Популярные валюты" */
.popular-currencies {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.03);
}

.currencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.currency-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.currency-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.currency-card:hover::before {
  transform: scaleX(1);
}

.currency-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.currency-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.currency-icon2 {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  color: white;
}

.currency-change {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.currency-change.positive {
  background: linear-gradient(135deg, #00b894, #00a085);
}

.currency-change.neutral {
  background: linear-gradient(135deg, #636e72, #2d3436);
}

.currency-change.negative {
  background: linear-gradient(135deg, #e17055, #d63031);
}

.currency-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.currency-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 20px;
}

.currency-chart {
  height: 40px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 10px;
  animation: chartGrow 1.5s ease-out;
}

@keyframes chartGrow {
  from {
    height: 0%;
  }
  to {
    height: var(--chart-height);
  }
}

/* Примечание о курсах */
.currencies-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  border-radius: 16px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.currencies-note p {
  font-size: 1rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
  .currencies-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .currency-card {
    padding: 25px 20px;
  }

  .currency-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .currency-price {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .popular-currencies {
    padding: 60px 0;
  }

  .currencies-grid {
    grid-template-columns: 1fr;
  }
}

/* Футер */
.footer {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 300px;
}

/* Кнопка Telegram */
.telegram-buttons {
  margin-top: 20px;
}

.telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #29ac56, #29ac56);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.telegram-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #29ac56, #29ac56);
}

.telegram-icon {
  font-size: 1.2rem;
}

/* Навигация футера */
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #667eea;
}

/* Контакты */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: white;
  margin-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Нижняя часть футера */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-links-bottom {
  display: flex;
  gap: 25px;
}

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Адаптивность */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .telegram-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-description {
    display: none;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo {
    font-size: 1.8rem;
  }
}

/* SEO текстовый блок */
.seo-content {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.text-column h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 30px 0 15px;
  line-height: 1.3;
}

.text-column h3:first-child {
  margin-top: 0;
}

.text-column p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.text-column ul {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  padding-left: 20px;
}

.text-column li {
  margin-bottom: 8px;
  position: relative;
}

.text-column li::before {
  content: "•";
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: -15px;
}

/* CTA блок */
.cta-block {
  border: 1px solid rgba(47, 209, 55, 0.2);
  border-radius: 1px;
  padding: 40px;
  text-align: center;
  backdrop-filter: brgba(102, 234, 120, 0.2);
}

.cta-block h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.cta-block p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block .btn-primary {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* Адаптивность */
@media (max-width: 968px) {
  .text-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .seo-text h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .cta-block {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .seo-content {
    padding: 50px 0;
  }

  .seo-text h2 {
    font-size: 1.6rem;
  }

  .text-column h3 {
    font-size: 1.3rem;
  }

  .cta-block {
    padding: 25px 20px;
  }
}
/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #0d01b3 0%, #000000 100%);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  z-index: 3;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Mission Section */
.company-mission {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mission-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.mission-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Stats Section */
.company-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Technology Stack */
.technology-stack {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

.technology-stack h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #667eea;
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.tech-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.tech-card ul {
  list-style: none;
  padding: 0;
}

.tech-card li {
  padding: 8px 0;
  color: #666;
  border-bottom: 1px solid #f1f2f6;
}

.tech-card li:last-child {
  border-bottom: none;
}

/* Compliance Section */
.compliance-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.compliance-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.compliance-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.compliance-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.compliance-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.compliance-feature {
  font-size: 1.1rem;
  font-weight: 500;
}

.compliance-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Roadmap Section */
.roadmap-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

.roadmap-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.roadmap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #667eea, #764ba2);
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.roadmap-year {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.roadmap-content {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.roadmap-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.roadmap-content p {
  color: #666;
  line-height: 1.5;
}

/* Language Support */
.lang-en {
  display: none;
}

.language-en .lang-en {
  display: block;
}

.language-en .lang-uk {
  display: none;
}

/* Responsive Design */
@media (max-width: 968px) {
  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .compliance-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compliance-badges {
    flex-direction: row;
    justify-content: center;
  }

  .roadmap::before {
    left: 20px;
  }

  .roadmap-item {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
  }

  .mission-grid,
  .stats-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .roadmap::before {
    display: none;
  }

  .roadmap-item {
    flex-direction: column;
    text-align: center;
  }
}

/* Animation for counters */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  animation: countUp 1s ease-out forwards;
}

/* Стили для многоязычной навигации */
.nav-link span,
.footer-links span {
  display: none;
}

.nav-link .lang-uk,
.footer-links .lang-uk {
  display: inline;
}

.language-en .nav-link .lang-uk,
.language-en .footer-links .lang-uk {
  display: none;
}

.language-en .nav-link .lang-en,
.language-en .footer-links .lang-en {
  display: inline;
}

/* Preloader Styles */
.preloader {
  position: fixed; /* вместо absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* 100% высоты viewport */
  background: #0a0f1c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  overflow: hidden;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  position: relative;
  z-index: 10002;
}

/* Orbital Loader */
.orbital-loader {
  position: relative;
  width: 120px;
  height: 120px;
}

.orbit-ring {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: orbitSpin 3s linear infinite;
}

.ring-1 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 2px solid #29ac56;
  animation-duration: 2s;
}

.ring-2 {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-right: 2px solid #2ecc71;
  animation-duration: 1.5s;
  animation-direction: reverse;
}

.ring-3 {
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border-bottom: 2px solid #27ae60;
  animation-duration: 1s;
}

.central-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #29ac56;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(41, 172, 86, 0.6);
}

/* Particles Background */
.particles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #29ac56;
  border-radius: 50%;
  animation: floatParticle 4s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 1.5s;
}

.particle:nth-child(5) {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
}

.particle:nth-child(6) {
  top: 40%;
  left: 50%;
  animation-delay: 2.5s;
}

/* Animations */
@keyframes orbitSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(41, 172, 86, 0.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
    box-shadow: 0 0 30px rgba(41, 172, 86, 0.8);
  }
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .orbital-loader {
    width: 80px;
    height: 80px;
  }

  .ring-2 {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .ring-3 {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .central-dot {
    width: 8px;
    height: 8px;
  }
}

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
  .preloader {
    height: -webkit-fill-available; /* Для iOS */
    min-height: -webkit-fill-available;
  }
}

/* Стили для нового дизайна формы */
.currency-lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.currency-column {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.column-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f2f6;
}

.currency-list-open {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.currency-list-open .currency-item {
  padding: 12px 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8f9fa;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.currency-list-open .currency-item:hover {
  background: #e9ecef;
  border-color: #29ac56;
  transform: translateY(-2px);
}

.currency-list-open .currency-item.selected {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-color: #29ac56;
  box-shadow: 0 4px 12px rgba(41, 172, 86, 0.2);
}

.currency-list-open .currency-item .currency-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.currency-list-open .currency-item .currency-icon {
  width: 28px;
  height: 28px;
  font-size: 11px;
  flex-shrink: 0;
}

.currency-info {
  flex: 1;
}

.currency-list-open .currency-item .currency-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c3e50;
}

.currency-list-open .currency-item .currency-network {
  font-size: 0.75rem;
  color: #7f8c8d;
}

.currency-list-open .currency-item .currency-symbol {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3498db;
}

/* Стили для выбранных валют */
.selected-currencies-display {
  background: white;
  border: 2px solid #29ac56;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  display: none;
}

.selected-currencies-display.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.selected-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.selected-currency {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  min-width: 200px;
}

.selected-currency .currency-logo,
.selected-currency .currency-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.currency-arrow {
  font-size: 24px;
  color: #29ac56;
  font-weight: bold;
}

/* Адаптивность */
@media (max-width: 968px) {
  .currency-lists-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .currency-column {
    height: 350px;
  }

  .selected-pair {
    flex-direction: column;
    gap: 10px;
  }

  .currency-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .currency-column {
    padding: 15px;
    height: 300px;
  }

  .currency-list-open .currency-item {
    padding: 10px 12px;
  }
}

/* Стили для сообщения "нет результатов" */
.no-results-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.currency-list-open {
  position: relative;
}

/* Стили для независимых фильтров */
.filters-group {
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 12px;
}

.filter-label {
  font-weight: 600;
  margin-right: 10px;
  color: #2c3e50;
  font-size: 14px;
}

.filters-group .filter-btn {
  margin: 0 5px 5px 0;
}

/* ===== НЕЗАВИСИМЫЕ ФИЛЬТРЫ НАД СПИСКАМИ ===== */
.filters-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.filters-group {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 0;
}

.filters-group-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f2f6;
}

.filter-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
  margin-right: 10px;
  white-space: nowrap;
}

.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 8px 16px;
  border: 2px solid #e9ecef;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  color: #7f8c8d;
}

.filter-btn:hover {
  border-color: #29ac56;
  color: #29ac56;
}

.filter-btn.active {
  background: #29ac56;
  border-color: #29ac56;
  color: white;
}

/* Адаптивность для фильтров */
@media (max-width: 968px) {
  .filters-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .filters-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .filters-group {
    padding: 12px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .filter-label {
    font-size: 13px;
  }
}
