/* Disable webkit tap highlight on mobile devices */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection for specific elements */
input, textarea, [contenteditable] {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

:root {
  --bg: #000;
  --card: rgba(10,10,10,0.98);
  --white: #fff;
  --gray: #b0b0b8;
  --border: #fff2;
  --shadow: 0 8px 32px 0 rgba(255,255,255,0.07);
  --radius: 2.2rem;
  --radius-sm: 1.2rem;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  z-index: 0;
  left: 0; top: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(ellipse 60% 40% at 8% 12%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 50% 38% at 92% 18%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 55% 28% at 12% 88%, #ff6a0099 0%, transparent 90%),
    radial-gradient(ellipse 38% 50% at 85% 95%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 40% 22% at 70% 60%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 22% 40% at 30% 80%, #ff6a0099 0%, transparent 90%);
  filter: blur(90px) hue-rotate(0deg);
  animation: main-bg-move 18s ease-in-out infinite alternate, main-bg-hue 24s linear infinite;
}

@keyframes main-bg-move {
  0% {
    background-position:
      8% 12%, 92% 18%, 12% 88%, 85% 95%, 70% 60%, 30% 80%;
  }
  100% {
    background-position:
      12% 18%, 88% 22%, 18% 92%, 80% 85%, 75% 65%, 25% 75%;
  }
}

@keyframes main-bg-hue {
  0% { filter: blur(90px) hue-rotate(0deg); }
  100% { filter: blur(90px) hue-rotate(360deg); }
}

body > * { position: relative; z-index: 1; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  gap: 1rem;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.back-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

.back-arrow {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  box-shadow: var(--shadow);
}

.language-btn {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 12px 20px;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition);
  font-size: 1.1rem;
  min-width: 60px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.language-btn.active {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 4px 16px 0 #fff2;
}

.language-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  flex: 1;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.content:hover {
  box-shadow: 0 16px 48px 0 #fff2, 0 8px 32px 0 #0004;
  border-color: #fff5;
}

.title {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 4px 64px #fff1, 0 1px 0 #fff2;
}

.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-content {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 400;
}

.highlight {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--white);
}

.warning {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.warning-title {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.warning-text {
  color: #fca5a5;
  font-size: 1rem;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list-item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
}

.list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
  font-size: 1.4rem;
}

.hidden {
  display: none;
}

.telegram-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.telegram-section .section-title {
  justify-content: center;
}

.telegram-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.telegram-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-radius: 50%;
}

.telegram-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.telegram-btn {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  font-size: 1.1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.telegram-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  .header {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    justify-content: space-between;
  }
  
  .content {
    padding: 1.5rem;
  }
  
  .title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-content {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .back-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .language-btn {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
  }
  
  .content {
    padding: 1rem;
  }
  
  .title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .back-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  
  .language-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 45px;
  }
  
  .section-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  
  .back-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    min-width: 120px;
  }
  
  .section-content {
    font-size: 0.9rem;
  }
} 
 
 
  --bg: #000;
  --card: rgba(10,10,10,0.98);
  --white: #fff;
  --gray: #b0b0b8;
  --border: #fff2;
  --shadow: 0 8px 32px 0 rgba(255,255,255,0.07);
  --radius: 2.2rem;
  --radius-sm: 1.2rem;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  z-index: 0;
  left: 0; top: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(ellipse 60% 40% at 8% 12%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 50% 38% at 92% 18%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 55% 28% at 12% 88%, #ff6a0099 0%, transparent 90%),
    radial-gradient(ellipse 38% 50% at 85% 95%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 40% 22% at 70% 60%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 22% 40% at 30% 80%, #ff6a0099 0%, transparent 90%);
  filter: blur(90px) hue-rotate(0deg);
  animation: main-bg-move 18s ease-in-out infinite alternate, main-bg-hue 24s linear infinite;
}

@keyframes main-bg-move {
  0% {
    background-position:
      8% 12%, 92% 18%, 12% 88%, 85% 95%, 70% 60%, 30% 80%;
  }
  100% {
    background-position:
      12% 18%, 88% 22%, 18% 92%, 80% 85%, 75% 65%, 25% 75%;
  }
}

@keyframes main-bg-hue {
  0% { filter: blur(90px) hue-rotate(0deg); }
  100% { filter: blur(90px) hue-rotate(360deg); }
}

body > * { position: relative; z-index: 1; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  gap: 1rem;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.back-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

.back-arrow {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  box-shadow: var(--shadow);
}

.language-btn {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 12px 20px;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition);
  font-size: 1.1rem;
  min-width: 60px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.language-btn.active {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 4px 16px 0 #fff2;
}

.language-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  flex: 1;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.content:hover {
  box-shadow: 0 16px 48px 0 #fff2, 0 8px 32px 0 #0004;
  border-color: #fff5;
}

.title {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 4px 64px #fff1, 0 1px 0 #fff2;
}

.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-content {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 400;
}

.highlight {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--white);
}

.warning {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.warning-title {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.warning-text {
  color: #fca5a5;
  font-size: 1rem;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list-item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
}

.list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
  font-size: 1.4rem;
}

.hidden {
  display: none;
}

.telegram-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.telegram-section .section-title {
  justify-content: center;
}

.telegram-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.telegram-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-radius: 50%;
}

.telegram-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.telegram-btn {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  font-size: 1.1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.telegram-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  .header {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    justify-content: space-between;
  }
  
  .content {
    padding: 1.5rem;
  }
  
  .title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-content {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .back-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .language-btn {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
  }
  
  .content {
    padding: 1rem;
  }
  
  .title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .back-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  
  .language-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 45px;
  }
  
  .section-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  
  .back-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    min-width: 120px;
  }
  
  .section-content {
    font-size: 0.9rem;
  }
} 
 
 
  --bg: #000;
  --card: rgba(10,10,10,0.98);
  --white: #fff;
  --gray: #b0b0b8;
  --border: #fff2;
  --shadow: 0 8px 32px 0 rgba(255,255,255,0.07);
  --radius: 2.2rem;
  --radius-sm: 1.2rem;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  z-index: 0;
  left: 0; top: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(ellipse 60% 40% at 8% 12%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 50% 38% at 92% 18%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 55% 28% at 12% 88%, #ff6a0099 0%, transparent 90%),
    radial-gradient(ellipse 38% 50% at 85% 95%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 40% 22% at 70% 60%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 22% 40% at 30% 80%, #ff6a0099 0%, transparent 90%);
  filter: blur(90px) hue-rotate(0deg);
  animation: main-bg-move 18s ease-in-out infinite alternate, main-bg-hue 24s linear infinite;
}

@keyframes main-bg-move {
  0% {
    background-position:
      8% 12%, 92% 18%, 12% 88%, 85% 95%, 70% 60%, 30% 80%;
  }
  100% {
    background-position:
      12% 18%, 88% 22%, 18% 92%, 80% 85%, 75% 65%, 25% 75%;
  }
}

@keyframes main-bg-hue {
  0% { filter: blur(90px) hue-rotate(0deg); }
  100% { filter: blur(90px) hue-rotate(360deg); }
}

body > * { position: relative; z-index: 1; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  gap: 1rem;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.back-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

.back-arrow {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  box-shadow: var(--shadow);
}

.language-btn {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 12px 20px;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition);
  font-size: 1.1rem;
  min-width: 60px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.language-btn.active {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 4px 16px 0 #fff2;
}

.language-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  flex: 1;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.content:hover {
  box-shadow: 0 16px 48px 0 #fff2, 0 8px 32px 0 #0004;
  border-color: #fff5;
}

.title {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 4px 64px #fff1, 0 1px 0 #fff2;
}

.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-content {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 400;
}

.highlight {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--white);
}

.warning {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.warning-title {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.warning-text {
  color: #fca5a5;
  font-size: 1rem;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list-item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
}

.list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
  font-size: 1.4rem;
}

.hidden {
  display: none;
}

.telegram-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.telegram-section .section-title {
  justify-content: center;
}

.telegram-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.telegram-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-radius: 50%;
}

.telegram-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.telegram-btn {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  font-size: 1.1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.telegram-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  .header {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    justify-content: space-between;
  }
  
  .content {
    padding: 1.5rem;
  }
  
  .title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-content {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .back-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .language-btn {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
  }
  
  .content {
    padding: 1rem;
  }
  
  .title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .back-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  
  .language-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 45px;
  }
  
  .section-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  
  .back-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    min-width: 120px;
  }
  
  .section-content {
    font-size: 0.9rem;
  }
} 
 
 
  --bg: #000;
  --card: rgba(10,10,10,0.98);
  --white: #fff;
  --gray: #b0b0b8;
  --border: #fff2;
  --shadow: 0 8px 32px 0 rgba(255,255,255,0.07);
  --radius: 2.2rem;
  --radius-sm: 1.2rem;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  z-index: 0;
  left: 0; top: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(ellipse 60% 40% at 8% 12%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 50% 38% at 92% 18%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 55% 28% at 12% 88%, #ff6a0099 0%, transparent 90%),
    radial-gradient(ellipse 38% 50% at 85% 95%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 40% 22% at 70% 60%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 22% 40% at 30% 80%, #ff6a0099 0%, transparent 90%);
  filter: blur(90px) hue-rotate(0deg);
  animation: main-bg-move 18s ease-in-out infinite alternate, main-bg-hue 24s linear infinite;
}

@keyframes main-bg-move {
  0% {
    background-position:
      8% 12%, 92% 18%, 12% 88%, 85% 95%, 70% 60%, 30% 80%;
  }
  100% {
    background-position:
      12% 18%, 88% 22%, 18% 92%, 80% 85%, 75% 65%, 25% 75%;
  }
}

@keyframes main-bg-hue {
  0% { filter: blur(90px) hue-rotate(0deg); }
  100% { filter: blur(90px) hue-rotate(360deg); }
}

body > * { position: relative; z-index: 1; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  gap: 1rem;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.back-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

.back-arrow {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  box-shadow: var(--shadow);
}

.language-btn {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 12px 20px;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition);
  font-size: 1.1rem;
  min-width: 60px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.language-btn.active {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 4px 16px 0 #fff2;
}

.language-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  flex: 1;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.content:hover {
  box-shadow: 0 16px 48px 0 #fff2, 0 8px 32px 0 #0004;
  border-color: #fff5;
}

.title {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 4px 64px #fff1, 0 1px 0 #fff2;
}

.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-content {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 400;
}

.highlight {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--white);
}

.warning {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.warning-title {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.warning-text {
  color: #fca5a5;
  font-size: 1rem;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list-item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
}

.list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
  font-size: 1.4rem;
}

.hidden {
  display: none;
}

.telegram-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.telegram-section .section-title {
  justify-content: center;
}

.telegram-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.telegram-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-radius: 50%;
}

.telegram-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.telegram-btn {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  font-size: 1.1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.telegram-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  .header {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    justify-content: space-between;
  }
  
  .content {
    padding: 1.5rem;
  }
  
  .title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-content {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .back-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .language-btn {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
  }
  
  .content {
    padding: 1rem;
  }
  
  .title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .back-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  
  .language-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 45px;
  }
  
  .section-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  
  .back-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    min-width: 120px;
  }
  
  .section-content {
    font-size: 0.9rem;
  }
} 
 
 
  --bg: #000;
  --card: rgba(10,10,10,0.98);
  --white: #fff;
  --gray: #b0b0b8;
  --border: #fff2;
  --shadow: 0 8px 32px 0 rgba(255,255,255,0.07);
  --radius: 2.2rem;
  --radius-sm: 1.2rem;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  z-index: 0;
  left: 0; top: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(ellipse 60% 40% at 8% 12%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 50% 38% at 92% 18%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 55% 28% at 12% 88%, #ff6a0099 0%, transparent 90%),
    radial-gradient(ellipse 38% 50% at 85% 95%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 40% 22% at 70% 60%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 22% 40% at 30% 80%, #ff6a0099 0%, transparent 90%);
  filter: blur(90px) hue-rotate(0deg);
  animation: main-bg-move 18s ease-in-out infinite alternate, main-bg-hue 24s linear infinite;
}

@keyframes main-bg-move {
  0% {
    background-position:
      8% 12%, 92% 18%, 12% 88%, 85% 95%, 70% 60%, 30% 80%;
  }
  100% {
    background-position:
      12% 18%, 88% 22%, 18% 92%, 80% 85%, 75% 65%, 25% 75%;
  }
}

@keyframes main-bg-hue {
  0% { filter: blur(90px) hue-rotate(0deg); }
  100% { filter: blur(90px) hue-rotate(360deg); }
}

body > * { position: relative; z-index: 1; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  gap: 1rem;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.back-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

.back-arrow {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  box-shadow: var(--shadow);
}

.language-btn {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 12px 20px;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition);
  font-size: 1.1rem;
  min-width: 60px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.language-btn.active {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 4px 16px 0 #fff2;
}

.language-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  flex: 1;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.content:hover {
  box-shadow: 0 16px 48px 0 #fff2, 0 8px 32px 0 #0004;
  border-color: #fff5;
}

.title {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 4px 64px #fff1, 0 1px 0 #fff2;
}

.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-content {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 400;
}

.highlight {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--white);
}

.warning {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.warning-title {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.warning-text {
  color: #fca5a5;
  font-size: 1rem;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list-item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
}

.list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
  font-size: 1.4rem;
}

.hidden {
  display: none;
}

.telegram-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.telegram-section .section-title {
  justify-content: center;
}

.telegram-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.telegram-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-radius: 50%;
}

.telegram-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.telegram-btn {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  font-size: 1.1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.telegram-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  .header {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    justify-content: space-between;
  }
  
  .content {
    padding: 1.5rem;
  }
  
  .title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-content {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .back-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .language-btn {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
  }
  
  .content {
    padding: 1rem;
  }
  
  .title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .back-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  
  .language-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 45px;
  }
  
  .section-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  
  .back-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    min-width: 120px;
  }
  
  .section-content {
    font-size: 0.9rem;
  }
} 
 
 
  --bg: #000;
  --card: rgba(10,10,10,0.98);
  --white: #fff;
  --gray: #b0b0b8;
  --border: #fff2;
  --shadow: 0 8px 32px 0 rgba(255,255,255,0.07);
  --radius: 2.2rem;
  --radius-sm: 1.2rem;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body::before {
  content: '';
  position: fixed;
  z-index: 0;
  left: 0; top: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(ellipse 60% 40% at 8% 12%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 50% 38% at 92% 18%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 55% 28% at 12% 88%, #ff6a0099 0%, transparent 90%),
    radial-gradient(ellipse 38% 50% at 85% 95%, #00ffb399 0%, transparent 90%),
    radial-gradient(ellipse 40% 22% at 70% 60%, #ffb30099 0%, transparent 90%),
    radial-gradient(ellipse 22% 40% at 30% 80%, #ff6a0099 0%, transparent 90%);
  filter: blur(90px) hue-rotate(0deg);
  animation: main-bg-move 18s ease-in-out infinite alternate, main-bg-hue 24s linear infinite;
}

@keyframes main-bg-move {
  0% {
    background-position:
      8% 12%, 92% 18%, 12% 88%, 85% 95%, 70% 60%, 30% 80%;
  }
  100% {
    background-position:
      12% 18%, 88% 22%, 18% 92%, 80% 85%, 75% 65%, 25% 75%;
  }
}

@keyframes main-bg-hue {
  0% { filter: blur(90px) hue-rotate(0deg); }
  100% { filter: blur(90px) hue-rotate(360deg); }
}

body > * { position: relative; z-index: 1; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  gap: 1rem;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.back-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

.back-arrow {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  box-shadow: var(--shadow);
}

.language-btn {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 12px 20px;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition);
  font-size: 1.1rem;
  min-width: 60px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.language-btn.active {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 4px 16px 0 #fff2;
}

.language-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  flex: 1;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.content:hover {
  box-shadow: 0 16px 48px 0 #fff2, 0 8px 32px 0 #0004;
  border-color: #fff5;
}

.title {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 4px 64px #fff1, 0 1px 0 #fff2;
}

.section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-content {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 400;
}

.highlight {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--white);
}

.warning {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.warning-title {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.warning-text {
  color: #fca5a5;
  font-size: 1rem;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list-item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
}

.list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
  font-size: 1.4rem;
}

.hidden {
  display: none;
}

.telegram-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.telegram-section .section-title {
  justify-content: center;
}

.telegram-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.telegram-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-radius: 50%;
}

.telegram-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.telegram-btn {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  font-size: 1.1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.telegram-btn:hover {
  background: #222;
  color: var(--white);
  box-shadow: 0 12px 32px 0 #fff2;
  transform: translateY(-2px) scale(1.04);
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  .header {
    flex-direction: row;
    gap: 1rem;
    text-align: center;
    justify-content: space-between;
  }
  
  .content {
    padding: 1.5rem;
  }
  
  .title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-content {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .back-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .language-btn {
    padding: 10px 16px;
    font-size: 1rem;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 12px;
  }
  
  .content {
    padding: 1rem;
  }
  
  .title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .back-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  
  .language-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 45px;
  }
  
  .section-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  
  .back-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    min-width: 120px;
  }
  
  .section-content {
    font-size: 0.9rem;
  }
} 
 
 
 
