/* ========================================================
   Real Prize Casino Canada — style.css
   real-prize-casino.ca
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Rajdhani:wght@500;600;700&display=swap');

/* --------------------------------------------------------
   1. CSS VARIABLES
   -------------------------------------------------------- */
:root {
  --bg-primary: #080919;
  --bg-secondary: #0F1028;
  --bg-card: #171836;
  --bg-card-hover: #1E1F45;
  --bg-glass: rgba(23, 24, 54, 0.7);

  --orange: #F97316;
  --orange-light: #FB923C;
  --orange-glow: rgba(249, 115, 22, 0.25);
  --gold: #FBBF24;
  --gold-light: #FDE68A;
  --gold-glow: rgba(251, 191, 36, 0.2);
  --green: #22C55E;
  --green-glow: rgba(34, 197, 94, 0.2);
  --red: #EF4444;
  --purple: #8B5CF6;

  --text-white: #FFFFFF;
  --text-primary: #E2E6FF;
  --text-secondary: #9BA3C0;
  --text-muted: #5A6380;

  --border: rgba(249, 115, 22, 0.15);
  --border-gold: rgba(251, 191, 36, 0.2);
  --border-glass: rgba(255, 255, 255, 0.06);

  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-orange: 0 0 30px rgba(249, 115, 22, 0.3);
  --shadow-gold: 0 0 25px rgba(251, 191, 36, 0.25);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06);

  --grad-bg: linear-gradient(180deg, #080919 0%, #0F1028 100%);
  --grad-orange: linear-gradient(135deg, #F97316, #DC2626);
  --grad-gold: linear-gradient(135deg, #FBBF24, #F97316);
  --grad-card: linear-gradient(145deg, #171836, #0F1028);
  --grad-hero: linear-gradient(135deg, #080919 0%, #150B30 45%, #0A1A18 100%);
  --grad-overlay: linear-gradient(180deg, transparent 0%, rgba(8, 9, 25, 0.95) 100%);

  --font-main: 'Exo 2', sans-serif;
  --font-head: 'Rajdhani', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;

  --t-fast: 0.18s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;
  --header-h: 72px;
}

/* --------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Skip-to-content link — accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 99999;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Breadcrumb nav */
.breadcrumb-nav {
  padding: 10px 0;
  background: transparent;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  color: var(--text-muted);
  font-size: 1rem;
}

.breadcrumb-list a {
  color: var(--orange);
}

.breadcrumb-list a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.breadcrumb-list [aria-current="page"] {
  color: var(--text-secondary);
}

/* Noscript chart fallback */
.chart-noscript {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
}

input,
textarea,
select {
  font-family: var(--font-main);
}

/* --------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orange-text {
  color: var(--orange);
}

.gold-text {
  color: var(--gold);
}

.green-text {
  color: var(--green);
}

/* --------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding: 80px 0;
}

.section--sm {
  padding: 50px 0;
}

.section--lg {
  padding: 110px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* --------------------------------------------------------
   5. SECTION LABELS & HEADINGS
   -------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
}

.section-header {
  margin-bottom: 50px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* --------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--t-fast);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.55);
}

.btn-gold {
  background: var(--grad-gold);
  color: #080919;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(251, 191, 36, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}

.btn-outline:hover {
  background: rgba(249, 115, 22, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* tracker button in header */
.btn-tracker {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.45);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulseBtn 2.5s infinite;
}

@keyframes pulseBtn {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.45);
  }

  50% {
    box-shadow: 0 4px 35px rgba(249, 115, 22, 0.75);
  }
}

/* --------------------------------------------------------
   7. HEADER
   -------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8, 9, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--t-base);
}

.site-header.scrolled {
  background: rgba(8, 9, 25, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon::before {
  content: 'RP';
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

.logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--t-fast);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a.active {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  padding: 9px 20px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.05);
  transition: var(--t-fast);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--t-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 9, 25, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  transition: var(--t-fast);
}

.mobile-nav a:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--text-white);
  border-color: var(--border);
}

.mobile-nav .btn-tracker {
  margin-top: 12px;
  width: 100%;
  text-align: center;
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 1rem;
}

.mobile-nav-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.mobile-nav-actions a {
  flex: 1;
  justify-content: center;
  font-size: 0.9rem;
}

/* --------------------------------------------------------
   8. HERO
   -------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-head);
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.hero-screen {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-orange);
}

/* --------------------------------------------------------
   9. TICKER / SCROLLING BANNER
   -------------------------------------------------------- */
.ticker-wrap {
  background: rgba(249, 115, 22, 0.08);
  border-top: 1px solid rgba(249, 115, 22, 0.15);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.ticker-item .winner {
  color: var(--gold);
}

.ticker-item .amount {
  color: var(--green);
  font-weight: 700;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------
   10. CARDS
   -------------------------------------------------------- */
.card {
  background: var(--grad-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.card-icon-orange {
  background: rgba(249, 115, 22, 0.15);
}

.card-icon-gold {
  background: rgba(251, 191, 36, 0.15);
}

.card-icon-green {
  background: rgba(34, 197, 94, 0.15);
}

.card-icon-purple {
  background: rgba(139, 92, 246, 0.15);
}

/* Game cards */
.game-card {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--t-base);
}

.game-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-orange);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 25, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--t-base);
}

.game-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 25, 0.95));
}

