/* FiliBet stylesheet - prefix sa75 */
/* Palette: #BF360C | #E65100 | #FFEB3B | #CD853F | #2C3E50 */

:root {
  --sa75-primary: #E65100;
  --sa75-dark: #BF360C;
  --sa75-accent: #FFEB3B;
  --sa75-tan: #CD853F;
  --sa75-bg: #2C3E50;
  --sa75-bg2: #1f2d3a;
  --sa75-text: #f5f7fa;
  --sa75-muted: #b8c2cc;
  --sa75-card: #34495e;
  --sa75-line: rgba(255,255,255,.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--sa75-bg);
  color: var(--sa75-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sa75-accent); text-decoration: none; }
a:hover { color: #fff; }

/* Mobile-first container: literal max-width: 430px */
.sa75-wrapper {
  max-width: 430px;
  margin: 0 auto;
  background: var(--sa75-bg);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 24px rgba(0,0,0,.25);
}

main.sa75-main { padding-top: 56px; padding-bottom: 80px; }

/* ---------- Header ---------- */
.sa75-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--sa75-dark), var(--sa75-primary));
  border-bottom: 2px solid var(--sa75-accent);
  max-width: 430px;
  margin: 0 auto;
}
.sa75-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1rem;
  height: 56px;
}
.sa75-brand { display: flex; align-items: center; gap: .6rem; }
.sa75-brand img { width: 28px; height: 28px; border-radius: 6px; }
.sa75-brand-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .5px;
}
.sa75-brand-text span { color: var(--sa75-accent); }
.sa75-header-actions { display: flex; align-items: center; gap: .5rem; }
.sa75-menu-btn {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 8px;
}
.sa75-menu-btn:hover { background: rgba(255,255,255,.12); }

/* Auth buttons */
.sa75-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 0;
  border-radius: 20px;
  padding: .6rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  min-height: 36px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sa75-btn:active { transform: scale(.96); }
.sa75-btn-login {
  background: #fff;
  color: var(--sa75-dark);
}
.sa75-btn-register {
  background: var(--sa75-accent);
  color: var(--sa75-dark);
  box-shadow: 0 3px 0 #b8930a;
}
.sa75-btn-promo {
  background: linear-gradient(90deg, var(--sa75-dark), var(--sa75-primary));
  color: #fff;
  padding: .8rem 1.6rem;
  border-radius: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  display: inline-block;
  text-align: center;
  border: 2px solid var(--sa75-accent);
}

/* Expandable mobile menu */
.sa75-mobile-menu {
  display: none;
  background: var(--sa75-bg2);
  border-top: 1px solid var(--sa75-line);
  padding: .8rem 1rem 1.2rem;
}
.sa75-mobile-menu.sa75-open { display: block; }
.sa75-mobile-menu a {
  display: block;
  padding: .9rem 1rem;
  color: var(--sa75-text);
  border-bottom: 1px solid var(--sa75-line);
  font-size: 1.4rem;
  font-weight: 500;
}
.sa75-mobile-menu a:hover { background: rgba(230,81,0,.18); color: var(--sa75-accent); }

/* ---------- Carousel ---------- */
.sa75-carousel {
  position: relative;
  margin: 1rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/8;
  background: #000;
}
.sa75-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.sa75-slide.sa75-active { opacity: 1; position: relative; }
.sa75-slide img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.sa75-dots {
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 2;
}
.sa75-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 0; cursor: pointer; padding: 0;
}
.sa75-dot.sa75-active { background: var(--sa75-accent); }

/* ---------- Sections ---------- */
.sa75-section { padding: 1.2rem 1rem; }
.sa75-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--sa75-accent);
  margin-bottom: .8rem;
  border-left: 4px solid var(--sa75-primary);
  padding-left: .6rem;
}
.sa75-section-title small {
  display: block;
  font-size: 1.2rem;
  color: var(--sa75-muted);
  font-weight: 400;
}
.sa75-lead { color: var(--sa75-muted); margin-bottom: 1rem; }
.sa75-lead b { color: var(--sa75-accent); }

