/* =============================================================
   RAJA CASINO — Main Stylesheet
   File      : assets/css/style.css
   Linked    : index.html
   Palette   : Wicket71 (Emerald Green · Flame Orange · Pitch Black)
   ============================================================= */

/* ===== RESET & ROOT ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* --- Wicket71 Green ramp --- */
  --green-bright: #05C27A;
  --green-mid:    #1FC16B;
  --green-deep:   #0A8C45;
  --green-dark:   #065C2E;

  /* --- Wicket71 Fire ramp --- */
  --fire-gold:    #F2B31A;
  --fire-orange:  #F26C1A;
  --fire-deep:    #E85010;
  --fire-burnt:   #C03A08;

  /* --- Backgrounds (dark theme) --- */
  --bg-void:      #111111;
  --bg-dark:      #161616;
  --bg-panel:     #1A1A1A;
  --bg-card:      #202020;

  /* --- Text --- */
  --text-light:   #F0F0EE;
  --text-muted:   #888880;

  /* --- Borders --- */
  --border-glow:  rgba(31, 193, 107, 0.28);
  --border-fire:  rgba(242, 108, 26, 0.28);

  /* --- Fonts (unchanged) --- */
  --ff-display:   'Cinzel Decorative', serif;
  --ff-body:      'Cormorant Garamond', Georgia, serif;
  --ff-ui:        'Rajdhani', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-void);
  color: var(--text-light);
  font-family: var(--ff-body);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== KEYFRAMES ===== */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(31,193,107,0.35), 0 0 60px rgba(31,193,107,0.12); }
  50%       { box-shadow: 0 0 40px rgba(31,193,107,0.65), 0 0 100px rgba(31,193,107,0.25); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes reveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50%       { opacity: 1;    transform: scale(1.2); }
}

@keyframes card-float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(2deg) translateY(-8px); }
}

/* ===== UTILITY ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Green gradient text (replaces gold-text) */
.gold-text {
  background: linear-gradient(135deg, #05C27A 0%, #7DFFC3 40%, #1FC16B 60%, #F2B31A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.section-label {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: block;
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(17,17,17,0.98) 0%, rgba(17,17,17,0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glow);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--green-bright);
}

.nav-cta {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #111111;
  border: 1px solid rgba(31,193,107,0.5);
  padding: 10px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  box-shadow: 0 0 25px rgba(31,193,107,0.5);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10,140,69,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(5,194,122,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(242,108,26,0.07) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(31,193,107,0.03) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(31,193,107,0.03) 80px
    );
}

/* Floating card decorations */
.deco-card {
  position: absolute;
  border-radius: 8px;
  border: 1px solid rgba(31,193,107,0.18);
  background: rgba(22,22,22,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.deco-card:nth-child(1) { width: 80px; height: 110px; top: 18%; left: 6%;     animation: card-float 5s ease-in-out infinite; }
.deco-card:nth-child(2) { width: 70px; height: 96px;  top: 25%; right: 8%;    animation: card-float 6s ease-in-out infinite reverse; }
.deco-card:nth-child(3) { width: 60px; height: 82px;  bottom: 22%; left: 12%; animation: card-float 4s ease-in-out infinite 1s; }
.deco-card:nth-child(4) { width: 65px; height: 89px;  bottom: 30%; right: 14%;animation: card-float 7s ease-in-out infinite 0.5s; }

/* Star particles */
.star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-bright);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
  animation: fadeInUp 1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,140,69,0.2);
  border: 1px solid rgba(31,193,107,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '♦';
  color: var(--fire-orange);
}

h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  font-style: italic;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  font-family: var(--ff-ui);
}

.stars {
  color: var(--fire-gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.rating-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fire-gold);
}

.rating-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--green-mid) 0%, transparent 100%);
  animation: float 2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, var(--green-deep) 100%);
  background-size: 200% auto;
  color: #111111;
  border: 1px solid rgba(31,193,107,0.6);
  padding: 18px 48px;
  border-radius: 4px;
  text-decoration: none;
  animation: pulse-glow 3s ease-in-out infinite;
  transition: all 0.3s;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: shimmer 3s linear infinite;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
}

/* Large CTA variant */
.btn-cta-large {
  font-size: 1.1rem;
  padding: 22px 64px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--green-mid);
  border: 1px solid var(--border-glow);
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(31,193,107,0.08);
  border-color: var(--green-bright);
  color: var(--green-bright);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border-glow);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
}

/* Divider ornament */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.divider::before,
.divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-mid));
}

.divider::after {
  background: linear-gradient(90deg, var(--green-mid), transparent);
}

.divider-gem {
  color: var(--fire-orange);
  font-size: 0.9rem;
}

/* ===== FEATURES SECTION ===== */
.features-bg {
  background: var(--bg-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-mid), var(--fire-orange), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31,193,107,0.55);
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(31,193,107,0.35));
}

.feature-card h3 {
  font-family: var(--ff-ui);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== REVIEWS SECTION ===== */
.reviews-bg {
  background: var(--bg-void);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  padding: 32px;
  position: relative;
}

.review-card::before {
  content: '❝';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 4rem;
  color: var(--green-mid);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}

.review-stars {
  color: var(--fire-gold);
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--fire-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--text-light);
  border: 2px solid var(--green-deep);
  flex-shrink: 0;
}

.reviewer-name {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-mid);
}

.reviewer-title {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ===== BONUS SECTION ===== */
.bonus-bg {
  background: var(--bg-panel);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s;
}

.bonus-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 0 24px rgba(31,193,107,0.1);
}

