/* Reset */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: Geneva, sans-serif;
  background-color: #0f131c;
  color: #e0e6ed;
  line-height: 1.4;
}

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

.hero > div:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px; /* Отступ перед подзаголовком */
}

.hero img {
  height: 60px;
  width: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Header - новое позиционирование для English */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  position: relative;
}

.logo { 
  font-size: 2rem; 
  font-weight: bold; 
  color: #a1ff3e; 
}

.niz { 
  color: #a1ff3e; 
}

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

.title-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.lang-switch {
  position: absolute;
  top: 0;
  right: 0;
  background: #1e2835;
  padding: 8px 16px;
  border-radius: 0 0 0 20px;
  font-size: 0.9rem;
}

.btn-pre {
  padding: 12px 24px;
  background-color: #8f42ff;
  border-radius: 20px;
  font-weight: 600;
}

section {
  margin-bottom: 24px;
}

/* Hero */
.hero {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3rem;
  color: #a1ff3e;
  margin-bottom: 0px;
}

.hero .subtitle {
  font-size: 1.1rem;
}

/* ... остальные стили остаются без изменений ... */

.highlight {
  display: inline-block;
  background-color: #8f42ff;
  color: #fff;
  margin-top: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.highlight:hover {
  background-color: #7a2fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(143, 66, 255, 0.5);
}

/* Эффект пульсации */
.highlight::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.highlight:hover::after {
  width: 300px;
  height: 300px;
}

/* Эффект градиента при наведении */
.highlight:hover {
  background: linear-gradient(90deg, #8f42ff, #b36bff);
}

/* Анимация текста */
.highlight a {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.highlight:hover a {
  transform: scale(1.05);
}

/* Grid and Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.card, .normal {
  background-color: #17202b;
  border-radius: 8px;
  padding: 14px;
}

.card h2, .normal h2 {
  margin-bottom: 16px;
  margin-top: 0px;
  font-size: 1.5rem;
  color: #a1ff3e;
}

.card ul, .normal ul {
  list-style: none;
  padding-left: 0;
}

.card ul li, .normal ul li {
  list-style: square inside;
  margin-top: 10px;
  margin-bottom: 8px;
}

/* Theme Colors */

.grey {
  background-color: #39493d;
  color: #ffffff;
}


.grey p {
  color: #ffffff;
}


.green {
  background-color: #a1ff3e;
  color: #0f131c;
}

.green h2 {
  color: #0f131c;
}

.green p {
  color: #0f131c;
}

.purple {
  background-color: #8833FF;
  color: #ffffff;
}

.purple h2 {
  color: #ffffff;
}

.purple p {
  color: #ffffff;
}

.dark-green {
  background-color: #2c392f;
}

.dark-green p {
  color: #ffffff;
}

/* Mission */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.mission .normal {
  padding: 24px;
  border-radius: 16px;
}

.mission h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #a1ff3e;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px 0;
  background-color: #17202b;
  border-radius: 16px;
  margin-top: 24px;
}

.scr {
  max-width: 100%;
  height: auto;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
  border-radius: 8px;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.left-part {
  text-align: right;
}

.right-part {
  text-align: left;
}

/* Современный вариант с фоном и тенью */
blockquote.modern {
  font-size: .7rem;
  padding: 15px;
  background: #2c392f;
  border-radius: 8px;
  position: relative;
}




/* Уменьшаем размер QR-кода */
.qr-image {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Блок с адресом и кнопкой */
.wallet-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.wallet-address input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background-color: #f0f0f0;
  color: #333;
  font-size: 0.9rem;
  word-break: break-all;
}

.copy-btn {
  background-color: #8f42ff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: #7a2fff;
}

/* Всплывающее уведомление */
.copy-alert {
  opacity: 0;
  pointer-events: none; /* Чтобы не перехватывал клики */
  margin-top: 10px;
  color: #0f131c;
  background-color: #a1ff3e;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
  transition: opacity 0.5s ease;
}

.copy-alert.show {
  opacity: 1;
  pointer-events: auto;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

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

.wallet-address input {
  text-align: center; /* Центрируем адрес внутри поля */
}
