*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #e19ab1;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 40px;
}

.card {
  width: 100%;
  max-width: 430px;
  background: #fbe6ee;
  border-radius: 32px;
  padding: 24px 20px 28px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.card-header {
  text-align: center;
  margin-bottom: 20px;
}

.brand {
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.lang-switch {
  margin-top: 12px;
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  color: #555;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: #ff77a8;
  color: #fff;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7cab, #ffb0c9);
  box-shadow: 0 8px 18px rgba(255, 105, 180, 0.3);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    filter 0.15s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 105, 180, 0.4);
  filter: brightness(1.02);
}

.social-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.social-icon svg,
.social-icon img {
  width: 24px;
  height: 24px;
  display: block;
  background: none !important;
  background-color: transparent !important;
}

.social-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-title {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 14px;
  text-transform: uppercase;
}

.social-subtitle {
  font-size: 11px;
  text-transform: lowercase;
  opacity: 0.9;
}

/* YouTube logo styling */
.youtube-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.youtube-you {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
  line-height: 1;
}

.youtube-tube-box {
  background: #ff7cab;
  border-radius: 3px;
  padding: 2px 6px;
  display: inline-block;
}

.youtube-tube {
  font-size: 11px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

/* Instagram icon styling */
.instagram-icon svg {
  width: 24px;
  height: 24px;
}

/* TikTok icon styling */
.tiktok-icon svg {
  width: 20px;
  height: 24px;
}

@media (min-width: 900px) {
  .page {
    align-items: flex-start;
    justify-content: center;
  }

  .card {
    margin-top: 32px;
  }
}