.bonus-pct {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.bonus-info h3 {
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.bonus-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bonus-cta {
  text-align: center;
}

/* ===== HOW TO SECTION ===== */
.howto-bg {
  background: var(--bg-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid), var(--fire-orange), var(--green-mid), var(--green-dark));
}

.step-item {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-panel));
  border: 2px solid var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--green-bright);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(31,193,107,0.2);
}

.step-item h3 {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.faq-bg {
  background: var(--bg-void);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-glow);
  padding: 4px 0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--green-bright);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-mid);
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--green-mid);
  color: #111111;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #0D1A12 0%, #122010 40%, #0D1A12 100%);
  border-top: 1px solid rgba(31,193,107,0.35);
  border-bottom: 1px solid rgba(31,193,107,0.35);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(10,140,69,0.2) 0%, transparent 70%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(31,193,107,0.12);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--green-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(31,193,107,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.badge {
  background: var(--bg-panel);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  background: var(--bg-panel);
  border-left: 3px solid var(--fire-orange);
  padding: 16px 20px;
  margin: 32px 0 0;
  border-radius: 0 4px 4px 0;
}

.disclaimer p {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ===== PROMOSI SECTION ===== */
.promo-bg {
  background: var(--bg-dark);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Base promo card */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.promo-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-mid), var(--fire-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31,193,107,0.5);
  box-shadow: 0 12px 40px rgba(31,193,107,0.1);
}

.promo-card:hover::after {
  transform: scaleX(1);
}

/* Featured card — welcome bonus */
.promo-card--featured {
  border-color: rgba(31,193,107,0.55);
  background: linear-gradient(145deg, #202020 0%, #1a2a1e 100%);
  grid-column: span 1;
}

.promo-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright), var(--fire-gold));
}

/* Badge "নতুন সদস্য" */
.promo-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #111;
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Icon */
.promo-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(31,193,107,0.3));
}

/* Body */
.promo-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category tag */
.promo-card__tag {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 8px;
}

/* Title */
.promo-card__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* Amount highlight */
.promo-card__amount {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--green-bright);
  margin-bottom: 12px;
}

.promo-card__amount strong {
  font-weight: 700;
}

/* Description */
.promo-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}

/* Terms list */
.promo-card__terms {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-card__terms li {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.03em;
}

.promo-card__terms li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: 0.75rem;
}

/* CTA button inside card */
.promo-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: auto;
}

/* Solid green variant (featured) */
.promo-card__btn:not(.promo-card__btn--outline) {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #111;
  border: none;
}

.promo-card__btn:not(.promo-card__btn--outline):hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  box-shadow: 0 0 20px rgba(31,193,107,0.4);
  transform: translateY(-1px);
}

/* Outline green variant */
.promo-card__btn--outline {
  background: transparent;
  color: var(--green-mid);
  border: 1px solid var(--border-glow);
}

.promo-card__btn--outline:hover {
  background: rgba(31,193,107,0.08);
  border-color: var(--green-bright);
  color: var(--green-bright);
}

/* ===== VIP TIER BAR ===== */
.vip-tiers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
}

.vip-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.vip-tier:hover {
  transform: translateY(-3px);
}

.vip-tier__icon {
  font-size: 1.6rem;
}

.vip-tier__name {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vip-tier__arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vip-tier--bronze  { background: rgba(205,127,50,0.1);  border-color: rgba(205,127,50,0.25);  }
.vip-tier--bronze  .vip-tier__name { color: #CD7F32; }

.vip-tier--silver  { background: rgba(192,192,192,0.1); border-color: rgba(192,192,192,0.25); }
.vip-tier--silver  .vip-tier__name { color: #C0C0C0; }

.vip-tier--gold    { background: rgba(242,179,26,0.1);  border-color: rgba(242,179,26,0.25);  }
.vip-tier--gold    .vip-tier__name { color: var(--fire-gold); }

.vip-tier--platinum { background: rgba(5,194,122,0.1);  border-color: rgba(5,194,122,0.25);  }
.vip-tier--platinum .vip-tier__name { color: var(--green-bright); }

.vip-tier--diamond { background: rgba(242,108,26,0.1);  border-color: rgba(242,108,26,0.3);  }
.vip-tier--diamond .vip-tier__name { color: var(--fire-orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid           { grid-template-columns: 1fr; }
  .reviews-grid            { grid-template-columns: 1fr; }
  .bonus-grid              { grid-template-columns: 1fr; }
  .promo-grid              { grid-template-columns: repeat(2, 1fr); }
  .steps-grid              { grid-template-columns: 1fr 1fr; }
  .steps-grid::before      { display: none; }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); }
  .stat-item               { border-bottom: 1px solid var(--border-glow); padding: 24px; }
  .stat-item:nth-child(2n) { border-right: none; }
  .footer-grid             { grid-template-columns: 1fr 1fr; }
  .nav-links               { display: none; }
  .vip-tiers               { gap: 8px; padding: 20px 16px; }
  .vip-tier                { padding: 10px 12px; }
}

@media (max-width: 600px) {
  .steps-grid        { grid-template-columns: 1fr; }
  .promo-grid        { grid-template-columns: 1fr; }
  .hero-cta-group    { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-secondary     { width: 100%; justify-content: center; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .deco-card         { display: none; }
  .vip-tier__arrow   { display: none; }
  .vip-tiers         { gap: 10px; }
}