/* ==========================================================================
   THE VELOURA VERSE — OFFICIAL LINK HUB STYLESHEET
   Design Language: French Vanity × Champagne Luxury (Chanel Beauté × Rhode)
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --bg-sand: #FAF7F2;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #FFFFFF;
  --text-primary: #2C221E;
  --text-secondary: #5A483E;
  --text-muted: #8C7362;
  
  --accent-wine: #800000;
  --accent-wine-hover: #9E1B28;
  --accent-wine-glow: rgba(128, 0, 0, 0.28);
  
  --accent-gold: #C58F68;
  --accent-gold-dark: #A8704A;
  --accent-gold-light: #F4E8DF;

  --border-delicate: rgba(197, 143, 104, 0.32);
  --border-wine: rgba(128, 0, 0, 0.22);

  --shadow-subtle: 0 4px 20px rgba(44, 34, 30, 0.05);
  --shadow-card: 0 10px 30px rgba(44, 34, 30, 0.08);
  --shadow-hover: 0 16px 40px rgba(128, 0, 0, 0.12);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-sand);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  padding: 30px 16px 60px;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Glow Lighting */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.glow-top {
  width: 380px;
  height: 380px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(197, 143, 104, 0.28) 0%, transparent 70%);
}

.glow-middle {
  width: 440px;
  height: 440px;
  top: 40%;
  right: -140px;
  background: radial-gradient(circle, rgba(128, 0, 0, 0.12) 0%, transparent 70%);
}

.glow-bottom {
  width: 420px;
  height: 420px;
  bottom: -100px;
  left: -120px;
  background: radial-gradient(circle, rgba(197, 143, 104, 0.20) 0%, transparent 70%);
}

/* Central Hub Container */
.hub-container {
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.hub-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.avatar-wrapper {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 16px;
}

.hub-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: var(--radius-full);
  border: 3.5px solid #FFFFFF;
  box-shadow: 0 8px 24px rgba(128, 0, 0, 0.16), 0 0 0 1.5px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease;
}

.avatar-wrapper:hover .hub-avatar {
  transform: scale(1.03);
}

.verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 26px;
  height: 26px;
  background: var(--accent-wine);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.brand-title {
  font-family: var(--font-cinzel);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.gold-text {
  color: var(--accent-wine);
}

.brand-tagline {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.social-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  background: var(--bg-card);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-subtle);
}

.social-pill i {
  color: var(--accent-wine);
  font-size: 14px;
}

.social-pill:hover {
  background: #FFFFFF;
  border-color: var(--accent-wine);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(128, 0, 0, 0.12);
}

/* ==========================================================================
   FEATURED FLAGSHIP CARD
   ========================================================================== */
.featured-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border-delicate);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-wine), var(--accent-gold), var(--accent-wine));
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--accent-wine);
  color: #FFFFFF;
  font-family: var(--font-cinzel);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #FFB3BA;
  border-radius: 50%;
  box-shadow: 0 0 8px #FFB3BA;
  animation: pulse-dot-anim 1.8s infinite;
}

@keyframes pulse-dot-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.featured-cover-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 195, 158, 0.5);
  box-shadow: 0 8px 24px rgba(44, 34, 30, 0.1);
}

.featured-cover-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-card:hover .featured-cover-img {
  transform: scale(1.02);
}

.featured-kicker {
  font-family: var(--font-cinzel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: var(--accent-gold-dark);
  margin-bottom: 4px;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 10px;
}

.italic-serif {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-wine);
}

.featured-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  background: rgba(250, 247, 242, 0.7);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 143, 104, 0.2);
}

.benefit-list li {
  font-size: 12.8px;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.check-icon {
  color: var(--accent-wine);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Pricing & CTA Block */
.pricing-cta-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2px;
}

.price-current {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-wine);
  letter-spacing: -0.5px;
}

.price-regular {
  font-size: 17px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.save-tag {
  background: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* Buttons */
.btn-primary-wine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent-wine);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-cinzel);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px var(--accent-wine-glow);
}

.btn-primary-wine:hover {
  background: var(--accent-wine-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(128, 0, 0, 0.38);
}

.btn-secondary-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-delicate);
  transition: all 0.2s ease;
}

.btn-secondary-outline:hover {
  background: #FFFFFF;
  border-color: var(--accent-wine);
  color: var(--accent-wine);
}

.guarantee-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 14px;
  flex-wrap: wrap;
}

.guarantee-micro i {
  color: var(--accent-gold-dark);
}

/* ==========================================================================
   LINKS SECTION
   ========================================================================== */
.links-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 2px;
}

.title-decor {
  flex: 1;
  height: 1px;
  background: var(--border-delicate);
}

.section-title {
  font-family: var(--font-cinzel);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
}

.links-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hub-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-subtle);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.hub-link-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-wine);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.link-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-sand);
  border: 1px solid var(--border-delicate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-wine);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.link-icon-box.accent-box {
  background: var(--accent-gold-light);
  color: var(--accent-gold-dark);
}

.hub-link-card:hover .link-icon-box {
  background: var(--accent-wine);
  color: #FFFFFF;
  border-color: var(--accent-wine);
}

.link-text-content {
  flex: 1;
  min-width: 0;
}

.link-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  letter-spacing: -0.1px;
}

.link-desc {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-arrow {
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.2s ease;
}

.hub-link-card:hover .link-arrow {
  color: var(--accent-wine);
  transform: translate(2px, -2px);
}

/* ==========================================================================
   TRUST STATS SECTION
   ========================================================================== */
.trust-stats-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--bg-card);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  box-shadow: var(--shadow-subtle);
  margin-top: 6px;
}

.stat-box {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: var(--font-cinzel);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-wine);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-delicate);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.hub-footer {
  text-align: center;
  padding: 20px 10px 0;
}

.footer-logo {
  font-family: var(--font-cinzel);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-text {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 12px;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #2C221E;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 13.5px;
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-icon {
  color: var(--accent-gold);
}

/* ==========================================================================
   RESPONSIVE TUNING
   ========================================================================== */
@media (max-width: 480px) {
  body {
    padding: 16px 12px 40px;
  }

  .featured-card {
    padding: 20px 16px;
  }

  .featured-title {
    font-size: 22px;
  }

  .price-current {
    font-size: 28px;
  }

  .btn-primary-wine {
    font-size: 13px;
    padding: 14px 18px;
  }

  .stat-number {
    font-size: 16px;
  }

  .stat-label {
    font-size: 9.5px;
  }
}
