/* ==========================================================================
   РОМАН СИНИЦЫН — Персональная визитка AI-продюсера
   Дизайн: Modern Dark Glassmorphism, Apple Glass Elements, Neon Cyber
   ========================================================================== */

:root {
  --bg-main: #08090d;
  --bg-card: rgba(17, 19, 28, 0.72);
  --bg-card-hover: rgba(25, 29, 44, 0.9);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-card-hover: rgba(255, 255, 255, 0.22);
  
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-sub: #6b7280;
  
  --accent-purple: #8b5cf6;
  --accent-purple-glow: rgba(139, 92, 246, 0.35);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.35);
  --accent-amber: #f59e0b;
  --accent-amber-glow: rgba(245, 158, 11, 0.35);
  --accent-emerald: #10b981;
  --accent-gold: #fbbf24;
  
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-title: 'Outfit', 'Inter', sans-serif;
}

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

html, body {
  min-height: 100vh;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-base);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   Фоновые неоновые световые сферы (Ambient Glow)
   -------------------------------------------------------------------------- */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-purple-glow), transparent 70%);
  top: -120px;
  left: -120px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-cyan-glow), transparent 70%);
  top: 45%;
  right: -100px;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-amber-glow), transparent 70%);
  bottom: -80px;
  left: 20%;
  opacity: 0.25;
}

/* --------------------------------------------------------------------------
   Главная обертка страницы
   -------------------------------------------------------------------------- */
.page-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 28px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --------------------------------------------------------------------------
   Шапка (Header)
   -------------------------------------------------------------------------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.brand-name {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text-main);
  text-transform: uppercase;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.status-text {
  font-size: 12px;
  font-weight: 500;
  color: #34d399;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.2), rgba(139, 92, 246, 0.25));
  border: 1px solid rgba(34, 158, 217, 0.4);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.btn-primary-glow:hover {
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.35), rgba(139, 92, 246, 0.4));
  border-color: rgba(34, 158, 217, 0.7);
  box-shadow: 0 0 16px rgba(34, 158, 217, 0.35);
  transform: translateY(-1px);
}

.btn-icon {
  width: 15px;
  height: 15px;
}

/* --------------------------------------------------------------------------
   Основной контент
   -------------------------------------------------------------------------- */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* --------------------------------------------------------------------------
   Hero Профиль
   -------------------------------------------------------------------------- */
.hero-section {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px 42px;
  position: relative;
  overflow: visible; /* Чтобы стеклянная кнопка Play и подсказка могли выступать */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-cyan), var(--accent-amber), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Аватар с приближенным портретом Романа */
.avatar-container {
  position: relative;
  width: 156px;
  height: 156px;
  flex-shrink: 0;
}

.avatar-glow-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan), var(--accent-gold));
  opacity: 0.85;
  filter: blur(5px);
  animation: rotate-gradient 9s linear infinite;
  transition: all 0.4s ease;
}

.avatar-container.is-broadcasting .avatar-glow-ring {
  opacity: 1;
  filter: blur(8px);
  animation: rotate-gradient 3s linear infinite;
  box-shadow: 0 0 25px var(--accent-cyan);
}

@keyframes rotate-gradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.avatar-crop-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3.5px solid var(--bg-main);
  z-index: 2;
  background: #11131a;
}

/* ПРИБЛИЖЕНИЕ ФОТО: крупный план лица и взгляда Романа */
.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.65);
  transform-origin: center 15%;
  display: block;
  transition: transform 0.4s ease;
}

.avatar-container:hover .avatar-image {
  transform: scale(1.72);
}

.avatar-fallback {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  color: #fff;
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Стеклянная каплевидная кнопка Play в стиле Apple (Apple Glass Play Button)
   -------------------------------------------------------------------------- */
.apple-glass-play-btn {
  position: absolute;
  bottom: -4px;
  right: -6px;
  width: 50px;
  height: 50px;
  /* Каплевидная форма со скругленными краями */
  border-radius: 50% 50% 50% 16px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(6, 182, 212, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Стеклянный блик Apple */
.glass-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.apple-glass-play-btn:hover {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(6, 182, 212, 0.7);
}

.apple-glass-play-btn:active {
  transform: scale(0.95);
}

.play-icon, .pause-icon {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 2;
}

.play-icon {
  margin-left: 2px; /* Оптическая центровка треугольника Play */
}

.pause-icon {
  display: none;
}

/* Состояние при воспроизведении радио */
.avatar-container.is-broadcasting .apple-glass-play-btn {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.35), rgba(139, 92, 246, 0.35));
  border-color: #22d3ee;
  box-shadow: 0 0 22px rgba(6, 182, 212, 0.8);
  animation: live-pulse 2s infinite ease-in-out;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(6, 182, 212, 0.6); }
  50% { box-shadow: 0 0 28px rgba(6, 182, 212, 1); }
}

