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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #2b2b2b;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background (cake photo) */
.bg {
  position: fixed;
  inset: 0;
  background: url("banner.jpg") center / cover no-repeat;
  filter: blur(6px);
  transform: scale(1.06);
  z-index: -3;
}

/* Soft overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 248, 245, 0.55);
  z-index: -2;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 42px 16px 24px;
}

.card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 26px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 22px 75px rgba(0,0,0,0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 170, 190, 0.25);
}

/* Logo */
.logo {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  margin-bottom: 12px;
}

.title {
  font-size: 1.9rem;
  font-weight: 850;
  letter-spacing: 0.2px;
}

.subtitle {
  margin-top: 6px;
  font-size: 1.03rem;
  opacity: 0.85;
}

.about {
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.45;
  opacity: 0.92;
  padding: 0 8px;
}

/* Sections */
.section {
  margin-top: 18px;
  text-align: left;
  background: rgba(255, 240, 235, 0.55);
  border: 1px solid rgba(255, 175, 195, 0.25);
  border-radius: 18px;
  padding: 14px;
}

.section-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
  color: #7a3b3b;
}

/* Social buttons */
.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 14px;
  background: white;
  color: #2b2b2b;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.10);
}

/* Featured cards */
.featured {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: #2b2b2b;
}

.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.11);
}

.featured-emoji {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd6e2, #ffe7c7);
}

.featured-title {
  font-weight: 850;
  font-size: 1rem;
}

.featured-sub {
  margin-top: 2px;
  font-size: 0.88rem;
  opacity: 0.75;
}

/* Main buttons */
.buttons {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: block;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 800;
  background: white;
  color: #2b2b2b;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 12px 26px rgba(0,0,0,0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.btn.primary {
  background: linear-gradient(135deg, #ffbdd2, #ffe1b6);
  border: none;
}

/* Footer */
.disclaimer {
  margin-top: 18px;
  font-size: 0.82rem;
  opacity: 0.68;
  line-height: 1.35;
}

.footer {
  text-align: center;
  padding: 18px 0 30px;
  font-size: 0.85rem;
  opacity: 0.6;
}
