/* ============================================
   1Red Casino - App Page Stylesheet
   ============================================ */

:root{
  --bg:           #0B1230;
  --bg-2:         #0F1738;
  --bg-3:         #14204C;
  --surface:      #1A2548;
  --surface-2:    #232D58;
  --border:       #283168;
  --border-2:     #353F7A;
  --text:         #FFFFFF;
  --muted:        #9098BA;
  --muted-2:      #6C7396;
  --red:          #FF3856;
  --red-2:        #D62847;
  --red-3:        #FF5670;
  --red-soft:     rgba(255, 56, 86, 0.12);
  --red-glow:     rgba(255, 56, 86, 0.45);
  --yellow:       #FFCD3C;
  --yellow-2:     #FFB820;
  --purple:       #8E44E8;
  --purple-2:     #B569FF;
  --purple-soft:  rgba(142, 68, 232, 0.15);
  --grad-promo:   linear-gradient(135deg, #6E2DC9 0%, #FF3856 100%);
  --grad-promo-2: linear-gradient(135deg, #FF3856 0%, #FF8A3D 100%);
  --radius:       14px;
  --radius-lg:    20px;
  --shadow:       0 8px 30px rgba(0,0,0,0.4);
  --shadow-red:   0 8px 30px rgba(255,56,86,0.35);
  --container:    1240px;
}

*,
*::before,
*::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 85% -10%, rgba(142, 68, 232, 0.18), transparent 50%),
    radial-gradient(circle at 10% 25%, rgba(255, 56, 86, 0.1), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(142, 68, 232, 0.08), transparent 50%);
  background-attachment: fixed;
}

