/* ============================================================
   flashscore.homes - design-3433.css
   All custom classes use the w3433- prefix.
   Palette: #1E1E1E | #FFFACD | #9370DB | #C71585 | #FFE135
   Mobile-first, max-width 430px.
   ============================================================ */

:root {
  --w3433-bg: #1E1E1E;
  --w3433-bg-2: #161616;
  --w3433-bg-3: #242424;
  --w3433-text: #FFFACD;
  --w3433-purple: #9370DB;
  --w3433-pink: #C71585;
  --w3433-yellow: #FFE135;
  --w3433-muted: #b8b8b8;
  --w3433-line: rgba(255, 250, 205, 0.12);
  --w3433-radius: 14px;
  --w3433-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { font-size: 62.5%; }

body {
  margin: 0;
  padding: 0;
  background: var(--w3433-bg);
  color: var(--w3433-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a { color: var(--w3433-yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
.w3433-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
  border-bottom: 1px solid var(--w3433-line);
  box-shadow: var(--w3433-shadow);
}
.w3433-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.w3433-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--w3433-text);
  font-weight: 700;
  font-size: 1.7rem;
}
.w3433-brand img {
  width: 28px; height: 28px;
  border-radius: 8px;
}
.w3433-brand .w3433-brand-accent {
  color: var(--w3433-yellow);
}
.w3433-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.w3433-btn {
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  min-height: 36px;
}
.w3433-btn:active { transform: scale(0.96); }
.w3433-btn-login {
  background: transparent;
  color: var(--w3433-text);
  border: 1px solid var(--w3433-purple);
}
.w3433-btn-register {
  background: linear-gradient(135deg, var(--w3433-pink), var(--w3433-yellow));
  color: #1E1E1E;
}
.w3433-menubtn {
  background: transparent;
  border: 1px solid var(--w3433-line);
  color: var(--w3433-text);
  width: 36px; height: 36px;
  border-radius: 10px;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------- Mobile menu ---------- */
#w3433-mobile-menu {
  display: none;
  background: var(--w3433-bg-3);
  border-top: 1px solid var(--w3433-line);
  padding: 0.8rem 1.2rem 1.2rem;
}
#w3433-mobile-menu.w3433-menu-open { display: block; }
.w3433-mobile-links {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.w3433-mobile-links a {
  display: block;
  background: var(--w3433-bg-2);
  color: var(--w3433-text);
  border: 1px solid var(--w3433-line);
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 1.3rem;
}

/* ---------- Hero / Carousel ---------- */
.w3433-main { padding-top: 6.5rem; padding-bottom: 9rem; }

.w3433-carousel {
  position: relative;
  margin: 1.2rem 0;
  border-radius: var(--w3433-radius);
  overflow: hidden;
  box-shadow: var(--w3433-shadow);
}
.w3433-slide {
  display: none;
  position: relative;
}
.w3433-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.w3433-slide-active { display: block; }
.w3433-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--w3433-yellow);
  font-weight: 700;
  font-size: 1.4rem;
}
.w3433-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
}
.w3433-dot {
  width: 9px; height: 9px;
  background: rgba(255,250,205,0.3);
  border-radius: 50%;
  cursor: pointer;
}
.w3433-dot-active { background: var(--w3433-yellow); }

/* ---------- Section & headings ---------- */
.w3433-section { margin: 2rem 0; }
.w3433-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--w3433-text);
}
.w3433-section-title .w3433-accent { color: var(--w3433-yellow); }
.w3433-section-title .w3433-purple-word { color: var(--w3433-purple); }
.w3433-section-title .w3433-pink-word { color: var(--w3433-pink); }
.w3433-section-sub {
  font-size: 1.25rem;
  color: var(--w3433-muted);
  margin: 0 0 1rem;
}

.w3433-h1 {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 1.4rem 0 0.6rem;
  color: var(--w3433-text);
}
.w3433-h1 .w3433-accent { color: var(--w3433-yellow); }

/* ---------- Game grid ---------- */
.w3433-gamegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 0.6rem 0;
}
.w3433-gamecard {
  background: var(--w3433-bg-3);
  border: 1px solid var(--w3433-line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease;
  text-align: center;
}
.w3433-gamecard:active { transform: scale(0.96); }
.w3433-gamecard img {
  width: 100%;
  height: 88px;
  object-fit: cover;
}
.w3433-gamename {
  font-size: 1.1rem;
  color: var(--w3433-text);
  padding: 0.4rem 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w3433-category-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.6rem 0 0.6rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--w3433-text);
}
.w3433-category-head i { color: var(--w3433-yellow); }

