:root {
  --dark-blue: #0a1a2e;
  --medium-blue: #1a3a5c;
  --light-blue: #2a5a8a;
  --black: #000000;
  --white: #ffffff;
  --red: #ff0000;
  --vk-blue: #0077ff;
  --tiktok-black: #000000;
  --youtube-red: #ff0000;
  --telegram-blue: #0088cc;
}

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

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--white);
  overflow-x: hidden;
}

body {
  background: var(--black);
}

/* Верхняя секция */
.top-section {
  background: var(--dark-blue);
  padding: 40px 60px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Навигация */
.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin-bottom: 20px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Заголовок */
.header-content {
  text-align: left;
  margin-top: 40px;
}

.studio-label {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.main-title {
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 1.2;
}

.bat-icon {
  font-size: 60px;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

/* Панели социальных сетей */
.social-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.social-panel {
  background: var(--medium-blue);
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 400px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.social-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.panel-label {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--white);
  margin: 0;
}

.panel-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.panel-illustration {
  width: 100%;
  height: 250px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: auto;
}

/* Цвета панелей */
.vk-panel {
  background: var(--vk-blue);
}

.tiktok-panel {
  background: var(--tiktok-black);
}

.youtube-panel {
  background: var(--youtube-red);
}

.telegram-panel {
  background: var(--telegram-blue);
}

/* Иллюстрации (заглушки - можно заменить на реальные изображения) */
.vk-illustration {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vk-illustration::before {
  content: "🎲";
  font-size: 80px;
  opacity: 0.6;
}

.tiktok-illustration {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-illustration::before {
  content: "🎬";
  font-size: 80px;
  opacity: 0.6;
}

.youtube-illustration {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-illustration::before {
  content: "📚";
  font-size: 80px;
  opacity: 0.6;
}

.telegram-illustration {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-illustration::before {
  content: "🦇";
  font-size: 80px;
  opacity: 0.6;
}

/* Средняя секция с описанием */
.description-section {
  background: var(--light-blue);
  padding: 80px 60px;
  text-align: center;
}

.description-text {
  font-size: 24px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hashtag {
  color: var(--red);
  font-weight: 600;
}

/* Нижняя секция */
.bottom-section {
  background: var(--black);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-bat-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-text {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
  position: relative;
}

.bat-character {
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="80" text-anchor="middle" dominant-baseline="middle">🦇</text></svg>') center/contain no-repeat;
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.8;
}

.map-section {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--medium-blue);
  position: relative;
}

.yandex-map-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.yandex-map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 12px;
}

.map-info-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.map-info-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.map-info-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.map-info-rating {
  font-size: 16px;
  color: #ff6b00;
  margin-bottom: 8px;
}

.map-info-hours,
.map-info-address,
.map-info-phone,
.map-info-website {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.map-info-phone {
  font-weight: 600;
}

.map-info-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.map-info-btn {
  background: var(--vk-blue);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  transition: background 0.3s ease;
}

.map-info-btn:hover {
  background: #0056b3;
}

.map-link-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: auto;
}

.map-link {
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.map-link:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* Адаптивность */
@media (max-width: 1200px) {
  .social-panels {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main-title {
    font-size: 56px;
  }
  
  .bottom-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-section {
    padding: 30px 20px 60px;
  }
  
  .main-title {
    font-size: 42px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .social-panels {
    grid-template-columns: 1fr;
  }
  
  .description-section {
    padding: 60px 30px;
  }
  
  .description-text {
    font-size: 18px;
  }
  
  .bottom-section {
    padding: 60px 30px;
  }
  
  .logo-text {
    font-size: 42px;
  }
  
  .map-section {
    height: 400px;
  }
  
  .map-info-card {
    max-width: 250px;
    padding: 16px;
    top: 10px;
    left: 10px;
  }
  
  .map-info-title {
    font-size: 16px;
  }
  
  .map-info-desc,
  .map-info-hours,
  .map-info-address,
  .map-info-phone,
  .map-info-website {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-nav {
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
  }
  
  .main-title {
    font-size: 32px;
  }
  
  .studio-label {
    font-size: 14px;
  }
  
  .description-text {
    font-size: 16px;
  }
  
  .logo-text {
    font-size: 32px;
  }
}
