@charset "UTF-8";
@-webkit-keyframes fadeInBadge {
  to {
    opacity: 1;
  }
}
@keyframes fadeInBadge {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes pulseBadge {
  0%, 100% {
    -webkit-box-shadow: 0 0 5px rgba(116, 223, 128, 0.1);
            box-shadow: 0 0 5px rgba(116, 223, 128, 0.1);
    border-color: rgba(116, 223, 128, 0.3);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(116, 223, 128, 0.3);
            box-shadow: 0 0 20px rgba(116, 223, 128, 0.3);
    border-color: rgba(116, 223, 128, 0.6);
  }
}
@keyframes pulseBadge {
  0%, 100% {
    -webkit-box-shadow: 0 0 5px rgba(116, 223, 128, 0.1);
            box-shadow: 0 0 5px rgba(116, 223, 128, 0.1);
    border-color: rgba(116, 223, 128, 0.3);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(116, 223, 128, 0.3);
            box-shadow: 0 0 20px rgba(116, 223, 128, 0.3);
    border-color: rgba(116, 223, 128, 0.6);
  }
}
@-webkit-keyframes pulse-green {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
            box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
            box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
            box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
@keyframes pulse-green {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
            box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
            box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
            box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
@-webkit-keyframes ticker-move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes ticker-move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #1d1d1f;
  overflow-x: hidden;
}
body.loading {
  overflow: hidden;
  height: 100vh;
}

section {
  scroll-margin-top: 90px;
}

/* SVG Utilities */
.icon-svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.flag-svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  display: block;
}

header {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
}
header nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .logo {
  font-weight: 600;
  font-size: 18px !important;
  opacity: 1 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}
header .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
header .nav-link {
  color: #a1a1a6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
header .nav-link.active {
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

/* Mobile (как у вас) */
@media (max-width: 768px) {
  header .nav-links {
    display: none;
  }
}
.hero {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 140px 22px;
  min-height: 85vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #111 0%, #000 100%);
  z-index: 1;
}
.hero .hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(116, 223, 128, 0.35) 0%, rgba(0, 0, 0, 0) 65%);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  mix-blend-mode: screen;
  -webkit-filter: blur(40px);
          filter: blur(40px);
}
.hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
}
.hero #floating-flags-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}
.hero .floating-flag {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease, -webkit-transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: opacity 1.5s ease, -webkit-transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: opacity 1.5s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: opacity 1.5s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero .floating-flag svg {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  opacity: 0.8;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.hero .hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
}
.hero h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #b4b4b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 24px;
  margin-bottom: 32px;
  color: #86868b;
  font-weight: 400;
}
.hero .status-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: rgba(116, 223, 128, 0.08);
  border: 1px solid rgba(116, 223, 128, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  color: #74DF80;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-animation: fadeInBadge 1s ease forwards 2.5s, pulseBadge 3s infinite 3.5s;
          animation: fadeInBadge 1s ease forwards 2.5s, pulseBadge 3s infinite 3.5s;
}
.hero .status-indicator-dot {
  width: 8px;
  height: 8px;
  background: #74DF80;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px #74DF80;
          box-shadow: 0 0 10px #74DF80;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero .hero-glow {
    width: 400px;
    height: 400px;
    opacity: 0.5;
  }
}
/* FOOTER: чистая версия без дублей, иконки справа снизу */
.site-footer {
  background: #e5e5ea;
  padding: 40px 22px 30px;
  color: #6e6e73;
  font-size: 13px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d2d2d7;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-logo {
  font-weight: 600;
  font-size: 18px;
  color: #1d1d1f;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.support-platforms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.platform-card {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 10px;
}
.platform-card:hover {
  background: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.platform-card svg {
  width: 100%;
  height: 100%;
  fill: #1d1d1f;
  display: block;
}

.footer-bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* копирайт слева, иконки справа */
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-social {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* фикс: чтобы "круги" не ехали, а SVG не пропадали */
.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d1d1d6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s, -webkit-transform 0.1s;
  transition: background 0.3s, -webkit-transform 0.1s;
  transition: background 0.3s, transform 0.1s;
  transition: background 0.3s, transform 0.1s, -webkit-transform 0.1s;
  text-decoration: none;
  color: #fff; /* SVG красим currentColor ниже */
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
}

.social-link svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.social-link:hover {
  background: #0071e3;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 980px;
  text-decoration: none;
  font-size: 17px;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  font-weight: 500;
}

.btn-primary {
  background: #fff;
  color: #000;
}
.btn-primary:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 25px rgba(116, 223, 128, 0.4);
          box-shadow: 0 0 25px rgba(116, 223, 128, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.custom-select {
  position: relative;
  width: 170px;
  font-size: 15px;
}

.select-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.select-trigger:hover, .select-trigger.open {
  border: 1px solid #74DF80;
  background: #222;
}

.trigger-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  margin-bottom: auto;
  padding: 6px;
}
.trigger-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.trigger-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
}

.trigger-arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.select-trigger.open .trigger-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 999;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}
.select-options.open {
  opacity: 1;
  left: 1px;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.select-option {
  padding: 14px 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}
.select-option:last-child {
  border-bottom: none;
}
.select-option:hover {
  background: rgba(116, 223, 128, 0.15);
  color: #74DF80;
}
.select-option svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader .loader-content {
  width: 300px;
  text-align: center;
}
.preloader .loader-icon {
  font-size: 40px;
  margin-bottom: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.preloader .loader-status {
  color: #888;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
  height: 20px;
}
.preloader .loader-status.success {
  color: #74DF80;
  text-shadow: 0 0 15px rgba(116, 223, 128, 0.4);
}
.preloader .progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.preloader .progress-bar {
  width: 0%;
  height: 100%;
  background: #0071e3;
  border-radius: 4px;
  -webkit-transition: width 0.1s linear, background 0.3s;
  transition: width 0.1s linear, background 0.3s;
  -webkit-box-shadow: 0 0 10px rgba(0, 113, 227, 0.5);
          box-shadow: 0 0 10px rgba(0, 113, 227, 0.5);
}
.preloader .progress-bar.success {
  background: #74DF80;
  -webkit-box-shadow: 0 0 20px rgba(116, 223, 128, 0.8);
          box-shadow: 0 0 20px rgba(116, 223, 128, 0.8);
}

.ticker-section {
  padding: 20px 0;
  overflow: hidden;
  width: 100%;
  background: #000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ticker-section .ticker-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: ticker-move 40s linear infinite;
          animation: ticker-move 40s linear infinite;
  will-change: transform;
}
.ticker-section .ticker-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ticker-section .ticker-item {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  margin-right: 20px;
  white-space: nowrap;
  font-weight: 600;
  display: inline-block;
}
.ticker-section.ticker-dark {
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-section.ticker-dark .ticker-item.filled {
  background: #fff;
  color: #000;
}
.ticker-section.ticker-dark .ticker-item.outlined {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}
.ticker-section.ticker-light {
  background: #e5e5ea;
  color: #1d1d1f;
  border-top: 1px solid #d1d1d6;
}
.ticker-section.ticker-light .ticker-item.filled {
  background: #1d1d1f;
  color: #fff;
}
.ticker-section.ticker-light .ticker-item.outlined {
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #1d1d1f;
  background: transparent;
}

.keys-section {
  background: #000;
  padding: 80px 22px 80px 22px;
}

.keys-container {
  max-width: 900px;
  margin: 0 auto;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.keys-header {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.keys-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}

.key-item {
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.key-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.key-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.key-icon {
  color: #74DF80;
  width: 18px;
  height: 18px;
}

.key-flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.key-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.key-btn {
  background: transparent;
  border: none;
  color: #86868b;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.key-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.key-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Locked state */
.keys-container.locked .keys-list {
  -webkit-filter: blur(5px) grayscale(0.8);
          filter: blur(5px) grayscale(0.8);
  opacity: 0.5;
  pointer-events: none;
}

.keys-overlay {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.keys-container.locked .keys-overlay {
  opacity: 1;
  visibility: visible;
}

.btn-unlock {
  background: #74DF80;
  color: #000;
  border: none;
  padding: 12px 32px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 0 rgba(116, 223, 128, 0.7);
          box-shadow: 0 0 0 0 rgba(116, 223, 128, 0.7);
  -webkit-animation: pulse-green 1.5s infinite;
          animation: pulse-green 1.5s infinite;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.btn-unlock:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.install-section {
  background: #000;
  padding: 0 22px 80px 22px;
  color: #fff;
}

.install-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  position: relative;
  z-index: 10;
}

.install-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.install-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.custom-select {
  position: relative;
  width: 170px;
  font-size: 15px;
}

.select-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.select-trigger:hover, .select-trigger.open {
  border: 1px solid #74DF80;
  background: #222;
}

.trigger-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  margin-bottom: auto;
  padding: 6px;
}
.trigger-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.trigger-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
}

.trigger-arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.select-trigger.open .trigger-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 999;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}
.select-options.open {
  opacity: 1;
  left: 1px;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.select-option {
  padding: 14px 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}
.select-option:last-child {
  border-bottom: none;
}
.select-option:hover {
  background: rgba(116, 223, 128, 0.15);
  color: #74DF80;
}
.select-option svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.install-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}
.install-body.expanded {
  max-height: 1000px;
  opacity: 1;
  margin-top: 40px;
}

.app-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.app-selector::-webkit-scrollbar {
  height: 4px;
}
.app-selector::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.app-chip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.app-chip:hover {
  background: rgba(255, 255, 255, 0.1);
}
.app-chip.active {
  background: rgba(116, 223, 128, 0.15);
  border-color: #74DF80;
  color: #74DF80;
  -webkit-box-shadow: 0 0 15px rgba(116, 223, 128, 0.1);
          box-shadow: 0 0 15px rgba(116, 223, 128, 0.1);
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.step-card:hover {
  border-color: rgba(116, 223, 128, 0.5);
}

.step-icon {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #74DF80;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
.step-content p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.5;
}

.step-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.step-btn:hover {
  background: #74DF80;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .install-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .step-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq-section {
  background: #000;
  padding: 80px 22px;
}

.faq-section h2 {
  text-align: center;
  margin: 0 auto 10px;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-container {
  max-width: 900px;
  margin: 26px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

/* карточка */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  -webkit-transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.faq-item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.faq-item.active {
  border-color: rgba(74, 222, 128, 0.45);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 18px;
  cursor: pointer;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.faq-question span {
  color: #fff;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #4ade80;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  opacity: 0.9;
}

.faq-item.active .arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 1;
}

/* ответ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
}

.faq-content {
  padding: 0 18px 18px;
  color: #a1a1a6;
  font-size: 14px;
  line-height: 1.6;
}

/* support карточка */
.faq-item.support-item {
  border-color: rgba(74, 222, 128, 0.35);
  background: radial-gradient(circle at 20% 0%, rgba(74, 222, 128, 0.18), transparent 45%), rgba(255, 255, 255, 0.05);
}
.faq-item.support-item:hover {
  border-color: rgba(74, 222, 128, 0.7);
  -webkit-box-shadow: 0 0 18px rgba(74, 222, 128, 0.08), 0 18px 40px rgba(0, 0, 0, 0.55);
          box-shadow: 0 0 18px rgba(74, 222, 128, 0.08), 0 18px 40px rgba(0, 0, 0, 0.55);
}
.faq-item.support-item .faq-question span {
  color: #4ade80;
}

.support-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  background: #4ade80;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 14px;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
}
.support-btn:hover {
  background: #22c55e;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 16px;
  }
  .faq-section h2 {
    font-size: 30px;
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px;
}
.modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-content {
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  text-align: center;
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.hidden .modal-content {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(116, 223, 128, 0.4);
}

.modal-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.modal-content p {
  color: #a1a1a6;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.modal-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

/* Кнопка покупки в модалке */
.modal-buy-btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0088cc; /* Telegram Blue */
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 980px;
  text-decoration: none;
  font-size: 17px;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  font-weight: 500;
}
.modal-buy-btn:hover {
  background: #0099e6;
  -webkit-box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
          box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
}

/* Текст внизу модалки */
.modal-footer-text {
  margin-top: 16px;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  opacity: 0.5;
  color: #a1a1a6;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* включаем через .is-open */
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  max-width: 640px;
  margin: 8vh auto;
  padding: 22px 20px;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  -webkit-box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
          box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.modal__title {
  margin: 0 40px 6px 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.modal__subtitle {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.modal__steps {
  margin: 0;
  padding-left: 18px;
  text-align: left;
}
.modal__steps li {
  margin: 8px 0;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}
.modal__steps code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.modal__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 18px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modal__primary,
.modal__secondary {
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

.modal__primary {
  background: #22c55e;
  color: #06120a;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.modal__secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===== LOCATIONS SECTION ===== */
.locations-section {
  padding: 80px 20px;
  text-align: center;
}
.locations-section .locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Заголовок + кнопка + tooltip (под светлую секцию) */
/* header секции */
.locations-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.locations-header h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* кнопка (светлая секция) */
.refresh-ping-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.75);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background 0.18s ease, border-color 0.18s ease, -webkit-transform 0.18s ease;
  transition: background 0.18s ease, border-color 0.18s ease, -webkit-transform 0.18s ease;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, -webkit-transform 0.18s ease;
}
.refresh-ping-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
}
.refresh-ping-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.refresh-ping-btn.spinning {
  pointer-events: none;
  opacity: 0.85;
}
.refresh-ping-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.22);
  border-top-color: #22c55e;
  display: none;
}
.refresh-ping-btn.spinning::after {
  display: inline-block;
  -webkit-animation: pingSpin 0.8s linear infinite;
          animation: pingSpin 0.8s linear infinite;
}

@-webkit-keyframes pingSpin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes pingSpin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* дисклеймер: ограничиваем ширину и делаем читаемо */
.ping-disclaimer {
  margin: 8px 0 0;
  max-width: 900px; /* ключ: чтобы не растягивалось на всю ширину */
  padding: 0 10px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.55);
}

/* маленькая кнопка i — ВИДИМА на светлом фоне */
.ping-info-btn {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, -webkit-transform 0.18s ease;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, -webkit-transform 0.18s ease;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, -webkit-transform 0.18s ease;
}
.ping-info-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.75);
}
.ping-info-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Tooltip с дисклеймером */
.ping-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-4px);
          transform: translateX(-50%) translateY(-4px);
  width: min(640px, 100vw - 40px);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s ease;
}
.ping-tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(20, 20, 20, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* hover (десктоп) */
.locations-actions:hover .ping-tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

/* click (мобилка): добавляешь класс is-open на .locations-actions через JS */
.locations-actions.is-open .ping-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

/* УДАЛЕНО: .ping-disclaimer (если используешь tooltip — этот текстовый блок не нужен) */
/* ===== SERVER CARDS ===== */
.server-card {
  background: #151516;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  opacity: 0.5;
  -webkit-filter: grayscale(0.6);
          filter: grayscale(0.6);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.server-card:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.server-card.highlight-online {
  opacity: 1;
  -webkit-filter: none;
          filter: none;
  background: #1c1c1e;
  border-color: rgba(74, 222, 128, 0.5);
  -webkit-box-shadow: 0 4px 20px rgba(74, 222, 128, 0.05);
          box-shadow: 0 4px 20px rgba(74, 222, 128, 0.05);
}
.server-card.highlight-online:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 6px 25px rgba(74, 222, 128, 0.15);
          box-shadow: 0 6px 25px rgba(74, 222, 128, 0.15);
}
.server-card .flag-icon {
  width: 42px;
  height: 30px;
  min-width: 42px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.server-card .flag-icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.server-card .server-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.server-card .server-name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.server-card .server-location {
  font-size: 13px;
  color: #a1a1a6;
  margin-top: 2px;
}
.server-card .online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #4ade80;
  border-radius: 50%;
  margin-left: 8px;
  -webkit-box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
          box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  -webkit-animation: pulse-green 2s infinite;
          animation: pulse-green 2s infinite;
}
.server-card .soon-badge {
  background: #f59e0b;
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 8px;
  text-transform: uppercase;
}
.server-card .ping-badge {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #555;
  min-width: 60px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.server-card.highlight-online .ping-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ping-good {
  color: #4ade80 !important;
}

.ping-medium {
  color: #facc15 !important;
}

.ping-bad {
  color: #f87171 !important;
}

/* ===== Pricing / Доступные тарифы ===== */
.pricing-section {
  background: #000;
  padding: 80px 22px;
  color: #fff;
}

.pricing-container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 26px;
}
.pricing-header h2 {
  margin: 0 0 10px;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pricing-header .pricing-subtitle {
  margin: 0;
  font-size: 16px;
  color: #a1a1a6;
}

/* Сетка карточек */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* Карточка */
.pricing-card {
  position: relative;
  border-radius: 22px;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
          box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pricing-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
          box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
}

/* Верх карточки */
.pricing-card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.pricing-card-top h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.price {
  text-align: right;
}
.price .price-value {
  display: block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}
.price .price-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #a1a1a6;
}

/* Фичи */
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0 0 18px 0;
  display: grid;
  gap: 10px;
}
.pricing-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.35;
  color: #a1a1a6;
}
.pricing-features .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
  -webkit-box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.08);
          box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.08);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* Кнопки */
