:root {
  --bg-primary: #1a1f2e;
  --bg-card: linear-gradient(145deg, #3d4558 0%, #2a3142 50%, #1f2433 100%);
  --bg-card-hover: linear-gradient(145deg, #4a5568 0%, #3d4558 50%, #2a3142 100%);
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #888888;
  --border-color: #4a5568;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.4);
}

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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow);
  object-fit: cover;
  margin-bottom: 24px;
}

.headline {
  font-family: 'Pacifico', cursive;
  font-size: 32px;
  text-align: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 14px 48px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 28px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px 16px;
  text-decoration: none;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow), 0 0 20px rgba(212, 175, 55, 0.2);
}

.card-icon {
  font-size: 32px;
  position: relative;
  z-index: 1;
}

.card-icon img {
  width: 40px;
  height: 40px;
}

.card-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.card-icon-vk {
  width: 36px;
  height: 36px;
}

.socials {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link svg {
  width: 26px;
  height: 26px;
}

.social-telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.4);
}

.social-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.social-vk {
  background: linear-gradient(135deg, #5181B8 0%, #4A76A8 100%);
  box-shadow: 0 4px 15px rgba(81, 129, 184, 0.4);
}

.social-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contacts {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.contacts a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacts a:hover {
  color: var(--gold);
}

.location-icon {
  color: var(--gold);
}

@media (max-width: 380px) {
  .headline {
    font-size: 26px;
  }
  
  .cta-button {
    padding: 12px 36px;
    font-size: 16px;
  }
  
  .cards {
    gap: 10px;
  }
  
  .card {
    padding: 16px 12px;
  }
  
  .card-icon {
    font-size: 28px;
  }
  
  .card-text {
    font-size: 13px;
  }
  
  .socials {
    gap: 12px;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
  
  .contacts {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 500px;
  }
  
  .logo {
    width: 160px;
    height: 160px;
  }
  
  .headline {
    font-size: 38px;
  }
  
  .cta-button {
    font-size: 20px;
    padding: 16px 56px;
  }
  
  .cards {
    gap: 16px;
  }
  
  .card {
    padding: 24px 20px;
  }
  
  .card-icon {
    font-size: 36px;
  }
  
  .card-text {
    font-size: 15px;
  }
}