/* ---------- Game grid ---------- */
.sa75-cat-head {
  display: flex; align-items: center; gap: .6rem;
  margin: 1.4rem 0 .8rem;
}
.sa75-cat-head i { color: var(--sa75-accent); font-size: 2rem; }
.sa75-cat-head h3 { font-size: 1.6rem; color: #fff; font-weight: 700; }
.sa75-cat-head .sa75-more { margin-left: auto; font-size: 1.2rem; color: var(--sa75-accent); }

.sa75-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}
.sa75-game-card {
  background: var(--sa75-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--sa75-line);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
  text-align: center;
}
.sa75-game-card:hover { transform: translateY(-2px); border-color: var(--sa75-primary); }
.sa75-game-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #000;
}
.sa75-game-card span {
  display: block;
  padding: .4rem .3rem;
  font-size: 1.05rem;
  color: var(--sa75-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Info cards / features ---------- */
.sa75-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.sa75-info-card {
  background: var(--sa75-card);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--sa75-line);
}
.sa75-info-card i { font-size: 2.4rem; color: var(--sa75-accent); margin-bottom: .4rem; }
.sa75-info-card h4 { font-size: 1.3rem; color: #fff; margin-bottom: .3rem; }
.sa75-info-card p { font-size: 1.15rem; color: var(--sa75-muted); }

/* ---------- RTP table ---------- */
.sa75-rtp-table { width: 100%; border-collapse: collapse; background: var(--sa75-card); border-radius: 10px; overflow: hidden; }
.sa75-rtp-table th, .sa75-rtp-table td {
  padding: .7rem .8rem; font-size: 1.2rem; text-align: left;
  border-bottom: 1px solid var(--sa75-line);
}
.sa75-rtp-table th { background: var(--sa75-dark); color: #fff; }
.sa75-rtp-table td.sa75-rtp-high { color: var(--75-accent, #FFEB3B); color: var(--sa75-accent); font-weight: 700; }

/* ---------- Testimonials ---------- */
.sa75-testimonial {
  background: var(--sa75-card);
  border-left: 3px solid var(--sa75-primary);
  border-radius: 8px;
  padding: .9rem 1rem;
  margin-bottom: .7rem;
}
.sa75-testimonial p { font-size: 1.2rem; color: var(--sa75-text); font-style: italic; }
.sa75-testimonial b { color: var(--sa75-accent); font-size: 1.2rem; }

/* ---------- Payment row ---------- */
.sa75-pay-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.sa75-pay-chip {
  background: var(--sa75-card);
  border: 1px solid var(--sa75-line);
  border-radius: 20px;
  padding: .5rem 1rem;
  font-size: 1.2rem;
  color: var(--sa75-text);
  display: inline-flex; align-items: center; gap: .4rem;
}
.sa75-pay-chip i { color: var(--sa75-accent); }

/* ---------- Winners ticker ---------- */
.sa75-winner {
  display: flex; align-items: center; gap: .7rem;
  background: var(--sa75-card);
  border-radius: 8px;
  padding: .6rem .8rem;
  margin-bottom: .5rem;
}
.sa75-winner img { width: 36px; height: 36px; border-radius: 6px; }
.sa75-winner .sa75-wname { font-size: 1.2rem; color: #fff; font-weight: 600; }
.sa75-winner .sa75-wamt { margin-left: auto; color: var(--sa75-accent); font-weight: 800; font-size: 1.3rem; }

/* ---------- FAQ ---------- */
.sa75-faq-item {
  background: var(--sa75-card);
  border-radius: 8px;
  padding: .9rem 1rem;
  margin-bottom: .6rem;
}
.sa75-faq-item h4 { font-size: 1.25rem; color: var(--sa75-accent); margin-bottom: .3rem; }
.sa75-faq-item p { font-size: 1.2rem; color: var(--sa75-muted); }

/* ---------- CTA banner ---------- */
.sa75-cta {
  background: linear-gradient(135deg, var(--sa75-dark), var(--sa75-primary));
  border-radius: 14px;
  padding: 1.4rem 1rem;
  text-align: center;
  margin: 1.2rem 1rem;
  border: 2px solid var(--sa75-accent);
}
.sa75-cta h3 { font-size: 1.8rem; color: #fff; margin-bottom: .4rem; }
.sa75-cta p { font-size: 1.2rem; color: #ffe9b0; margin-bottom: .9rem; }

/* ---------- Toast ---------- */
.sa75-toast {
  position: fixed;
  bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,.85);
  color: #fff;
  padding: .8rem 1.2rem;
  border-radius: 22px;
  font-size: 1.2rem;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  max-width: 90%;
}
.sa75-toast.sa75-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Footer ---------- */
.sa75-footer {
  background: var(--sa75-bg2);
  padding: 1.4rem 1rem 2rem;
  border-top: 2px solid var(--sa75-primary);
}
.sa75-footer p { font-size: 1.15rem; color: var(--sa75-muted); margin-bottom: .9rem; }
.sa75-footer-links {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem;
  margin-bottom: .9rem;
}
.sa75-footer-links a {
  font-size: 1.15rem;
  color: var(--sa75-text);
  text-decoration: underline;
}
.sa75-footer-links a:hover { color: var(--sa75-accent); }
.sa75-footer-copy { font-size: 1.05rem; color: var(--sa75-muted); border-top: 1px solid var(--sa75-line); padding-top: .8rem; }

/* ---------- Mobile Bottom Nav (fixed) ---------- */
.sa75-bnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(90deg, var(--sa75-dark), var(--sa75-bg2));
  border-top: 2px solid var(--sa75-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 -4px 14px rgba(0,0,0,.3);
}
.sa75-bnav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #ffe0b3;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  gap: 2px;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}
.sa75-bnav-btn i { font-size: 22px; }
.sa75-bnav-btn:active { transform: scale(.9); }
.sa75-bnav-btn.sa75-current,
.sa75-bnav-btn:hover { color: var(--sa75-accent); }
.sa75-bnav-btn .material-symbols-outlined { font-size: 24px; }

/* ---------- Help pages: rating, steps, pros/cons ---------- */
.sa75-rating-card {
  background: var(--sa75-card);
  border: 1px solid var(--sa75-line);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.sa75-stars { color: var(--sa75-accent); font-size: 1.6rem; letter-spacing: 2px; margin-bottom: .6rem; }
.sa75-rate-row { display: flex; align-items: center; gap: .8rem; margin-bottom: .6rem; font-size: 1.15rem; }
.sa75-rate-row .sa75-rate-label { width: 9.2rem; color: var(--sa75-muted); flex-shrink: 0; }
.sa75-rate-bar { flex: 1; height: .8rem; background: rgba(255,255,255,.12); border-radius: 4px; overflow: hidden; }
.sa75-rate-fill { height: 100%; background: linear-gradient(90deg, var(--sa75-dark), var(--sa75-primary)); border-radius: 4px; }
.sa75-rate-score { width: 3rem; text-align: right; color: var(--sa75-accent); font-weight: 700; }

.sa75-step {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--sa75-card);
  border: 1px solid var(--sa75-line);
  border-radius: 10px;
  padding: .9rem;
  margin-bottom: .7rem;
}
.sa75-step i { font-size: 2rem; color: var(--sa75-accent); margin-top: .2rem; }
.sa75-step h4 { font-size: 1.3rem; color: #fff; margin-bottom: .2rem; }
.sa75-step p { font-size: 1.15rem; color: var(--sa75-muted); }

.sa75-pros li, .sa75-cons li {
  list-style: none;
  padding: .55rem .2rem;
  border-bottom: 1px dashed var(--sa75-line);
  font-size: 1.2rem;
  color: var(--sa75-text);
}
.sa75-pros li i { color: #81c784; margin-right: .5rem; }
.sa75-cons li i { color: #ff8a65; margin-right: .5rem; }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .sa75-bnav { display: none; }
  main.sa75-main { padding-bottom: 40px; }
}
@media (max-width: 768px) {
  main.sa75-main { padding-bottom: 80px; }
}
