/* === HEYROLLER CASINO — BRAND STYLESHEET === */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-deep:    #2b0a47;
  --brand-dark:    #1a0630;
  --brand-mid:     #3d1260;
  --brand-light:   #5a1d8a;
  --brand-accent:  #c84bff;
  --brand-gold:    #f5c842;
  --brand-green:   #00e676;
  --brand-red:     #ff4444;
  --text-main:     #f0e8ff;
  --text-muted:    #b09dc8;
  --text-dim:      #7a6490;
  --border:        rgba(200,75,255,0.18);
  --card-bg:       rgba(43,10,71,0.7);
  --card-border:   rgba(200,75,255,0.22);
  --shadow:        0 4px 32px rgba(200,75,255,0.12);
  --radius:        12px;
  --radius-lg:     20px;
  --ff-display:    'Oswald', sans-serif;
  --ff-body:       'Inter', sans-serif;
  --ff-ui:         'Rajdhani', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--brand-dark);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* === UTILITY === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
a { color: var(--brand-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === BONUS BANNER TOP (sticky bar) === */
.bonus-top-bar {
  background: linear-gradient(90deg, #1a0630 0%, #3d1260 40%, #c84bff 100%);
  padding: 14px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--brand-accent);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.bonus-top-bar .bar-text {
  font-family: var(--ff-ui);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}
.bonus-top-bar .bar-text span { color: var(--brand-gold); }
.btn-cta {
  display: inline-block;
  background: var(--brand-gold);
  color: #1a0630;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-cta:hover {
  background: #ffe066;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,200,66,0.45);
  text-decoration: none;
}
.btn-cta.green {
  background: var(--brand-green);
  color: #0a2a1a;
}
.btn-cta.green:hover { background: #33ff99; box-shadow: 0 6px 24px rgba(0,230,118,0.4); }
.btn-cta.purple {
  background: var(--brand-accent);
  color: #fff;
}
.btn-cta.purple:hover { background: #d966ff; box-shadow: 0 6px 24px rgba(200,75,255,0.45); }

/* === HEADER / NAV === */
header {
  background: rgba(26,6,48,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: relative;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* === LOGO (SVG/CSS/text — no images) === */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .lt-hey {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-text .lt-roller {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-text .lt-casino {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
nav a {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  text-transform: uppercase;
}
nav a:hover { color: var(--brand-accent); background: rgba(200,75,255,0.08); text-decoration: none; }
.nav-cta-btn {
  background: var(--brand-accent) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
}
.nav-cta-btn:hover { background: #d966ff !important; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #1a0630 0%, #2b0a47 50%, #3d1260 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,75,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,75,255,0.15);
  border: 1px solid rgba(200,75,255,0.4);
  color: var(--brand-accent);
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--brand-accent); }
.hero h1 .gold { color: var(--brand-gold); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
/* Rating card */
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.hc-title {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.hc-score {
  font-family: var(--ff-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
}
.hc-score span { font-size: 1.4rem; color: var(--text-muted); }
.hc-stars { display: flex; gap: 4px; margin: 10px 0 18px; }
.star { color: var(--brand-gold); font-size: 1.2rem; }
.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.hc-row:last-child { border-bottom: none; padding-bottom: 0; }
.hc-row .label { color: var(--text-muted); }
.hc-row .val { font-weight: 600; color: var(--text-main); }
.hc-row .val.green { color: var(--brand-green); }

/* === SECTIONS === */
section { padding: 64px 0; }
.section-label {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 14px;
}
.section-intro {
  color: var(--text-muted);
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,75,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card-icon svg { width: 22px; height: 22px; fill: var(--brand-accent); }
.card h3 {
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #fff;
}
.card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* === PROS/CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pc-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--card-border);
}
.pc-box h3 {
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-box.pros h3 { color: var(--brand-green); }
.pc-box.cons h3 { color: var(--brand-red); }
.pc-list { list-style: none; }
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pc-list li:last-child { border-bottom: none; }
.pc-list li .icon { flex-shrink: 0; margin-top: 2px; font-size: 0.85rem; }
.pros .pc-list li .icon { color: var(--brand-green); }
.cons .pc-list li .icon { color: var(--brand-red); }

/* === TABLE === */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 500px;
}
thead tr {
  background: linear-gradient(90deg, var(--brand-mid), var(--brand-deep));
}
thead th {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent);
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
tbody tr {
  background: rgba(43,10,71,0.45);
  transition: background 0.15s;
}
tbody tr:nth-child(even) { background: rgba(61,18,96,0.3); }
tbody tr:hover { background: rgba(200,75,255,0.07); }
tbody td {
  padding: 12px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
tbody td:first-child { color: var(--text-main); font-weight: 500; }
.tag-green {
  display: inline-block;
  background: rgba(0,230,118,0.12);
  color: var(--brand-green);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}
.tag-gold {
  display: inline-block;
  background: rgba(245,200,66,0.12);
  color: var(--brand-gold);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* === MID BANNER STRIP === */
.mid-banner {
  background: linear-gradient(100deg, #3d1260 0%, #2b0a47 50%, #1a0630 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.mid-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-banner-text .mb-label {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 6px;
}
.mid-banner-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.mid-banner-text h2 span { color: var(--brand-gold); }
.mid-banner-text p { color: var(--text-muted); font-size: 0.9rem; }

/* === RATINGS BARS === */
.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.rating-item { }
.rating-item .ri-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.rating-item .ri-head .name { color: var(--text-main); font-weight: 500; }
.rating-item .ri-head .score { color: var(--brand-accent); font-weight: 700; }
.rating-bar {
  height: 8px;
  background: rgba(200,75,255,0.12);
  border-radius: 50px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-gold));
  transition: width 0.4s ease;
}

/* === STEPS === */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  padding-top: 38px;
}
.step-num {
  position: absolute;
  top: -16px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}
.step p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: var(--text-main);
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.faq-q:hover { background: rgba(200,75,255,0.06); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* === TRUST BADGES === */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(43,10,71,0.6);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-badge svg { width: 16px; height: 16px; fill: var(--brand-green); flex-shrink: 0; }

/* === REVIEW BODY TEXT === */
.review-body { max-width: 860px; }
.review-body h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 36px 0 14px;
}
.review-body h3 {
  font-family: var(--ff-ui);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
  margin: 26px 0 10px;
  text-transform: uppercase;
}
.review-body p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.review-body ul, .review-body ol {
  margin: 0 0 16px 22px;
}
.review-body li {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}
.review-body strong { color: var(--text-main); }
.highlight-box {
  background: rgba(200,75,255,0.07);
  border-left: 3px solid var(--brand-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* === FOOTER === */
footer {
  background: var(--brand-dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.15s;
}
.footer-links li a:hover { color: var(--brand-accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.disclaimer {
  background: rgba(43,10,71,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 24px;
}

/* === DIVIDER === */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
  margin: 0;
  opacity: 0.3;
}

/* === SECTION BG VARIANTS === */
.bg-alt { background: linear-gradient(180deg, #1a0630 0%, #2b0a47 100%); }
.bg-dark { background: var(--brand-dark); }

/* === SCORE GRID === */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.score-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.score-box .sb-val {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
}
.score-box .sb-val.gold { color: var(--brand-gold); }
.score-box .sb-val.green { color: var(--brand-green); }
.score-box .sb-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--ff-ui);
  font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 44px 0; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  nav { gap: 2px; }
  nav a { font-size: 0.78rem; padding: 6px 9px; }
  .bonus-top-bar { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .mid-banner-inner { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-cta { text-align: center; }
}

@media (max-width: 400px) {
  .logo-text .lt-hey, .logo-text .lt-roller { font-size: 1.2rem; }
}
