:root {
  --emerald-900: #022c22;
  --emerald-800: #064e3b;
  --emerald-700: #065f46;
  --emerald-600: #047857;
  --emerald-500: #059669;
  --emerald-400: #10b981;
  --emerald-100: #d1fae5;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --gold-dark: #d97706;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--emerald-800);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 40px;
}

.gold-line {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.5);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--emerald-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--emerald-500);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline:hover {
  background: var(--emerald-800);
  color: var(--white);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 78, 59, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.3px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.logo span {
  color: var(--gold);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--gold);
}

.header-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--emerald-900) !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.9rem !important;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
}
nav a.active {
  color: var(--gold);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.5) !important;
  color: var(--emerald-900) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}

.hero {
  background: linear-gradient(
    160deg,
    var(--emerald-900) 0%,
    var(--emerald-800) 50%,
    #0a3d2d 100%
  );
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--emerald-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 17px 36px;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.hero-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.55);
}

.hero-download-btn:focus {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  margin-left: 4px;
}

.version-badge::before {
  content: "✓";
  color: var(--emerald-400);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin-top: 3px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-img {
  width: 220px;
  height: 380px;
  border-radius: 32px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.float-chip {
  position: absolute;
  background: rgba(6, 78, 59, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.chip1 {
  top: 20px;
  right: -10px;
}

.chip2 {
  bottom: 40px;
  left: -20px;
}

.chip-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--emerald-400);
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.trust-ticker {
  background: var(--emerald-900);
  border-top: 1px solid rgba(245, 158, 11, 0.25);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
}

.trust-ticker::before,
.trust-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.trust-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--emerald-900), transparent);
}

.trust-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--emerald-900), transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2px;
}

.ticker-item .ti-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--gold);
}

.ticker-item .ti-val {
  color: var(--gold-light);
  font-weight: 700;
}

.earn-hero-note {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.earn-hero-note small {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.earn-hero {
  background: linear-gradient(
    160deg,
    var(--emerald-900) 0%,
    var(--emerald-800) 55%,
    #0a3d2d 100%
  );
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}

.earn-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.earn-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.earn-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.earn-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}

.earn-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.earn-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.earn-hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.earn-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.earn-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.earn-hero-stats {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.earn-stat-card {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.earn-stat-card:last-child {
  border-bottom: none;
}

.earn-stat-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.earn-stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 500;
}

.earn-stat-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .earn-hero-inner {
    padding: 0 16px;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .earn-hero h1 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .earn-hero-sub {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 auto 24px;
  }

  .earn-hero-eyebrow {
    font-size: 0.75rem;
    justify-content: center;
  }

  .earn-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-download-btn,
  .btn-outline {
    width: 100%;
    max-width: 320px;
    font-size: 0.9rem;
    text-align: center;
  }

  .earn-hero-note {
    margin-top: 14px;
    padding-top: 10px;
    text-align: center;
  }

  .earn-hero-note small {
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.breadcrumb--nowrap {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.breadcrumb__link {
  color: #047857;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.breadcrumb__link:hover {
  color: var(--emerald-800);
}

.breadcrumb__sep {
  color: var(--gray-400);
  white-space: nowrap;
}

.breadcrumb__current {
  color: var(--gray-700);
  font-weight: 600;
  white-space: nowrap;
}

.earn-methods-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  display: block;
}

.methods-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.method-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 16px;
  border-right: 1px solid var(--gray-100);
  transition: background 0.2s;
  text-decoration: none;
}

.method-pill:last-child {
  border-right: none;
}

.method-pill:hover {
  background: var(--gray-50);
}

.method-pill-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.method-pill-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--emerald-800);
}

.method-pill-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--emerald-600);
  background: var(--emerald-100);
  border-radius: 50px;
  padding: 2px 8px;
  width: fit-content;
}

@media (max-width: 768px) {
  .earn-methods-strip {
    display: none !important;
  }
}
.referral-section {
  background: var(--white);
}

.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ref-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.ref-step:last-child {
  border-bottom: none;
}

.ref-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.35);
}

.ref-step-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--emerald-800);
  margin-bottom: 5px;
}

.ref-step-body p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

.referral-card {
  background: linear-gradient(160deg, var(--emerald-900), #0a3d2d);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--white);
  position: sticky;
  top: 90px;
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.3);
}

.referral-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
}

.referral-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.ref-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
}

.ref-tier-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.ref-tier-val {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  font-size: 1rem;
}

