/* ============================================
   HHpoker - Rose Gold Premium Style
   Design: iPhone Rose Gold Metallic
   ============================================ */

/* === CSS Variables === */
:root {
  --rose-100: #fdf2f3;
  --rose-200: #f9e4e6;
  --rose-300: #f0c9cd;
  --rose-400: #e8b4b8;
  --rose-500: #d4a5a5;
  --rose-600: #c98b8b;
  --rose-700: #b07070;
  --rose-800: #965858;
  --rose-900: #7a4242;
  --gold-light: #faf0e6;
  --gold: #d4a574;
  --gold-deep: #b8864e;
  --bg-cream: #fefaf7;
  --bg-warm: #fdf5f0;
  --text-dark: #3d2c2c;
  --text-mid: #6b5555;
  --text-light: #9e8585;
  --white: #ffffff;
  --shadow-rose: 0 4px 20px rgba(200, 140, 140, 0.25);
  --shadow-lg: 0 12px 40px rgba(180, 120, 120, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Rose Gold Gradient Utilities === */
.rose-gradient {
  background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a5 50%, #c98b8b 100%);
}

.rose-gradient-light {
  background: linear-gradient(135deg, #f9e4e6 0%, #f0c9cd 50%, #e8b4b8 100%);
}

.rose-gradient-text {
  background: linear-gradient(135deg, #d4a5a5 0%, #c98b8b 50%, #b07070 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rose-gradient-metal {
  background: linear-gradient(180deg, #f9e4e6 0%, #e8b4b8 20%, #d4a5a5 40%, #c98b8b 60%, #d4a5a5 70%, #e8b4b8 85%, #f0c9cd 100%);
}

/* === Metallic Shine Effect === */
.metallic-shine {
  position: relative;
  overflow: hidden;
}

.metallic-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 40%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.12) 60%,
    transparent 70%
  );
  animation: metallicShine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes metallicShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* === Glass Card === */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 180, 184, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-rose);
}

/* === Header / Nav === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 0;
}

.site-header.scrolled {
  background: rgba(254, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(180, 120, 120, 0.15);
  padding: 10px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #e8b4b8, #c98b8b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(200, 140, 140, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose-700);
  background: var(--rose-100);
}

.nav-links .btn-download-nav {
  background: linear-gradient(135deg, #e8b4b8, #c98b8b);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 24px;
  box-shadow: 0 4px 14px rgba(200, 140, 140, 0.35);
}

.nav-links .btn-download-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 140, 140, 0.45);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--rose-600);
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(254, 250, 247, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 30px rgba(180, 120, 120, 0.15);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .nav-links a {
    display: block;
    padding: 12px 18px;
    font-size: 1.05rem;
  }
}

/* === Hero Section === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #f9e4e6 0%, #fdf2f3 40%, #fefaf7 70%);
  z-index: 0;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.hero-bg-orbs .orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #e8b4b8, transparent);
  top: -100px;
  right: -80px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-bg-orbs .orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #d4a5a5, transparent);
  bottom: -60px;
  left: -60px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-bg-orbs .orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f0c9cd, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(232, 180, 184, 0.18);
  border: 1px solid rgba(200, 140, 140, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-700);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-mid);
  margin: 0 0 36px;
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #e8b4b8, #c98b8b);
  box-shadow: 0 6px 24px rgba(200, 140, 140, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200, 140, 140, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--rose-700);
  background: transparent;
  border: 2px solid var(--rose-400);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--rose-100);
  border-color: var(--rose-600);
}

/* === Hero Mockup === */
.hero-mockup {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 20px 40px rgba(180, 120, 120, 0.3));
  animation: mockupFloat 5s ease-in-out infinite;
}

.hero-mockup img {
  width: 100%;
  border-radius: 32px;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* === Section Common === */
.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(232, 180, 184, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.text-center { text-align: center; }

/* === Features Grid === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(232, 180, 184, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8b4b8, #d4a5a5, #c98b8b);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-300);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f9e4e6, #f0c9cd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rose-700);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.75;
}

/* === Stats Counter Row === */
.stats-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  min-width: 140px;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d4a5a5, #c98b8b, #b07070);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

/* === Platform Cards === */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.platform-card {
  padding: 40px 28px;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(232, 180, 184, 0.25);
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.platform-card.ios-card {
  background: linear-gradient(160deg, #fefaf7 0%, #fdf2f3 100%);
}

.platform-card.android-card {
  background: linear-gradient(160deg, #fefaf7 0%, #faf0e6 100%);
}

.platform-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.platform-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.platform-card .version {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.platform-card .btn-dl {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #e8b4b8, #c98b8b);
  box-shadow: 0 4px 16px rgba(200, 140, 140, 0.35);
  transition: all 0.3s ease;
}

.platform-card .btn-dl:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 140, 140, 0.45);
}

/* === Trust Badges === */
.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border-radius: var(--radius-full);
  border: 1px solid rgba(232, 180, 184, 0.25);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: 0 2px 10px rgba(200, 140, 140, 0.08);
}

.trust-badge i {
  color: var(--rose-600);
  font-size: 1.1rem;
}

/* === Testimonials === */
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(232, 180, 184, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-rose);
  border-color: var(--rose-300);
}

.testimonial-stars {
  color: #d4a574;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c9cd, #e8b4b8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* === FAQ Accordion === */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 180, 184, 0.25);
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--rose-400);
  box-shadow: var(--shadow-rose);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--rose-700);
}

.faq-icon {
  font-size: 0.7rem;
  color: var(--rose-500);
  transition: transform 0.35s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* === CTA Banner === */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.cta-bg {
  position: absolute;
  inset: 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a5 40%, #c98b8b 70%, #b07070 100%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 30px;
  color: #fff;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff;
}

.cta-content p {
  font-size: 1.05rem;
  margin: 0 0 30px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  color: var(--rose-700);
  box-shadow: 0 6px 24px rgba(120, 60, 60, 0.2);
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(120, 60, 60, 0.3);
}

/* === Footer === */
.site-footer {
  background: linear-gradient(180deg, #fdf2f3 0%, #fefaf7 100%);
  border-top: 1px solid rgba(232, 180, 184, 0.2);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-dark);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--rose-700);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 180, 184, 0.2);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === Page Header (inner pages) === */
.page-header {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, #f9e4e6 0%, #fefaf7 70%);
}

.page-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.page-header .breadcrumb {
  font-size: 0.88rem;
  color: var(--text-light);
}

.page-header .breadcrumb a {
  color: var(--rose-600);
  text-decoration: none;
}

/* === Download Page Specific === */
.download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.download-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8b4b8, #c98b8b);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(200, 140, 140, 0.35);
}

.download-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.download-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
}

/* === Club Page Specific === */
.club-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.club-benefit-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(232, 180, 184, 0.2);
  transition: all 0.3s ease;
}

.club-benefit-item:hover {
  border-color: var(--rose-300);
  box-shadow: var(--shadow-rose);
}

.club-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: linear-gradient(135deg, #f9e4e6, #f0c9cd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-700);
}

.club-benefit-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.club-benefit-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin: 0;
}

/* === Scroll animations === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fdf2f3; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #e8b4b8, #c98b8b); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #d4a5a5, #b07070); }
