/* ===== Slab Planet — Luxury Link Page ===== */

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

:root {
  --color-bg: #0a0a0f;
  --color-gold: #d4a853;
  --color-gold-light: #e8c677;
  --color-gold-dim: rgba(212, 168, 83, 0.12);
  --color-gold-glow: rgba(212, 168, 83, 0.08);
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-surface-border: rgba(255, 255, 255, 0.07);
  --color-surface-hover: rgba(212, 168, 83, 0.08);
  --color-surface-hover-border: rgba(212, 168, 83, 0.25);
  --color-text: #f5f0e8;
  --color-text-secondary: rgba(245, 240, 232, 0.55);
  --color-text-muted: rgba(245, 240, 232, 0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ===== Ambient Background Glows ===== */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--top {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.07) 0%, transparent 70%);
}

.bg-glow--bottom {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
}

/* ===== Page Container ===== */
.page {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  margin-bottom: 44px;
}

.logo {
  max-width: 260px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 40px rgba(212, 168, 83, 0.15));
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 16px;
}

.tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ===== Links ===== */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius);
  color: var(--color-text);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.link-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.link-btn:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-surface-hover-border);
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 168, 83, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.link-btn:hover::before {
  opacity: 1;
}

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

/* Icon */
.link-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-gold-dim);
  color: var(--color-gold);
  flex-shrink: 0;
  transition: all var(--transition);
}

.link-btn:hover .link-icon {
  background: rgba(212, 168, 83, 0.18);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.1);
}

/* Content */
.link-content {
  flex: 1;
  min-width: 0;
}

.link-text {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.link-sub {
  display: block;
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 2px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Arrow */
.link-arrow {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}

.link-btn:hover .link-arrow {
  color: var(--color-gold);
  transform: translateX(3px);
}

/* ===== Footer ===== */
footer {
  margin-top: auto;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  width: 100%;
}

footer p {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  font-weight: 300;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .page {
    padding: 40px 16px 36px;
  }

  .logo {
    max-width: 200px;
  }

  .tagline {
    font-size: 15px;
    letter-spacing: 0.14em;
  }

  .link-btn {
    padding: 16px 16px;
    gap: 14px;
  }

  .link-icon {
    width: 40px;
    height: 40px;
  }

  .link-text {
    font-size: 14px;
  }
}