.game-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  display: block;
}

.game-card-provider {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.rtp-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(8, 9, 25, 0.85);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}

/* Bonus cards */
.bonus-card {
  background: var(--grad-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--t-base);
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.bonus-card-header {
  padding: 28px 24px 20px;
  position: relative;
}

.bonus-card-body {
  padding: 0 24px 24px;
}

.bonus-amount {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.bonus-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

.tag-orange {
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
}

.tag-gold {
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold);
}

.tag-green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.tag-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple);
}

.bonus-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.bonus-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.bonus-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* --------------------------------------------------------
   11. TABLES
   -------------------------------------------------------- */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-glass);
}

.rpc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.rpc-table thead tr {
  background: rgba(249, 115, 22, 0.08);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.rpc-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}

.rpc-table td {
  padding: 14px 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-glass);
  vertical-align: middle;
}

.rpc-table tr:last-child td {
  border-bottom: none;
}

.rpc-table tbody tr {
  transition: var(--t-fast);
}

.rpc-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.rpc-table td strong,
.rpc-table td b {
  color: var(--text-white);
}

.rpc-table .pill {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.pill-green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
}

.pill-orange {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}

.pill-gold {
  background: rgba(251, 191, 36, 0.12);
  color: var(--gold);
}

.pill-red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
}

.pill-gray {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* Rating stars inline */
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* --------------------------------------------------------
   12. CHARTS
   -------------------------------------------------------- */
.chart-box {
  background: var(--grad-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.chart-box-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-wrap {
  position: relative;
  height: 280px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.chart-wrap-tall {
  height: 360px;
}

.chart-wrap-sm {
  height: 200px;
}

/* --------------------------------------------------------
   13. STATS / COUNTER SECTION
   -------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-glass);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.stat-item {
  background: var(--bg-card);
  padding: 36px 24px;
  text-align: center;
  transition: var(--t-base);
}

.stat-item:hover {
  background: var(--bg-card-hover);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------
   14. PAYMENT METHOD CARDS
   -------------------------------------------------------- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--t-base);
  cursor: default;
}

.payment-item:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.payment-item .p-icon {
  width: 60px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.payment-item .p-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* --------------------------------------------------------
   15. VIP TIERS
   -------------------------------------------------------- */
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-lg);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transition: var(--t-base);
}

.tier-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}

.tier-card:hover {
  transform: translateY(-4px);
}

.tier-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.tier-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.tier-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tier-points {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tier-perk {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tier-perk::before {
  content: '★';
  font-size: 0.65rem;
  color: var(--gold);
}

/* --------------------------------------------------------
   16. FORMS (Login / Register)
   -------------------------------------------------------- */
.form-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 24px 60px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.form-page::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.form-box {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  z-index: 1;
}

.form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-orange);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.form-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.form-sub {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  color: var(--text-white);
  font-size: 0.92rem;
  transition: var(--t-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-glass);
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-footer a {
  color: var(--orange);
  font-weight: 600;
}

/* --------------------------------------------------------
   17. FEATURES / BENEFITS
   -------------------------------------------------------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  transition: var(--t-fast);
}

.feature-item:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.feature-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------
   18. MOBILE PHONE MOCKUP
   -------------------------------------------------------- */
.phone-mockup {
  width: 260px;
  height: 520px;
  background: var(--bg-card);
  border: 2px solid rgba(249, 115, 22, 0.3);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(249, 115, 22, 0.15);
  flex-shrink: 0;
}

.phone-notch {
  width: 100px;
  height: 26px;
  background: var(--bg-card);
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  border-left: 2px solid rgba(249, 115, 22, 0.2);
  border-right: 2px solid rgba(249, 115, 22, 0.2);
}

.phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  overflow: hidden;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------
   19. ABOUT / AUTHOR
   -------------------------------------------------------- */
.author-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-xl);
  padding: 36px;
}

.author-avatar {
  width: 160px;
  height: 160px;
  border-radius: var(--r-xl);
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--border);
}