.avatar-container.is-broadcasting .play-icon {
  display: none;
}

.avatar-container.is-broadcasting .pause-icon {
  display: block;
}

/* Мини-эквалайзер внутри кнопки радио */
.mini-eq {
  display: none;
  position: absolute;
  bottom: 6px;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
  z-index: 3;
}

.mini-eq span {
  width: 2.5px;
  background: #22d3ee;
  border-radius: 1px;
  animation: eq-mini 0.8s infinite ease-in-out alternate;
}

.mini-eq span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.mini-eq span:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.mini-eq span:nth-child(3) { height: 60%; animation-delay: 0.2s; }

@keyframes eq-mini {
  0% { height: 20%; }
  100% { height: 100%; }
}

.avatar-container.is-broadcasting .mini-eq {
  display: flex;
}

/* Всплывающая плашка статуса радио */
.radio-tooltip {
  position: absolute;
  top: 102%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 5;
  margin-top: 6px;
}

.live-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-sub);
  transition: background-color 0.3s ease;
}

.avatar-container.is-broadcasting .radio-tooltip {
  border-color: rgba(6, 182, 212, 0.5);
  color: #67e8f9;
}

.avatar-container.is-broadcasting .live-indicator-dot {
  background-color: #22d3ee;
  box-shadow: 0 0 8px #22d3ee;
  animation: pulse-dot 1.2s infinite ease-in-out;
}

/* Текстовая зона Hero */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.tag-accent {
  background: rgba(139, 92, 246, 0.16);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.motto-box {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.motto-quote {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.motto-text {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-manifesto {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Блоки секций и заголовки
   -------------------------------------------------------------------------- */
.section-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px;
}

.section-subtitle {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.section-intro {
  font-size: 13.5px;
  color: var(--text-sub);
}

/* --------------------------------------------------------------------------
   Сетка карточек (Grid 3 и Grid 4)
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  gap: 22px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* --------------------------------------------------------------------------
   Баннеры на ширину карточки (Card Banners)
   -------------------------------------------------------------------------- */
.card-banner {
  position: relative;
  height: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
  overflow: hidden;
}

.banner-suno {
  background: linear-gradient(135deg, #2e0854, #4c1d95, #1e1b4b);
}

.banner-radio {
  background: linear-gradient(135deg, #083344, #0e7490, #1e293b);
}

.banner-health {
  background: linear-gradient(135deg, #451a03, #b45309, #1c1917);
}

.banner-music-project {
  background: linear-gradient(135deg, #311042, #701a75, #18181b);
  height: 90px;
}
.banner-mastersuno {
  background: linear-gradient(135deg, #172554, #1d4ed8, #0f172a);
  height: 90px;
}
.banner-romcom {
  background: linear-gradient(135deg, #3b0764, #9333ea, #1e1b4b);
  height: 90px;
}
.banner-sinicyn {
  background: linear-gradient(135deg, #134e4a, #0d9488, #0f172a);
  height: 90px;
}

/* --------------------------------------------------------------------------
   Обложки карточек виртуальных артистов
   -------------------------------------------------------------------------- */
.card-artist {
  border-radius: var(--radius-lg);
}

.artist-cover-wrap {
  position: relative;
  height: 180px;
  width: 100%;
  overflow: hidden;
  background: #11131a;
}

.artist-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.project-card:hover .artist-cover-img {
  transform: scale(1.08);
}

.artist-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(17, 19, 28, 0.85) 100%);
  pointer-events: none;
}

.artist-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  z-index: 2;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.25);
  color: #fef08a;
  border: 1px solid rgba(245, 158, 11, 0.45);
}


.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-tag {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 9px 11px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}

.banner-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-icon-badge svg {
  width: 17px;
  height: 17px;
}

.banner-icon-small {
  font-size: 18px;
}

.banner-waves {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 20px;
  opacity: 0.6;
}

.banner-waves span {
  width: 3px;
  background: #fff;
  border-radius: 2px;
}

.banner-waves span:nth-child(1) { height: 40%; }
.banner-waves span:nth-child(2) { height: 80%; }
.banner-waves span:nth-child(3) { height: 100%; }
.banner-waves span:nth-child(4) { height: 60%; }
.banner-waves span:nth-child(5) { height: 90%; }

/* Тело карточки */
.card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}

.card-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-sub);
}

.card-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.3);
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #67e8f9;
  border-color: rgba(6, 182, 212, 0.3);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.3);
}

.card-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Подвал карточки */
.card-footer {
  padding: 0 22px 20px;
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.card-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.btn-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #ddd6fe;
  border-color: rgba(139, 92, 246, 0.35);
}
.btn-purple:hover {
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 0 16px var(--accent-purple-glow);
}

.btn-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #cffafe;
  border-color: rgba(6, 182, 212, 0.35);
}
.btn-cyan:hover {
  background: var(--accent-cyan);
  color: #fff;
  box-shadow: 0 0 16px var(--accent-cyan-glow);
}

.btn-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fef3c7;
  border-color: rgba(245, 158, 11, 0.35);
}
.btn-amber:hover {
  background: var(--accent-amber);
  color: #fff;
  box-shadow: 0 0 16px var(--accent-amber-glow);
}

