/*!
 * fsbet.click - design-6775.css
 * Mobile-first VIP casino styling. All custom classes use the "s677-" prefix.
 * Color palette: #AFEEEE | #FFDEAD | #0C0C0C | #000080 | #FFE4B5
 */

:root {
  --s677-primary: #000080;
  --s677-bg: #0C0C0C;
  --s677-bg-soft: #14141f;
  --s677-bg-card: #1b1b2b;
  --s677-text: #FFE4B5;
  --s677-text-light: #AFEEEE;
  --s677-accent: #FFDEAD;
  --s677-gold: #FFDEAD;
  --s677-ivory: #AFEEEE;
  --s677-border: rgba(175, 238, 238, 0.18);
  --s677-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { font-size: 62.5%; }
html, body { margin: 0; padding: 0; }

body {
  background: radial-gradient(120% 80% at 50% 0%, #15152a 0%, var(--s677-bg) 55%, #000 100%);
  color: var(--s677-text);
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem * 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--s677-ivory); text-decoration: none; }

/* Layout containers (mobile-first, max-width: 430px) */
.app677-noscroll { overflow: hidden; }

.s677-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
}

.s677-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 1.4rem 1.2rem 2rem;
}

/* ===== Header ===== */
.s677-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,30,0.96), rgba(12,12,20,0.92));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--s677-border);
  max-width: 430px;
  margin: 0 auto;
}
.s677-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.6rem;
  padding: 0 1rem;
  max-width: 430px;
  margin: 0 auto;
}
.s677-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--s677-gold);
  font-weight: 700;
}
.s677-brand img { width: 28px; height: 28px; border-radius: 6px; }
.s677-brand-name { font-size: 1.7rem; letter-spacing: 0.5px; }
.s677-brand-name span { color: var(--s677-ivory); }

.s677-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.s677-icon-btn {
  background: transparent;
  border: 1px solid var(--s677-border);
  color: var(--s677-ivory);
  width: 4rem; height: 4rem;
  border-radius: 10px;
  font-size: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* Buttons */
.s677-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 4rem;
  padding: 0 1.4rem;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.4rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.s677-btn:active { transform: scale(0.96); }
.s677-btn-primary {
  background: linear-gradient(135deg, #FFDEAD, #FFE4B5 60%, #000080);
  color: #0C0C0C;
  box-shadow: 0 6px 16px rgba(255, 222, 173, 0.35);
}
.s677-btn-secondary {
  background: linear-gradient(135deg, #000080, #1b1b4b);
  color: var(--s677-ivory);
  border: 1px solid var(--s677-border);
}
.s677-btn-block { width: 100%; }

/* Nav drawer */
.app677-nav {
  position: fixed;
  top: 0; left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #0a0a1f, #0C0C0C);
  border-right: 1px solid var(--s677-border);
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  z-index: 9999;
  padding: 6rem 1.4rem 2rem;
  overflow-y: auto;
}
.app677-nav.app677-open { transform: translateX(0); }
.app677-nav h3 {
  font-size: 1.3rem;
  color: var(--s677-gold);
  margin: 1.4rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.app677-nav a {
  display: block;
  padding: 1rem 0.8rem;
  border-radius: 8px;
  color: var(--s677-text);
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(175,238,238,0.08);
}
.app677-nav a:hover, .app677-nav a:focus { background: rgba(255,222,173,0.08); }

.app677-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.app677-overlay.app677-open { opacity: 1; pointer-events: auto; }

/* ===== Main ===== */
.app677-main { padding-top: 6.4rem; }

/* Hero / Carousel */
.s677-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--s677-shadow);
  border: 1px solid var(--s677-border);
  margin-bottom: 1.4rem;
}
.s677-carousel-viewport { overflow: hidden; }
.s677-carousel-track { display: flex; transition: transform 0.45s ease; }
.s677-slide { flex: 0 0 100%; position: relative; }
.s677-slide img { width: 100%; height: 200px; object-fit: cover; }
.s677-slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
  padding: 1.2rem 1rem 1rem;
}
.s677-slide-cap b { color: var(--s677-gold); font-size: 1.6rem; display: block; }
.s677-slide-cap span { color: var(--s677-ivory); font-size: 1.25rem; }
.s677-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin: 0.8rem 0 0;
}
.s677-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(175,238,238,0.35);
  border: 0; cursor: pointer; padding: 0;
}
.s677-dot.app677-active { background: var(--s677-gold); transform: scale(1.3); }

/* Headings */
.s677-h1 {
  font-size: 2.3rem;
  line-height: 1.25;
  color: var(--s677-gold);
  margin: 1.4rem 0 0.6rem;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,128,0.6);
}
.s677-h2 {
  font-size: 1.8rem;
  color: var(--s677-ivory);
  margin: 1.6rem 0 0.8rem;
  padding-left: 0.8rem;
  border-left: 4px solid var(--s677-gold);
}
.s677-h3 {
  font-size: 1.45rem;
  color: var(--s677-gold);
  margin: 1.2rem 0 0.5rem;
}
.s677-lead { color: var(--s677-text); font-size: 1.4rem; opacity: 0.92; margin: 0.4rem 0 1rem; }