img{ max-width:100%; display:block; }
a{ color: var(--red); text-decoration: none; transition: color .2s ease; }
a:hover{ color: var(--red-3); }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3{
  font-family: 'Bebas Neue', 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
h1{
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.005em;
}
h2{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3{ font-size: 1.25rem; }
p{ margin: 0 0 14px; }
.muted{ color: var(--muted); }
.small{ font-size: .88rem; }
.accent{ color: var(--red); }
.accent-yellow{ color: var(--yellow); }

/* ============================================
   HEADER
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 48, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-mark{
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(255,56,86,0.45));
}
.main-nav{
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link{
  color: var(--text);
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-link:hover{
  background: var(--surface);
  color: var(--red-3);
}
.header-cta{
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger{
  display: none;
  background: transparent;
  border: 1px solid var(--border-2);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.mobile-nav{
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px 24px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.mobile-nav.open{ display: flex; }
.mobile-nav .nav-link{ padding: 12px 14px; }
.btn-block{ width: 100%; justify-content: center; }

/* ============================================
   BUTTONS
   ============================================ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-primary{
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(255,56,86,0.45);
}
.btn-primary:hover{
  background: linear-gradient(135deg, var(--red-3) 0%, var(--red) 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255,56,86,0.55);
}
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover{
  background: var(--surface);
  color: var(--text);
  border-color: var(--red);
}
.btn-outline{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-outline:hover{
  border-color: var(--red);
  color: var(--red-3);
}
.btn-yellow{
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-2) 100%);
  color: #1A0E00;
  box-shadow: 0 4px 16px rgba(255,205,60,0.35);
}
.btn-yellow:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255,205,60,0.5);
  color: #1A0E00;
}
.btn-sm{ padding: 7px 14px; font-size: .8rem; }
.btn-lg{ padding: 14px 28px; font-size: .98rem; }
.btn-xl{ padding: 18px 36px; font-size: 1.05rem; }

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  padding: 70px 0 50px;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,56,86,0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after{
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(142,68,232,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge{
  display: inline-block;
  background: var(--red-soft);
  color: var(--red-3);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255,56,86,0.3);
  font-family: 'Bebas Neue', sans-serif;
}
.lead{
  font-size: 1.1rem;
  color: var(--muted);
  margin: 16px 0 28px;
  max-width: 600px;
}
.hero-actions{
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-perks{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-perks li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: var(--muted);
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  display: inline-block;
  flex-shrink: 0;
}

/* Hero promo card with red-purple gradient */
.hero-card{ position: relative; }
.hero-card-inner{
  background: var(--grad-promo);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255,56,86,0.3), 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-card-inner::before{
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-card-inner::after{
  content: "";
  position: absolute;
  bottom: -60%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,205,60,0.15), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-card-tag{
  display: inline-block;
  background: rgba(0,0,0,0.3);
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
}
.hero-card-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.hero-card-amount{
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  color: var(--yellow);
  line-height: 1;
  margin: 8px 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}
.hero-card-amount sub{
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 4px;
}
.hero-card-sub{
  color: rgba(255,255,255,0.9);
  font-size: .95rem;
  margin: 0 0 22px;
  position: relative;
  z-index: 2;
}
.hero-card-list{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.hero-card-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}
.hero-card-list li::before{
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: #1A0E00;
  font-weight: 800;
  font-size: .78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card .btn{
  position: relative;
  z-index: 2;
}
.hero-card-note{
  margin-top: 14px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 2;
}

/* ============================================
   SECTIONS
   ============================================ */
.section{
  padding: 70px 0;
  position: relative;
}
.section-alt{
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head{
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head p{
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.section-head h2{ margin-bottom: 14px; }
.center-cta{
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ============================================
   PROSE
   ============================================ */
.prose{
  max-width: 880px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
}
.prose p{
  margin: 0 0 18px;
  color: #C5CADB;
}
.prose p strong{ color: var(--text); font-weight: 600; }
.prose h3{
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: var(--text);
}
.prose h3:first-child{ margin-top: 0; }
.prose h3 .accent{ color: var(--red-3); }
.prose ul,
.prose ol{
  margin: 0 0 18px;
  padding-left: 20px;
  color: #C5CADB;
}
.prose li{ margin-bottom: 8px; line-height: 1.7; }
.prose li strong{ color: var(--text); font-weight: 600; }

/* ============================================
   GRIDS
   ============================================ */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ============================================
   CARDS
   ============================================ */
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover{ border-color: var(--border-2); }
.card h3{ margin-bottom: 16px; color: var(--text); }

/* ============================================
   STAT STRIP
   ============================================ */
.stat-strip{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell{
  background: var(--surface);
  padding: 28px 22px;
  text-align: center;
  transition: background .2s ease;
}
.stat-cell:hover{ background: var(--surface-2); }
.stat-value{
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
  text-shadow: 0 0 24px rgba(255,205,60,0.25);
}
.stat-label{
  display: block;
  font-size: .76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ============================================
   PERK ROW (compact inline stat blocks)
   ============================================ */
.perk-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.perk-cell{
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 16px 18px;
}
.perk-cell strong{
  display: block;
  color: var(--yellow);
  font-size: 1.4rem;
  margin-bottom: 2px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}
.perk-cell span{
  color: var(--muted);
  font-size: .88rem;
}

/* ============================================
   PROVIDER CHIPS
   ============================================ */
.providers{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 24px;
}
.provider-chip{
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s ease;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.provider-chip:hover{
  border-color: var(--red);
  color: var(--red-3);
  background: var(--red-soft);
}

/* ============================================
   DATA TABLE
   ============================================ */
.table-wrap{
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.data-table{
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.data-table thead{ background: var(--bg-3); }
.data-table th{
  text-align: left;
  padding: 16px 20px;
  font-weight: 700;
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  font-family: 'Bebas Neue', sans-serif;
}
.data-table td{
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-table tbody tr:last-child td{ border-bottom: none; }
.data-table tbody tr{ transition: background .15s ease; }
.data-table tbody tr:hover{ background: var(--bg-3); }
.data-table td strong{ color: var(--text); font-weight: 600; }

.chip{
  display: inline-block;
  background: var(--surface-2);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
}
.chip-red{ background: var(--red-soft); color: var(--red-3); }
.chip-yes{ background: var(--red-soft); color: var(--red-3); }
.chip-yes::before{ content: "✓ "; }
.chip-no{ background: rgba(140,148,180,0.12); color: var(--muted); }
.chip-no::before{ content: "✗ "; }

/* ============================================
   LISTS
   ============================================ */
.steps{
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.steps li{
  position: relative;
  padding-left: 40px;
  counter-increment: step;
  color: var(--muted);
}
.steps li::before{
  content: counter(step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  box-shadow: 0 0 12px rgba(255,56,86,0.4);
}
.steps li strong{ color: var(--text); }

.check-list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li{
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.check-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}
.check-list li strong{ color: var(--text); }

/* ============================================
   PLATFORM TABS (iOS / Android instructions)
   ============================================ */
.platforms{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.platform-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.platform-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-promo);
}
.platform-card.android::before{ background: var(--grad-promo-2); }
.platform-header{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.platform-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-3);
}
.platform-card.android .platform-icon{ color: var(--yellow); }
.platform-icon svg{ width: 24px; height: 24px; }
.platform-title{
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
  margin: 0;
}
.platform-sub{ color: var(--muted); margin: 0; font-size: .88rem; }

/* ============================================
   CALLOUT
   ============================================ */
.callout{
  display: flex;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}
.callout p{ margin: 0; color: var(--muted); }
.callout-icon{
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: 'Bebas Neue', sans-serif;
}

/* ============================================
   FAQ
   ============================================ */
.faq{
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item:hover{ border-color: var(--border-2); }
.faq-item[open]{ border-color: var(--red); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] summary::after{ content: "-"; }
.faq-item p{
  padding: 0 24px 22px;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta{
  position: relative;
  padding: 80px 0;
  background: var(--grad-promo);
  overflow: hidden;
}
.final-cta::before{
  content: "";
  position: absolute;
  top: -200px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,205,60,0.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta::after{
  content: "";
  position: absolute;
  bottom: -200px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.final-cta h2{ margin-bottom: 10px; color: white; }
.final-cta p{ color: rgba(255,255,255,0.9); margin: 0; font-size: 1.05rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer{
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col .footer-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-link{
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: .94rem;
  transition: color .2s ease;
}
.footer-link:hover{ color: var(--red-3); }
.footer-badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.badge-pill{
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}
.footer-bottom{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  margin-top: 20px;
}
.footer-bottom p{
  margin: 0;
  font-size: .84rem;
  color: var(--muted-2);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px){
  .hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .hero-card{ max-width: 480px; margin: 0 auto; width: 100%; }
  .stat-strip{ grid-template-columns: repeat(3, 1fr); }
  .perk-row{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px){
  .main-nav,
  .header-cta{ display: none; }
  .burger{ display: flex; margin-left: auto; }
  .header-inner{ height: 64px; gap: 16px; }
  .logo-mark{ height: 28px; }

  .hero{ padding: 50px 0 40px; }
  .section{ padding: 50px 0; }
  .section-head{ margin-bottom: 32px; }

  .hero-actions{ flex-direction: column; }
  .hero-actions .btn{ width: 100%; }

  .grid-2,
  .platforms{ grid-template-columns: 1fr; }

  .data-table th,
  .data-table td{ padding: 12px 14px; font-size: .88rem; }

  .final-cta-inner{ flex-direction: column; text-align: center; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }

  .card,
  .platform-card{ padding: 22px; }
  .hero-card-inner{ padding: 28px 22px; }
  .hero-card-amount{ font-size: 3.5rem; }
}

@media (max-width: 640px){
  .stat-strip{ grid-template-columns: 1fr 1fr; }
  .perk-row{ grid-template-columns: 1fr; }
  .stat-cell{ padding: 22px 16px; }
  .stat-value{ font-size: 1.8rem; }
}

@media (max-width: 480px){
  .container{ padding: 0 18px; }
  h1{ font-size: 2rem; }
  h2{ font-size: 1.5rem; }
  .lead{ font-size: 1rem; }
  .btn-lg{ padding: 12px 22px; }
  .btn-xl{ padding: 14px 26px; font-size: 1rem; }
}

/* ============================================
   LOGIN FORM CARD (Login page hero side card)
   ============================================ */
.login-form-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.login-form-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-promo);
}
.login-form-card::after{
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,56,86,0.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.login-form-head{
  text-align: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.login-form-head h3{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.login-form-head p{
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.login-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.form-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label{
  font-size: .76rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}
.form-input{
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.form-input:focus{
  outline: none;
  border-color: var(--red);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(255,56,86,0.15);
}
.form-input::placeholder{ color: var(--muted-2); }
.form-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  margin: 4px 0 6px;
}
.remember{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.remember input{
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}
.forgot-link{
  color: var(--red-3);
  font-weight: 600;
}
.form-divider{
  position: relative;
  text-align: center;
  margin: 4px 0;
  color: var(--muted-2);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Bebas Neue', sans-serif;
}
.form-divider::before,
.form-divider::after{
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 1px;
  background: var(--border);
}
.form-divider::before{ left: 0; }
.form-divider::after{ right: 0; }
.form-bottom{
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 12px;
}
.form-bottom a{
  color: var(--red-3);
  font-weight: 700;
}

/* ============================================
   ISSUE CARDS GRID (Common login problems)
   ============================================ */
.issue-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.issue-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.issue-card:hover{
  transform: translateY(-3px);
  border-color: var(--red);
}
.issue-icon{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
  border: 1px solid rgba(255,56,86,0.25);
}
.issue-card h3{
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.issue-card p{
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

/* ============================================
   FEATURES LIST (account features after login)
   ============================================ */
.features-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.feature-row{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color .2s ease;
}
.feature-row:hover{ border-color: var(--border-2); }
.feature-bullet{
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  box-shadow: 0 0 10px var(--red-glow);
}
.feature-row h3{ margin: 0 0 4px; font-size: 1.05rem; }
.feature-row p{ margin: 0; color: var(--muted); font-size: .92rem; }

/* ============================================
   TERMS / MINI TABLE
   ============================================ */
.terms-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.terms-card h3{ margin-bottom: 18px; font-size: 1.25rem; }
.mini-table{
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.mini-table tr{ border-bottom: 1px solid var(--border); }
.mini-table tr:last-child{ border-bottom: none; }
.mini-table td{ padding: 11px 0; vertical-align: top; }
.mini-table td:first-child{ color: var(--muted); width: 50%; }
.mini-table td strong{ color: var(--text); font-weight: 600; }

@media (max-width: 1024px){
  .issue-grid{ grid-template-columns: 1fr 1fr; }
  .features-list{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .issue-grid{ grid-template-columns: 1fr; }
}