.project-card:hover .card-btn svg {
  transform: translateX(4px);
}

.card-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.link-action {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-action:hover {
  color: var(--accent-cyan);
}

.link-action.text-muted {
  color: var(--text-sub);
}
.link-action.text-muted:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   БЛОК СОЦИАЛЬНЫХ СЕТЕЙ: Квадратные кнопки-иконки
   -------------------------------------------------------------------------- */
.socials-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 32px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
}

.socials-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.socials-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.socials-desc {
  font-size: 13.5px;
  color: var(--text-sub);
}

.social-squares-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.social-square {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.square-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.square-icon-box svg {
  width: 26px;
  height: 26px;
}

.square-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.square-sub {
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.3;
}

.social-square.tg .square-icon-box {
  background: rgba(34, 158, 217, 0.15);
  color: #229ed9;
  border: 1px solid rgba(34, 158, 217, 0.3);
}
.social-square.tg:hover {
  border-color: #229ed9;
  box-shadow: 0 10px 25px rgba(34, 158, 217, 0.3);
  transform: translateY(-4px);
}

.social-square.yandex .square-icon-box {
  background: rgba(252, 63, 29, 0.15);
  color: #fc3f1d;
  border: 1px solid rgba(252, 63, 29, 0.3);
}
.social-square.yandex:hover {
  border-color: #fc3f1d;
  box-shadow: 0 10px 25px rgba(252, 63, 29, 0.3);
  transform: translateY(-4px);
}

.social-square.yt .square-icon-box {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.3);
}
.social-square.yt:hover {
  border-color: #ff0000;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
  transform: translateY(-4px);
}

.social-square.vk .square-icon-box {
  background: rgba(0, 119, 255, 0.15);
  color: #0077ff;
  border: 1px solid rgba(0, 119, 255, 0.3);
}
.social-square.vk:hover {
  border-color: #0077ff;
  box-shadow: 0 10px 25px rgba(0, 119, 255, 0.3);
  transform: translateY(-4px);
}

.social-square.blog .square-icon-box {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.social-square.blog:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.social-square.proza .square-icon-box {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.social-square.proza:hover {
  border-color: var(--accent-emerald);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.social-square:hover .square-icon-box {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Подвал (Footer)
   -------------------------------------------------------------------------- */
.footer-dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-sub);
}

.btn-copy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-copy-link svg {
  width: 14px;
  height: 14px;
}

/* --------------------------------------------------------------------------
   Адаптивность (Mobile, Tablet, Desktop)
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-squares-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 16px;
    gap: 20px;
  }

  .header {
    flex-wrap: wrap;
    gap: 12px;
    border-radius: var(--radius-md);
    padding: 14px 18px;
  }

  .status-badge {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 24px;
  }

  .avatar-container {
    margin: 0 auto;
    width: 136px;
    height: 136px;
  }

  .apple-glass-play-btn {
    width: 44px;
    height: 44px;
    bottom: -3px;
    right: -3px;
  }

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

  .role-tags {
    justify-content: center;
  }

  .hero-title {
    font-size: 30px;
  }

  .motto-text {
    font-size: 17px;
  }

  .hero-manifesto {
    font-size: 14px;
  }

  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .social-squares-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-dock {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 16px;
  }

  .footer-left {
    flex-direction: column;
    gap: 6px;
  }
}
