/* Gina Conda luxury link hub palette */

:root {
  --page-bg: #0b0a0a;
  --page-bg-deep: #050505;
  --card-bg: rgba(21, 19, 18, 0.94);
  --surface: #1a1816;
  --surface-raised: #211e1b;
  --ivory: #f5efe6;
  --muted: #beb5aa;
  --subtle: #8f877d;
  --champagne: #c7a56a;
  --gold: #b89a62;
  --gold-soft: rgba(199, 165, 106, 0.22);
  --border: #3b352e;
  --spicy-blue: #00aff0;
  --spicy-blue-hover: #21baf3;
  --white: #ffffff;
  --black: #090909;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% -12%, rgba(199, 165, 106, 0.16), transparent 34%),
    radial-gradient(circle at 15% 30%, rgba(184, 154, 98, 0.06), transparent 27%),
    linear-gradient(160deg, var(--page-bg) 0%, var(--page-bg-deep) 100%);
}

a {
  color: inherit;
}

.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(199, 165, 106, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 165, 106, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(#000, transparent 82%);
}

.shell {
  width: min(100% - 24px, 640px);
  margin: auto;
  padding: 24px 0 30px;
}

.card {
  padding: 30px;
  border: 1px solid rgba(199, 165, 106, 0.58);
  border-radius: 26px;
  background: var(--card-bg);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  text-align: center;
}

.badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(199, 165, 106, 0.48);
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(199, 165, 106, 0.07);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.avatar {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 auto 17px;
  border: 2px solid var(--champagne);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.55),
    0 0 0 5px rgba(199, 165, 106, 0.08);
}

h1 {
  margin: 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.handle {
  margin: 9px 0 0;
  color: var(--champagne);
  font-weight: 750;
}

.bio {
  max-width: 470px;
  margin: 16px auto 25px;
  color: var(--muted);
  line-height: 1.6;
}

.featured {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 15px;
  align-items: center;
  margin: 26px 0 14px;
  padding: 12px;
  min-height: 118px;
  border: 1px solid rgba(199, 165, 106, 0.5);
  border-radius: 20px;
  color: var(--ivory);
  text-align: left;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(199, 165, 106, 0.12), transparent 70%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.featured:hover {
  transform: translateY(-2px);
  border-color: var(--champagne);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.28);
}

.featured img {
  width: 96px;
  height: 94px;
  border-radius: 13px;
  object-fit: cover;
}

.featured small {
  display: block;
  color: var(--champagne);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.featured strong {
  display: block;
  font-size: 18px;
}

.featured span span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.links {
  display: grid;
  gap: 12px;
}

.button {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 68px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 17px;
  color: var(--ivory);
  text-align: left;
  text-decoration: none;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: transform 0.17s ease, border-color 0.17s ease, background 0.17s ease, box-shadow 0.17s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 165, 106, 0.75);
  background: #201d1a;
  box-shadow: 0 11px 26px rgba(0, 0, 0, 0.28);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(199, 165, 106, 0.5);
  border-radius: 13px;
  color: var(--champagne);
  background: rgba(199, 165, 106, 0.08);
  font-weight: 950;
}

.copy strong {
  display: block;
  color: inherit;
  font-size: 15px;
}

.copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

/* First CTA: Chat with Gina */
.links .button:nth-child(1) {
  min-height: 78px;
  border-color: var(--champagne);
  background:
    linear-gradient(135deg, rgba(199, 165, 106, 0.14), transparent 68%),
    var(--surface-raised);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.links .button:nth-child(1):hover {
  border-color: #dfbf83;
  background:
    linear-gradient(135deg, rgba(199, 165, 106, 0.2), transparent 70%),
    #27221e;
}

.links .button:nth-child(1) .icon {
  border-color: var(--champagne);
  color: var(--black);
  background: var(--champagne);
}

.links .button:nth-child(1) .copy strong {
  font-size: 17px;
}

/* Second CTA: See Spicy Pics */
.links .button:nth-child(2) {
  min-height: 78px;
  border-color: var(--spicy-blue);
  color: var(--white);
  background: var(--spicy-blue);
  box-shadow: 0 13px 34px rgba(0, 175, 240, 0.2);
}

.links .button:nth-child(2):hover {
  border-color: var(--spicy-blue-hover);
  background: var(--spicy-blue-hover);
  box-shadow: 0 16px 38px rgba(0, 175, 240, 0.3);
}

.links .button:nth-child(2) .icon {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--spicy-blue);
  background: var(--white);
}

.links .button:nth-child(2) .copy strong {
  font-size: 17px;
}

.links .button:nth-child(2) .copy span {
  color: rgba(255, 255, 255, 0.84);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 25px 0 10px;
}

.social {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  background: var(--surface);
  transition: transform 0.17s ease, border-color 0.17s ease, color 0.17s ease;
}

.social:hover {
  transform: translateY(-2px);
  border-color: var(--champagne);
  color: var(--champagne);
}

.disclosure {
  max-width: 500px;
  margin: 22px auto 0;
  color: var(--subtle);
  font-size: 11px;
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 18px 4px 0;
  color: var(--subtle);
  font-size: 12px;
}

footer a:hover {
  color: var(--champagne);
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 18px, 640px);
    padding-top: 10px;
  }

  .card {
    padding: 23px 16px;
  }

  .featured {
    grid-template-columns: 78px 1fr auto;
  }

  .featured img {
    width: 78px;
    height: 86px;
  }

  .button {
    grid-template-columns: 42px 1fr auto;
    padding-inline: 13px;
  }

  .icon {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured,
  .button,
  .social {
    transition: none;
  }
}