.referral-link-box {
  background: rgba(245, 158, 11, 0.12);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.referral-link-box span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-family: monospace;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  background: var(--gold);
  color: var(--emerald-900);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-display);
  transition: opacity 0.2s;
}

.copy-btn:hover {
  opacity: 0.85;
}

.referral-notice {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.skill-section {
  background: var(--gray-50);
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.strategy-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.strategy-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sc-gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.sc-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.sc-blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.strategy-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--emerald-800);
}

.strategy-card p {
  color: var(--gray-600);
  font-size: 0.87rem;
  line-height: 1.6;
}

.strategy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.strategy-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.strategy-card ul li::before {
  content: "→";
  color: var(--emerald-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hand-rankings {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}

.hand-rankings-header {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hand-rankings-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.rankings-table {
  width: 100%;
  border-collapse: collapse;
}

.rankings-table th {
  background: var(--gray-50);
  text-align: left;
  padding: 11px 20px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gray-200);
}

.rankings-table td {
  padding: 13px 20px;
  font-size: 0.88rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.rankings-table tr:last-child td {
  border-bottom: none;
}

.rankings-table tr:hover td {
  background: var(--gray-50);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
}

.rank-name {
  font-weight: 700;
  color: var(--emerald-800);
}

.rank-odds {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: #fef3c7;
  padding: 3px 8px;
  border-radius: 50px;
}

.free-section {
  background: var(--white);
}

.free-earn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  align-items: stretch;
}

.free-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.free-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.free-card-daily {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.free-card-login {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.free-card-vip {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}

.free-card-invite {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
}

.free-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.free-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--emerald-900);
}

.free-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.6;
}

.free-card-amount {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;

  color: var(--emerald-700);
  background: rgba(6, 78, 59, 0.08);

  border-radius: 50px;
  padding: 5px 14px;

  width: fit-content;
}

.free-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;

  font-size: 0.7rem;
  font-weight: 700;

  background: #065f46; /* darker emerald */
  color: #ffffff;

  padding: 3px 10px;
  border-radius: 50px;

  letter-spacing: 0.3px;
}
.free-card {
  gap: 16px;
}
.bonus-tracker {
  background: linear-gradient(135deg, var(--emerald-900), #0a3d2d);
  border-radius: var(--radius-lg);
  padding: 28px 28px 20px;
  margin-top: 0;
}

.bonus-tracker h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 18px;
}

.bonus-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.bonus-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
}

.bonus-day.collected {
  background: rgba(5, 150, 105, 0.2);
  border-color: rgba(5, 150, 105, 0.4);
}

.bonus-day.today {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.bonus-day-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
}

.bonus-day-val {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
}

.bonus-day.collected .bonus-day-val {
  color: var(--emerald-400);
}

.bonus-day.today .bonus-day-val {
  color: var(--gold);
}

.bonus-tracker-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.77rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.withdrawal-section {
  background: var(--gray-50);
}

.withdrawal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.withdrawal-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wd-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
}

.wd-step:last-child {
  border-bottom: none;
}

.wd-step-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.wd-icon-green {
  background: var(--emerald-100);
}

.wd-icon-gold {
  background: #fef3c7;
}

.wd-icon-blue {
  background: #dbeafe;
}

.wd-icon-purple {
  background: #ede9fe;
}

.wd-step-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--emerald-800);
  margin-bottom: 4px;
}

.wd-step-body p {
  color: var(--gray-600);
  font-size: 0.87rem;
  line-height: 1.6;
}

.wd-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.wd-panel-header {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  padding: 20px 24px;
}

.wd-panel-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 2px;
}

.wd-panel-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.wd-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.wd-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
}

.wd-spec:last-child {
  border-bottom: none;
}

.wd-spec-label {
  color: var(--gray-500);
  font-size: 0.83rem;
}

.wd-spec-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--emerald-700);
}

.wd-methods {
  display: flex;
  gap: 10px;
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
}

.wd-method-badge {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--emerald-700);
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.wd-method-badge span {
  font-size: 1.1rem;
}

.wd-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 22px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  align-items: center;
}