/* Section card */
.s677-section {
  background: linear-gradient(180deg, rgba(20,20,31,0.85), rgba(12,12,20,0.75));
  border: 1px solid var(--s677-border);
  border-radius: 14px;
  padding: 1.4rem;
  margin-bottom: 1.4rem;
}
.s677-section p { color: var(--s677-text); font-size: 1.38rem; line-height: 1.55; margin: 0 0 0.8rem; }
.s677-text-link { color: var(--s677-gold); font-weight: 700; text-decoration: underline; }

/* Game list */
.s677-cat-title {
  font-size: 1.55rem;
  color: var(--s677-gold);
  margin: 1.6rem 0 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.s677-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.s677-game {
  background: var(--s677-bg-card);
  border: 1px solid var(--s677-border);
  border-radius: 10px;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.s677-game:hover, .s677-game:active { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,128,0.45); }
.s677-game img { width: 100%; height: 76px; object-fit: cover; border-radius: 8px; }
.s677-game-name {
  font-size: 1.1rem;
  color: var(--s677-ivory);
  margin-top: 0.4rem;
  line-height: 1.2;
  min-height: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* RTP / stats */
.s677-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.s677-stat {
  background: var(--s677-bg-card);
  border: 1px solid var(--s677-border);
  border-radius: 10px;
  padding: 0.9rem;
  text-align: center;
}
.s677-stat b { display: block; font-size: 1.8rem; color: var(--s677-gold); }
.s677-stat span { font-size: 1.15rem; color: var(--s677-ivory); }

/* Features list */
.s677-features { list-style: none; padding: 0; margin: 0; }
.s677-features li {
  padding: 0.7rem 0 0.7rem 2.4rem;
  position: relative;
  color: var(--s677-text);
  font-size: 1.38rem;
  border-bottom: 1px dashed rgba(175,238,238,0.12);
}
.s677-features li::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute; left: 0; top: 0.7rem;
  color: var(--s677-gold);
}

/* Testimonials */
.s677-quote {
  background: var(--s677-bg-card);
  border-left: 3px solid var(--s677-gold);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
}
.s677-quote p { margin: 0 0 0.4rem; color: var(--s677-text); font-size: 1.32rem; }
.s677-quote cite { color: var(--s677-ivory); font-size: 1.15rem; font-style: normal; }

/* Payment / partners */
.s677-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.s677-chip {
  background: var(--s677-bg-card);
  border: 1px solid var(--s677-border);
  border-radius: 20px;
  padding: 0.45rem 0.9rem;
  font-size: 1.2rem;
  color: var(--s677-ivory);
}

/* FAQ */
.s677-faq { margin-bottom: 0.6rem; border-bottom: 1px solid var(--s677-border); padding-bottom: 0.6rem; }
.s677-faq h3 { margin: 0.6rem 0 0.3rem; }
.s677-faq p { margin: 0; font-size: 1.34rem; color: var(--s677-text); }

/* CTA banner */
.s677-cta {
  background: linear-gradient(135deg, #000080, #15154f 60%, #FFDEAD);
  border-radius: 14px;
  padding: 1.4rem;
  text-align: center;
  margin: 1.6rem 0;
  box-shadow: var(--s677-shadow);
}
.s677-cta h2 { color: #0C0C0C; border: 0; padding: 0; }
.s677-cta p { color: rgba(12,12,12,0.85); }

/* Winners */
.s677-winner {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(175,238,238,0.12);
  font-size: 1.3rem;
}
.s677-winner b { color: var(--s677-gold); }

/* Footer */
.s677-footer {
  background: #07070f;
  border-top: 1px solid var(--s677-border);
  padding: 2rem 0 6rem;
  margin-top: 1.6rem;
}
.s677-footer p { color: var(--s677-text); font-size: 1.3rem; opacity: 0.85; margin: 0 0 0.8rem; }
.s677-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  margin: 0.6rem 0 1rem;
}
.s677-footer-links a { color: var(--s677-ivory); font-size: 1.25rem; text-decoration: underline; }
.s677-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.8rem 0; }
.s677-footer-promos button, .s677-footer-promos a {
  flex: 1 1 45%;
  min-height: 3.8rem;
}
.s677-copy { font-size: 1.15rem; color: var(--s677-ivory); opacity: 0.7; text-align: center; margin-top: 1rem; }

/* Bottom nav (mobile only) */
.s677-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, rgba(10,10,30,0.98), rgba(0,0,0,0.98));
  border-top: 1px solid var(--s677-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 430px;
  margin: 0 auto;
}
.s677-bottomnav button, .s677-bottomnav a {
  flex: 1 1 0;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: 0;
  color: var(--s677-ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.s677-bottomnav button:active, .s677-bottomnav a:active { transform: scale(0.9); }
.s677-bottomnav .app677-current { color: var(--s677-gold); }
.s677-bottomnav .material-symbols-outlined,
.s677-bottomnav .bi,
.s677-bottomnav ion-icon { font-size: 24px; }

/* Desktop */
@media (min-width: 769px) {
  .s677-bottomnav { display: none; }
  .s677-footer { padding-bottom: 2rem; }
  .app677-main { padding-bottom: 0; }
}

/* Mobile bottom padding so content is never hidden by bottom nav */
@media (max-width: 768px) {
  .app677-main { padding-bottom: 80px; }
  body { padding-bottom: 1px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
