:root {
  --bg: #fff8f5;
  --text: #181818;
  --muted: #666666;

  --facebook: #1877f2;
  --instagram: #e1306c;
  --tiktok: #000000;
  --email: #e74c3c;

  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Italianno', cursive;
  background:
    radial-gradient(circle at top, rgba(231, 76, 60, 0.08), transparent 35%),
    var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 20px;
}

.card {
  width: 100%;
  max-width: 460px;
  text-align: center;
  padding: 32px 28px;
  border-radius: 24px;
}

.logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-family: 'Alex Brush', cursive;
  font-size: clamp(2.5rem, 6vw, 3.2rem);
  line-height: 1.2;
  color: #2b2b2b;
}

.tagline {
  margin: 16px 0 28px;
  font-size: 1.15rem;
  color: var(--muted);
}

.icon-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Base icon button */
.icon-link {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

/* Hover effect */
.icon-link:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.15);
}

/* Platform colors */
.facebook {
  background: var(--facebook);
}

.instagram {
  background: var(--instagram);
}

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

.email {
  background: var(--email);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .page {
    padding-top: 48px;
  }

  .logo {
    width: 110px;
    height: 110px;
  }

  .icon-link {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}