.wd-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald-700);
  background: var(--emerald-100);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.wd-trust-badge:hover {
  background: var(--emerald-200);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .wd-trust-badges {
    justify-content: center;
    padding: 14px 14px;
    gap: 8px;
  }

  .wd-trust-badge {
    font-size: 0.7rem;
    padding: 6px 10px;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .wd-trust-badge {
    font-size: 0.68rem;
    padding: 5px 9px;
  }
}

.summary-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table thead th {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  color: var(--white);
  text-align: left;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-table tbody td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.summary-table tbody tr:last-child td {
  border-bottom: none;
}

.summary-table tbody tr:hover td {
  background: var(--gray-50);
}

.method-name {
  font-weight: 700;
  color: var(--emerald-800);
}

.earn-level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.level-high {
  background: #d1fae5;
  color: #065f46;
}

.level-mid {
  background: #fef3c7;
  color: #92400e;
}

.level-no {
  background: var(--gray-100);
  color: var(--gray-600);
}

.earn-faq {
  background: var(--white);
}

#earn-faq .faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#faq {
  text-align: left !important;
}

#faq .container {
  text-align: left !important;
}

#faq .section-title {
  text-align: left !important;
}

#faq .section-sub {
  text-align: left !important;
  display: block !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-bottom: 40px !important;
}

#faq .faq-list {
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left !important;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--emerald-800);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition:
    transform 0.3s,
    background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--emerald-600);
  color: var(--white);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

.earn-cta {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 20px;
}

.earn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(245, 158, 11, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.earn-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.earn-cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.earn-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-authority {
  background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.trust-authority::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 78, 59, 0.07) 0%,
    transparent 70%
  );
}

.trust-authority::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.08) 0%,
    transparent 70%
  );
}

.trust-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.trust-authority .trust-header .section-sub {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d1fae5;
  color: #047857;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(6, 78, 59, 0.15);
}

.trust-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--emerald-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.25);
  position: relative;
  z-index: 1;
}

.tss-item {
  background: linear-gradient(160deg, var(--emerald-800), var(--emerald-900));
  padding: 28px 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.tss-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
  word-break: keep-all;
}

.tss-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 2px;
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.trust-pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid rgba(6, 78, 59, 0.1);
  box-shadow: 0 2px 16px rgba(6, 78, 59, 0.07);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.trust-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.trust-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(6, 78, 59, 0.14);
}

.trust-pillar:hover::before {
  transform: scaleX(1);
}

.tp-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 18px;
  position: relative;
  flex-shrink: 0;
}

.tp-icon-ring.green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.tp-icon-ring.gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.tp-icon-ring.blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.tp-icon-ring.purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.tp-icon-ring.teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}

.tp-icon-ring.rose {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
}

.tp-verified-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--emerald-600);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
  font-weight: 800;
}

.tp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--emerald-900);
  margin-bottom: 8px;
}

.tp-text {
  color: var(--gray-600);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.tp-proof {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--emerald-700);
  margin-top: auto;
}

.tp-proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-500);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.trust-promise {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.25);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trust-promise::before {
  content: "🛡";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  opacity: 0.06;
  pointer-events: none;
}

.tp-left {
  flex: 1;
  min-width: 220px;
}