.author-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.author-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.8;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--t-fast);
}

.author-social a:hover {
  color: var(--orange);
  border-color: var(--border);
}

/* --------------------------------------------------------
   20. SEO TEXT SECTION
   -------------------------------------------------------- */
.seo-section {
  padding: 70px 0;
  border-top: 1px solid var(--border-glass);
}

.seo-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 14px;
}

.seo-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: var(--orange);
}

.seo-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.seo-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.seo-content ul li {
  margin-bottom: 6px;
  font-size: 0.93rem;
}

.seo-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------
   21. BREADCRUMBS
   -------------------------------------------------------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: calc(var(--header-h) + 20px) 0 0;
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: var(--t-fast);
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs span {
  color: var(--text-secondary);
}

.breadcrumbs .sep {
  color: var(--text-muted);
  opacity: 0.5;
}

/* --------------------------------------------------------
   22. PAGE HERO (inner pages)
   -------------------------------------------------------- */
.page-hero {
  padding: calc(var(--header-h) + 50px) 0 50px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* --------------------------------------------------------
   23. PROGRESS BARS
   -------------------------------------------------------- */
.progress-bar-wrap {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-pill);
  height: 8px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--grad-orange);
  transition: width 1s ease;
}

/* --------------------------------------------------------
   24. ACCORDION
   -------------------------------------------------------- */
.accordion-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 10px;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--t-fast);
  text-align: left;
}

.accordion-header:hover {
  background: var(--bg-card-hover);
}

.accordion-header .chevron {
  transition: var(--t-fast);
  color: var(--text-muted);
}

.accordion-item.open .accordion-header .chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.accordion-body {
  display: none;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* --------------------------------------------------------
   25. PROVIDER LOGOS STRIP
   -------------------------------------------------------- */
.providers-strip {
  overflow: hidden;
  position: relative;
}

.providers-track {
  display: flex;
  gap: 20px;
  animation: providerScroll 20s linear infinite;
  width: max-content;
}

.provider-logo {
  width: 130px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--t-fast);
}

.provider-logo:hover {
  color: var(--text-primary);
  border-color: var(--border);
}

@keyframes providerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------
   26. FOOTER
   -------------------------------------------------------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 14px 0 20px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-licenses {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.license-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--t-fast);
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--red);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.rg-logos {
  display: flex;
  gap: 10px;
  align-items: center;
}

.rg-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --------------------------------------------------------
   27. COOKIE BANNER
   -------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-card);
  z-index: 2000;
  backdrop-filter: blur(20px);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.83rem;
  color: var(--text-muted);
  flex: 1;
}

.cookie-banner a {
  color: var(--orange);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* --------------------------------------------------------
   28. ANIMATIONS
   -------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

/* Glow pulse for CTA */
@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
  }
}

.glow-pulse {
  animation: glowPulse 2.5s infinite;
}

/* Floating animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.float {
  animation: float 4s ease-in-out infinite;
}

/* Spin */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 8s linear infinite;
}

/* --------------------------------------------------------
   29. UTILITY
   -------------------------------------------------------- */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.divider {
  height: 1px;
  background: var(--border-glass);
  margin: 40px 0;
}

.tag-new {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  vertical-align: middle;
}

/* --------------------------------------------------------
   30. RESPONSIVE
   -------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vip-tiers {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .btn-login { display: none; }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 280px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-social {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .btn-login { display: none; }

  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 55px 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vip-tiers {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .btn-xl {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .cookie-banner {
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-box {
    padding: 28px 20px;
  }

  .author-avatar {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 400px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .vip-tiers {
    grid-template-columns: 1fr;
  }
}