/* ===== ТЕМНАЯ ТЕМА С УЛУЧШЕННЫМИ АНИМАЦИЯМИ ===== */

/* ЦВЕТОВАЯ СХЕМА: черный с золотыми акцентами */
:root {
  --color-gold: #ffd700;
  --color-gold-light: #ffed4e;
  --color-gold-dark: #d4af37;
  --color-gold-transparent: rgba(255, 215, 0, 0.15);
  --color-black: #000000;
  --color-black-light: #0a0a0a;
  --color-black-lighter: #1a1a1a;
  --color-black-card: #151515;
  --color-gray-dark: #222222;
  --color-gray: #444444;
  --color-gray-light: #666666;
  --color-white: #ffffff;
  --color-offwhite: #f0f0f0;
  --color-transparent: rgba(255, 255, 255, 0.05);

  /* Цвета соцсетей */
  --color-tiktok: linear-gradient(
    135deg,
    #000000 0%,
    #25f4ee 50%,
    #fe2c55 100%
  );
  --color-instagram: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  --color-telegram: linear-gradient(135deg, #0088cc 0%, #2aabee 100%);
  --color-youtube: linear-gradient(135deg, #ff0000 0%, #ff4d4d 100%);

  --primary-gradient: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  --gold-glow: 0 0 20px rgba(255, 215, 0, 0.4);
  --gold-glow-strong: 0 0 40px rgba(255, 215, 0, 0.6);
  --shadow-subtle: 0 4px 25px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.7);
  --border-radius: 18px;
  --border-radius-sm: 10px;
  --border-radius-full: 50px;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(145deg, #000000, #0a0a0a);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(145deg, #050505, #0f0f0f);
  color: var(--color-white);
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-gray-dark);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 215, 0, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 215, 0, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero__avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  overflow: hidden;
  background: var(--color-black-lighter);
  box-shadow:
    var(--gold-glow-strong),
    inset 0 0 30px rgba(255, 215, 0, 0.3);
  position: relative;
  animation: goldPulse 4s ease-in-out infinite;
}

.hero__avatar::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: var(--primary-gradient);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.6;
}

.hero__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
}

.hero__info {
  margin-bottom: var(--spacing-lg);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.hero__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.6);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 215, 0, 0.15);
  backdrop-filter: blur(10px);
}