.tp-left h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.tp-left p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.tp-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.tp-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-check-icon {
  width: 18px;
  height: 18px;
  background: var(--emerald-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
  font-weight: 900;
  flex-shrink: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 14px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-points {
  list-style: none;
  margin-top: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-points li {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
  padding: 10px 12px 10px 40px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  position: relative;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.about-points li strong {
  display: block;
  color: var(--gray-900);
  margin-right: 6px;
}

.earn {
  background: var(--gray-50);
}

.earn-notice {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-left: 4px solid #22c55e;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 32px;
  color: #166534;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#earn .section-sub {
  text-align: left !important;
  width: 100%;
  display: block;
  margin-left: 0 !important;
  margin-right: auto !important;
  float: none !important;
  margin-bottom: 40px;
}

.earn-notice strong {
  color: var(--gold-dark);
}

.earn-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.earn-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.earn-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-num {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--emerald-800);
  margin-bottom: 6px;
}

.step-text {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pkr-example {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.pkr-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.pkr-label {
  color: var(--gray-500);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.pkr-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--emerald-700);
}

.features {
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(5, 150, 105, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.features .section-title {
  color: var(--white);
}

.features .section-sub {
  color: rgba(255, 255, 255, 0.6);
  text-align: left !important;
  width: 100%;
  display: block;
  margin-left: 0 !important;
  margin-right: auto !important;
  float: none !important;
}

.features .gold-line {
  background: var(--gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition:
    background 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2),
    rgba(245, 158, 11, 0.08)
  );
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: auto;
}

.feature-stat strong {
  color: var(--white);
  font-weight: 700;
}

.stat-icon {
  font-size: 1rem;
}

.features-header {
  margin-bottom: 40px;
}

.ratings {
  background: var(--gray-50);
}

.ratings .section-sub {
  text-align: left !important;
  width: 100%;
  display: block;
  margin-left: 0 !important;
  margin-right: auto !important;
  float: none !important;
  margin-bottom: 40px !important;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 0 !important;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.2;
}

.reviewer-city {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.2;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1d4ed8;
  background: rgba(29, 78, 216, 0.12);
  border: 1px solid rgba(29, 78, 216, 0.3);
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

#blog .container {
  text-align: left !important;
}

#blog .section-title {
  text-align: left !important;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #064e3b;
}

#blog .container > .section-sub {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-bottom: 40px !important;
  max-width: 700px;
  color: var(--gray-600);
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}

.blog-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #064e3b;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-read {
  margin-top: auto;
  color: var(--emerald-600);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.blog-read:hover,
.blog-read:focus {
  color: var(--emerald-800);
  outline: none;
  text-decoration: underline;
}

.cta-section {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(245, 158, 11, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.safe-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

.safe-tag span {
  font-size: 0.9rem;
  line-height: 1;
}

.req-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.req-item::before {
  content: "•";
  color: var(--gold);
}

.disclaimer {
  background: #111827;
  padding: 32px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.disclaimer-icon {
  font-size: 1.5rem;
  min-width: 32px;
  margin-top: 4px;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.75;
}

.disclaimer-subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.disclaimer-text strong {
  color: var(--gold);
  font-weight: 700;
}

.disclaimer-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.disclaimer-link:hover {
  opacity: 0.7;
  color: var(--gold);
}

footer {
  background: var(--emerald-900);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.social-btn svg {
  transition: none;
}

.social-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.social-btn:hover {
  transform: none;
}

.social-btn:hover::after {
  opacity: 1;
}

.social-btn[aria-label*="Facebook"]:hover {
  color: #1877f2;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
  background: rgba(24, 119, 242, 0.12);
}

.social-btn[aria-label*="Instagram"]:hover {
  color: #e1306c;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
  background: rgba(225, 48, 108, 0.12);
}

.social-btn[aria-label*="YouTube"]:hover {
  color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.12);
}

.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--white); margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}
@font-face {
  font-family: "Sora";
  src: url("https://3pattino1.online/fonts/sora-semibold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("https://3pattino1.online/fonts/sora-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("https://3pattino1.online/fonts/dmsans-regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("https://3pattino1.online/fonts/dmsans-medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@media (min-width: 769px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .referral-grid {
    grid-template-columns: 1fr 1fr;
  }
  .strategy-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .withdrawal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .free-earn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .methods-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .earn-hero-inner {
    grid-template-columns: 1fr 340px;
  }
  .trust-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .container {
    padding: 0 16px;
    width: 100%;
    overflow: hidden;
  }

  nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--emerald-900);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
  }
  nav.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .header-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin: 0 auto 36px;
  }
  .hero-download-btn {
    margin: 0 auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .float-chip {
    display: none;
  }
  .version-badge {
    display: block;
    margin: 6px auto 0 auto;
    text-align: center;
  }

  .earn-hero {
    overflow: hidden;
    padding: 56px 0 64px;
  }
  .earn-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
    text-align: center;
  }
  .earn-hero-eyebrow {
    margin: 0 auto 18px;
    justify-content: center;
  }
  .earn-hero h1 {
    text-align: center;
  }
  .earn-hero-sub {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 100%;
  }
  .earn-hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .earn-hero-actions a,
  .hero-download-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .earn-hero-stats {
    flex-direction: column;
    align-self: auto;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .earn-stat-card {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 12px;
  }
  .earn-stat-card:last-child {
    border-bottom: none;
  }
  .earn-stat-num {
    font-size: 1.3rem;
  }

  .methods-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
    gap: 0;
  }
  .method-pill {
    padding: 14px 10px;
  }
  .method-pill:nth-child(2n) {
    border-right: none;
  }
  .method-pill:nth-child(1),
  .method-pill:nth-child(2) {
    border-bottom: 1px solid var(--gray-100);
  }

  .referral-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .referral-steps {
    overflow: hidden;
  }
  .ref-step {
    gap: 12px;
    padding: 18px 0;
    overflow: hidden;
  }
  .ref-step-body {
    min-width: 0;
  }
  .ref-step-body h3,
  .ref-step-body p {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .summary-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 28px 0 0;
    border-radius: var(--radius);
  }
  .summary-table {
    min-width: 440px;
  }
  .summary-table thead th,
  .summary-table tbody td {
    padding: 11px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .referral-card {
    position: static;
    width: 100%;
    text-align: center;
  }
  .referral-card h3 {
    text-align: center;
  }
  .ref-tier {
    flex-wrap: wrap;
    gap: 4px;
    text-align: left;
  }
  .ref-tier-label,
  .ref-tier-val {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .referral-link-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .copy-btn {
    width: 100%;
    text-align: center;
    padding: 8px;
  }

  .strategy-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hand-rankings {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 32px;
  }

  .hand-rankings-header {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;

    background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
    color: var(--white);
  }

  .hand-rankings-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
  }

  .hand-rankings-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rankings-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
  }

  .rankings-table th {
    background: var(--gray-50);
    text-align: left;
    padding: 11px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gray-200);
  }

  .rankings-table td {
    padding: 13px 14px;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--gray-100);
    white-space: nowrap;
  }

  .rank-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--emerald-100);
    color: var(--emerald-700);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .rank-name {
    font-weight: 700;
    color: var(--emerald-800);
  }

  .rank-odds {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 50px;
    background: #fef3c7;
    color: var(--gold-dark);
  }

  .free-earn-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .free-card h3 {
    font-size: 0.92rem;
  }

  .free-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .free-card-amount {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  .bonus-tracker {
    padding: 20px 16px 16px;
    overflow: hidden;
  }
  .bonus-days {
    gap: 4px;
  }
  .bonus-day {
    padding: 7px 2px;
    border-radius: 7px;
  }
  .bonus-day-label {
    font-size: 0.56rem;
  }
  .bonus-day-val {
    font-size: 0.7rem;
  }

  .withdrawal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wd-panel {
    position: static;
  }
  .wd-methods {
    flex-direction: column;
    gap: 8px;
  }
  .wd-method-badge {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .earn-cta {
    padding: 56px 16px;
  }
  .earn-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .earn-cta-actions a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin: 0 auto;
  }

  .section {
    padding: 52px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  .trust-pillars {
    grid-template-columns: 1fr;
  }
  .trust-stats-strip {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 32px;
  }
  .tss-item {
    padding: 15px 2px;
  }
  .tss-num {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  .tss-label {
    font-size: 0.6rem;
    white-space: normal;
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-img {
    height: 240px;
  }
  .about-points li {
    grid-template-columns: 1fr;
  }

  .pkr-example {
    flex-direction: column;
  }
  .pkr-item {
    flex: none;
    width: 100%;
  }

  .blog-card:hover {
    transform: none;
  }
  .blog-card:hover .blog-thumb img {
    transform: none;
  }
  .blog-body {
    padding: 20px;
  }
  #blog .section-title {
    font-size: 1.75rem;
  }

  .disclaimer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .trust-eyebrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
    border-radius: 12px;
    font-size: 0.72rem;
    padding: 6px 12px;
    line-height: 1.4;
  }
  .trust-eyebrow .seo-icon {
    display: inline-block;
  }
  .trust-eyebrow strong {
    display: inline;
    white-space: nowrap;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .trust-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .earn-hero-inner {
    padding: 0 14px;
  }
  .earn-stat-card {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .earn-stat-card:last-child {
    border-bottom: none;
  }
  .bonus-days {
    gap: 3px;
  }
  .bonus-day {
    padding: 6px 1px;
  }
  .bonus-day-label {
    font-size: 0.48rem;
  }
  .bonus-day-val {
    font-size: 0.62rem;
  }
  .ref-tier {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 52px 0;
  }
  .hero {
    padding: 60px 0 70px;
  }
  .trust-pillars {
    grid-template-columns: 1fr;
  }
  .wd-methods {
    flex-direction: column;
    gap: 8px;
  }
  .wd-method-badge {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  .referral-link-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .copy-btn {
    width: 100%;
    text-align: center;
    padding: 8px;
  }
}

@media (max-width: 360px) {
  .tss-num {
    font-size: 0.8rem;
  }
  .tss-label {
    font-size: 0.55rem;
  }
}
.mt-20{
  margin-top: 20px;
}

.mt-28{
  margin-top: 28px;
}