/* ---------- CTA banner ---------- */
.w3433-cta {
  background: linear-gradient(135deg, var(--w3433-pink), var(--w3433-purple));
  border-radius: var(--w3433-radius);
  padding: 1.3rem;
  margin: 1.5rem 0;
  color: #fff;
  text-align: center;
  box-shadow: var(--w3433-shadow);
}
.w3433-cta h3 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}
.w3433-cta p { margin: 0 0 0.9rem; font-size: 1.25rem; opacity: 0.95; }
.w3433-cta .w3433-btn {
  background: var(--w3433-yellow);
  color: #1E1E1E;
  font-size: 1.35rem;
  padding: 0.7rem 1.6rem;
}

/* ---------- Text link rows ---------- */
.w3433-prose { font-size: 1.35rem; line-height: 1.6; color: var(--w3433-text); }
.w3433-prose p { margin: 0.6rem 0; }
.w3433-promo-link {
  color: var(--w3433-yellow);
  font-weight: 700;
  cursor: pointer;
}
.w3433-list {
  margin: 0.6rem 0;
  padding-left: 1.4rem;
  font-size: 1.3rem;
}
.w3433-list li { margin: 0.4rem 0; }

/* ---------- Cards / grid modules ---------- */
.w3433-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0.8rem 0;
}
.w3433-card {
  background: var(--w3433-bg-3);
  border: 1px solid var(--w3433-line);
  border-radius: 12px;
  padding: 0.9rem;
  font-size: 1.25rem;
}
.w3433-card h4 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  color: var(--w3433-yellow);
}
.w3433-card i { color: var(--w3433-purple); }

.w3433-rtp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--w3433-line);
  font-size: 1.25rem;
}
.w3433-rtp-row:last-child { border-bottom: none; }
.w3433-rtp-row .w3433-rtp-val {
  color: var(--w3433-yellow);
  font-weight: 800;
}

/* ---------- Testimonials ---------- */
.w3433-quote {
  background: var(--w3433-bg-3);
  border-left: 3px solid var(--w3433-yellow);
  padding: 0.8rem 1rem;
  margin: 0.6rem 0;
  border-radius: 8px;
  font-size: 1.25rem;
}
.w3433-quote .w3433-quote-author {
  display: block;
  color: var(--w3433-purple);
  font-size: 1.15rem;
  margin-top: 0.3rem;
  font-weight: 700;
}

/* ---------- Payment / winners ---------- */
.w3433-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0;
}
.w3433-chip {
  background: var(--w3433-bg-3);
  border: 1px solid var(--w3433-line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 1.15rem;
  color: var(--w3433-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.w3433-winner {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--w3433-line);
}
.w3433-winner span:last-child { color: var(--w3433-yellow); font-weight: 700; }

/* ---------- Footer ---------- */
.w3433-footer {
  background: var(--w3433-bg-2);
  border-top: 1px solid var(--w3433-line);
  margin-top: 2rem;
  padding: 1.5rem 0 7rem;
}
.w3433-footer .w3433-container { padding-bottom: 1rem; }
.w3433-footer p { font-size: 1.25rem; color: var(--w3433-muted); margin: 0.4rem 0; }
.w3433-footer h4 {
  color: var(--w3433-yellow);
  margin: 1rem 0 0.5rem;
  font-size: 1.35rem;
}
.w3433-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.6rem 0;
}
.w3433-footer-links a {
  font-size: 1.2rem;
  color: var(--w3433-text);
}
.w3433-promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.w3433-promo-row .w3433-btn {
  background: var(--w3433-purple);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
}
.w3433-copyright {
  text-align: center;
  font-size: 1.15rem;
  color: var(--w3433-muted);
  margin-top: 1rem;
}

/* ---------- Bottom nav ---------- */
.w3433-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  background: #111;
  border-top: 1px solid var(--w3433-line);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.w3433-bottombtn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--w3433-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: color 0.15s ease, transform 0.15s ease;
}
.w3433-bottombtn i { font-size: 22px; }
.w3433-bottombtn:active { transform: scale(0.92); }
.w3433-bottombtn-active { color: var(--w3433-yellow); }
.w3433-bottombtn-home { color: var(--w3433-yellow); }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .w3433-bottomnav { display: none; }
  .w3433-main { padding-bottom: 3rem; }
  .w3433-footer { padding-bottom: 2rem; }
  .w3433-header-inner, .w3433-container { max-width: 430px; }
}

@media (max-width: 768px) {
  .w3433-main { padding-bottom: 90px; }
}
