:root {
  --coral: #F26E76;
  --sage: #A3CB94;
}

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

body {
  min-height: 100dvh;
  background-color: #1a1210;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

.bg-photo {
  position: fixed;
  inset: 0;
  background: url("assets/bg.jpg") center / cover no-repeat;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 30%,
    rgba(0, 0, 0, 0.78) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: -1;
}

.content {
  min-height: 100dvh;
  max-width: 440px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 10px 30px rgba(0, 0, 0, 0.45);
  margin-bottom: 20px;
}

.brand {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--sage);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
}

.link-btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.link-btn:hover,
.link-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(242, 110, 118, 0.45);
}

.link-btn:active {
  transform: translateY(0);
}

.link-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 110, 118, 0.5);
}

.instagram-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