.pricing-btn {
  margin-top: auto;
  width: 100%;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background 0.18s ease, border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: background 0.18s ease, border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}
.pricing-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* Тёмная (для боковых карточек) */
.pricing-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.pricing-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Зелёная (для "Лучший выбор") */
.pricing-btn--primary {
  background: #4ade80;
  color: #000;
  border: 1px solid rgba(74, 222, 128, 0.5);
  -webkit-box-shadow: 0 12px 34px rgba(74, 222, 128, 0.14);
          box-shadow: 0 12px 34px rgba(74, 222, 128, 0.14);
}
.pricing-btn--primary:hover {
  background: #22c55e;
  -webkit-box-shadow: 0 16px 44px rgba(74, 222, 128, 0.22);
          box-shadow: 0 16px 44px rgba(74, 222, 128, 0.22);
}

/* Акцент карточки "Лучший выбор" */
.pricing-card--featured {
  border-color: rgba(74, 222, 128, 0.5);
}
.pricing-card--featured::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.3), rgba(0, 0, 0, 0) 65%);
  -webkit-filter: blur(38px);
          filter: blur(38px);
  pointer-events: none;
}
.pricing-card--featured:hover {
  border-color: rgba(74, 222, 128, 0.8);
}

/* Если у тебя "Лучший выбор" просто текстом внутри карточки */
.pricing-badge {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #4ade80;
  opacity: 0.95;
}

/* Адаптив */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-header h2 {
    font-size: 34px;
  }
}
/* ===== Locations card (PL/LV) ===== */
.pricing-card--locations .pricing-badge {
  color: #fff;
  opacity: 0.9;
}

.locations-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 4px 0 14px;
}

.flag-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
}

.flag {
  width: 26px;
  height: 18px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  display: inline-block;
}

/* Польша: белый/красный */
.flag--pl {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(50%, #dc2626));
  background: linear-gradient(to bottom, #ffffff 0 50%, #dc2626 50% 100%);
}

/* Латвия: бордовый/белый/бордовый */
.flag--lv {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #7c1c28), color-stop(42%, #ffffff), color-stop(58%, #7c1c28));
  background: linear-gradient(to bottom, #7c1c28 0 42%, #ffffff 42% 58%, #7c1c28 58% 100%);
}

.flag-name {
  font-size: 13px;
  font-weight: 700;
  color: #a1a1a6;
}