.hero__socials {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.hero__social-link {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero__social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__social-link:nth-child(1)::before {
  background: var(--color-tiktok);
}
.hero__social-link:nth-child(2)::before {
  background: var(--color-instagram);
}
.hero__social-link:nth-child(3)::before {
  background: var(--color-telegram);
}
.hero__social-link:nth-child(4)::before {
  background: var(--color-youtube);
}

.hero__social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
  border-color: var(--color-gold);
}

.hero__social-link:hover::before {
  opacity: 0.4;
}

.hero__social-link svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.hero__social-link:nth-child(1) svg {
  fill: #25f4ee;
}
.hero__social-link:nth-child(2) svg {
  fill: #e1306c;
}
.hero__social-link:nth-child(3) svg {
  fill: #0088cc;
}
.hero__social-link:nth-child(4) svg {
  fill: #ff0000;
}

/* ===== MAIN CONTENT ===== */
.main {
  padding: var(--spacing-xxl) 0;
  flex: 1;
  background: linear-gradient(145deg, #000000, #0a0a0a);
  position: relative;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold) 20%,
    var(--color-gold) 80%,
    transparent 100%
  );
  opacity: 0.3;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ===== SOCIALS GRID ===== */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

/* ===== ИСПРАВЛЕННЫЕ КАРТОЧКИ С ПЛАВНОЙ АНИМАЦИЕЙ ===== */
.social-card {
  background: var(--color-black-card);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  text-decoration: none;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Светящаяся рамка */
.social-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(10px);
}

/* Фоновый градиент */
.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Цветовые акценты для карточек */
.social-card[data-social="tiktok"] {
  border-color: rgba(37, 244, 238, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(37, 244, 238, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-card[data-social="tiktok"]::after {
  background: var(--color-tiktok);
}

.social-card[data-social="tiktok"]:hover {
  border-color: #25f4ee;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(37, 244, 238, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.social-card[data-social="tiktok"]:hover::before {
  opacity: 0.8;
  background: var(--color-tiktok);
}

.social-card[data-social="instagram"] {
  border-color: rgba(225, 48, 108, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(225, 48, 108, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-card[data-social="instagram"]::after {
  background: var(--color-instagram);
}

.social-card[data-social="instagram"]:hover {
  border-color: #e1306c;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(225, 48, 108, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.social-card[data-social="instagram"]:hover::before {
  opacity: 0.8;
  background: var(--color-instagram);
}

.social-card[data-social="telegram"] {
  border-color: rgba(0, 136, 204, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 136, 204, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-card[data-social="telegram"]::after {
  background: var(--color-telegram);
}

.social-card[data-social="telegram"]:hover {
  border-color: #0088cc;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 136, 204, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.social-card[data-social="telegram"]:hover::before {
  opacity: 0.8;
  background: var(--color-telegram);
}

.social-card[data-social="youtube"] {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-card[data-social="youtube"]::after {
  background: var(--color-youtube);
}

.social-card[data-social="youtube"]:hover {
  border-color: #ff0000;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.social-card[data-social="youtube"]:hover::before {
  opacity: 0.8;
  background: var(--color-youtube);
}

.social-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-width: 2px;
}

.social-card:hover::before {
  opacity: 0.8;
}

/* Иконка в карточке - БЕЗ ПОВОРОТОВ */
.social-card__icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.social-card__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.social-card[data-social="tiktok"] .social-card__icon::before {
  background: var(--color-tiktok);
}

.social-card[data-social="instagram"] .social-card__icon::before {
  background: var(--color-instagram);
}

.social-card[data-social="telegram"] .social-card__icon::before {
  background: var(--color-telegram);
}

.social-card[data-social="youtube"] .social-card__icon::before {
  background: var(--color-youtube);
}

.social-card__icon svg {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Белые иконки */
.social-card .social-card__icon svg {
  fill: #ffffff;
}

/* УБРАН ПОВОРОТ ИКОНОК - только плавное увеличение */
.social-card:hover .social-card__icon {
  transform: scale(1.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.social-card:hover .social-card__icon::before {
  opacity: 0.5;
}

/* Текст в карточке */
.social-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.social-card__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card__hint {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-top: auto;
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(145deg, #111111, #1a1a1a);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  text-align: center;
  margin-top: var(--spacing-xl);
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow:
    var(--shadow-elevated),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards 0.4s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
  animation: subtleGlow 8s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 215, 0, 0.4);
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 30px;
  border: 2px dashed rgba(255, 215, 0, 0.4);
  margin: 0;
}

.cta-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.2);
}

.cta-image__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  z-index: 2;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.cta-image__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  transition: filter 0.3s ease;
}

.cta-image:hover .cta-image__photo {
  filter: brightness(1) contrast(1.2);
}

.cta-image__caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #fff;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(145deg, #050505, #0f0f0f);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  border-top: 1px solid var(--color-gray-dark);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold) 30%,
    var(--color-gold) 70%,
    transparent 100%
  );
  opacity: 0.4;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__brand {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.footer__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.footer__copyright {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.5px;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldPulse {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(255, 215, 0, 0.4),
      inset 0 0 20px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow:
      0 0 40px rgba(255, 215, 0, 0.6),
      inset 0 0 30px rgba(255, 215, 0, 0.3);
  }
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes subtleGlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.hero__avatar {
  animation: goldPulse 4s ease-in-out infinite;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (min-width: 768px) {
  @keyframes bounceMobile {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
}

@media (max-width: 992px) {
  .hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
  }

  .main {
    padding: var(--spacing-xl) 0;
  }

  .socials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xs: 0.375rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
  }

  .hero__avatar {
    width: 140px;
    height: 140px;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__social-link {
    width: 44px;
    height: 44px;
  }

  .hero__social-link svg {
    width: 20px;
    height: 20px;
  }

  .social-card {
    padding: var(--spacing-md);
  }

  .social-card__icon {
    width: 80px;
    height: 80px;
  }

  .social-card__icon svg {
    width: 36px;
    height: 36px;
  }

  .cta-section {
    padding: var(--spacing-lg);
  }

  .cta-subtitle {
    font-size: 1.3rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .hero__avatar {
    width: 120px;
    height: 120px;
  }

  .hero__socials {
    gap: var(--spacing-sm);
  }

  .socials-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .social-card__icon {
    width: 70px;
    height: 70px;
  }

  .social-card__icon svg {
    width: 32px;
    height: 32px;
  }

  .cta-section {
    padding: var(--spacing-md);
  }

  .cta-subtitle {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
  }

  .cta-image__badge {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    top: 15px;
  }

  .cta-image__caption {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--color-black);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 6px;
  border: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
}
