/* 93ok apk - design-698c.css
   Mobile-first casino/gaming styles. All custom classes use w698c- prefix. */

:root {
  --w698c-primary: #DC143C;
  --w698c-primary-dark: #B01030;
  --w698c-accent: #FF6347;
  --w698c-gold: #FFEF94;
  --w698c-red: #FF0000;
  --w698c-bg: #1C2833;
  --w698c-bg-light: #2A3B4D;
  --w698c-bg-card: #243443;
  --w698c-text: #FFFFFF;
  --w698c-text-muted: #C5CCD6;
  --w698c-white: #FFFFFF;
  --w698c-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --w698c-radius: 14px;
  --w698c-radius-sm: 10px;
  --w698c-trans: 0.28s ease;
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', 'Segoe UI', system-ui, sans-serif;
  background: var(--w698c-bg);
  color: var(--w698c-text);
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--w698c-gold); text-decoration: none; }
ul { list-style: none; }

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

/* ===== Header ===== */
.w698c-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #1C2833 0%, #2A3B4D 100%);
  border-bottom: 2px solid var(--w698c-primary);
  box-shadow: var(--w698c-shadow);
}
.w698c-header-inner {
  max-width: 430px; margin: 0 auto; padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.8rem; min-height: 56px;
}
.w698c-logo {
  display: flex; align-items: center; gap: 0.6rem; flex: 1; min-width: 0;
}
.w698c-logo img { width: 30px; height: 30px; border-radius: 6px; }
.w698c-logo-text {
  font-size: 1.7rem; font-weight: 700; color: var(--w698c-gold);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.w698c-logo-text span { color: var(--w698c-primary); }
.w698c-header-btns { display: flex; gap: 0.5rem; align-items: center; }
.w698c-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.2rem; font-size: 1.3rem; font-weight: 700;
  border-radius: 24px; border: none; cursor: pointer;
  transition: transform var(--w698c-trans), background var(--w698c-trans);
  min-height: 36px; text-decoration: none; white-space: nowrap;
}
.w698c-btn:active { transform: scale(0.95); }
.w698c-btn-register {
  background: linear-gradient(135deg, #FF0000 0%, #DC143C 100%);
  color: #fff; box-shadow: 0 3px 10px rgba(220, 20, 60, 0.5);
}
.w698c-btn-login {
  background: linear-gradient(135deg, #FFEF94 0%, #FF6347 100%);
  color: #1C2833; box-shadow: 0 3px 10px rgba(255, 99, 71, 0.4);
}
.w698c-menu-btn {
  background: transparent; border: 1px solid var(--w698c-primary);
  color: var(--w698c-gold); width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.8rem;
}

/* ===== Mobile menu ===== */
.w698c-mobile-menu {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 9999;
  background: #1C2833; border-bottom: 2px solid var(--w698c-primary);
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.w698c-mobile-menu.w698c-menu-open { max-height: 480px; box-shadow: var(--w698c-shadow); }
.w698c-mobile-menu ul { padding: 0.8rem 1.2rem; }
.w698c-mobile-menu li { border-bottom: 1px solid rgba(255, 239, 148, 0.12); }
.w698c-mobile-menu li:last-child { border-bottom: none; }
.w698c-mobile-menu a {
  display: block; padding: 1rem 0.4rem; color: var(--w698c-text);
  font-size: 1.4rem; font-weight: 600;
}
.w698c-mobile-menu a:hover { color: var(--w698c-gold); }
.w698c-mobile-menu i { color: var(--w698c-primary); margin-right: 0.6rem; }

/* ===== Main / spacing ===== */
.w698c-main { padding-top: 70px; padding-bottom: 80px; }

/* ===== Carousel ===== */
.w698c-carousel {
  position: relative; margin: 1rem 0 1.4rem; border-radius: var(--w698c-radius);
  overflow: hidden; box-shadow: var(--w698c-shadow);
  height: 200px; background: #000;
}
.w698c-slides { position: relative; width: 100%; height: 100%; }
.w698c-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity var(--w698c-trans);
  cursor: pointer;
}
.w698c-slide.w698c-slide-active { opacity: 1; }
.w698c-slide img { width: 100%; height: 100%; object-fit: cover; }
.w698c-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(28, 40, 51, 0.92));
  padding: 1.4rem 1.2rem 1rem;
}
.w698c-slide-title {
  color: var(--w698c-gold); font-size: 1.7rem; font-weight: 700; margin-bottom: 0.3rem;
}
.w698c-slide-sub { color: #fff; font-size: 1.25rem; }
.w698c-dots {
  position: absolute; bottom: 8px; right: 12px; display: flex; gap: 6px; z-index: 2;
}
.w698c-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.5);
  cursor: pointer; transition: background var(--w698c-trans);
}
.w698c-dot.w698c-dot-active { background: var(--w698c-primary); }

/* ===== Section / heading ===== */
.w698c-section { margin: 1.6rem 0; }
.w698c-section-head {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
  padding-bottom: 0.6rem; border-bottom: 2px solid var(--w698c-primary);
}
.w698c-section-head i { color: var(--w698c-gold); font-size: 2rem; }
.w698c-section-head h2 {
  font-size: 1.8rem; color: var(--w698c-gold); font-weight: 700; flex: 1;
}
.w698c-section-head .w698c-more { font-size: 1.2rem; color: var(--w698c-accent); }

/* ===== Hero H1 ===== */
.w698c-hero {
  background: linear-gradient(135deg, #2A3B4D 0%, #1C2833 60%, #3B0A14 100%);
  border-radius: var(--w698c-radius); padding: 1.4rem 1.2rem; margin: 1rem 0;
  border: 1px solid rgba(220, 20, 60, 0.4);
}
.w698c-hero h1 {
  font-size: 2rem; line-height: 1.3; color: var(--w698c-gold); margin-bottom: 0.6rem;
  font-weight: 800;
}
.w698c-hero p { font-size: 1.35rem; color: var(--w698c-text-muted); margin-bottom: 1rem; }
.w698c-hero-cta { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.w698c-hero-cta .w698c-btn { padding: 0.9rem 1.6rem; font-size: 1.4rem; }

/* ===== Game grid ===== */
.w698c-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.w698c-game-card {
  background: var(--w698c-bg-card); border-radius: var(--w698c-radius-sm);
  overflow: hidden; cursor: pointer; border: 1px solid rgba(255, 239, 148, 0.08);
  transition: transform var(--w698c-trans), border-color var(--w698c-trans);
  display: flex; flex-direction: column;
}
.w698c-game-card:active { transform: scale(0.96); }
.w698c-game-card:hover { border-color: var(--w698c-primary); }
.w698c-game-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; background: #000;
}
.w698c-game-name {
  font-size: 1.15rem; padding: 0.5rem 0.4rem; text-align: center;
  color: var(--w698c-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-weight: 600;
}
.w698c-game-badge {
  position: relative;
}
.w698c-game-badge::after {
  content: 'HOT'; position: absolute; top: 4px; left: 4px;
  background: var(--w698c-red); color: #fff; font-size: 0.9rem; font-weight: 700;
  padding: 1px 5px; border-radius: 4px;
}

/* ===== Category title bar ===== */
.w698c-cat-bar {
  display: flex; align-items: center; gap: 0.5rem; margin: 1.4rem 0 0.8rem;
}
.w698c-cat-bar i { font-size: 2rem; color: var(--w698c-primary); }
.w698c-cat-bar h3 { font-size: 1.6rem; color: var(--w698c-gold); font-weight: 700; }

/* ===== Feature / info cards ===== */
.w698c-card {
  background: var(--w698c-bg-card); border-radius: var(--w698c-radius);
  padding: 1.2rem; margin-bottom: 1rem; border: 1px solid rgba(255, 239, 148, 0.08);
}
.w698c-card h3 {
  color: var(--w698c-gold); font-size: 1.5rem; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.w698c-card h3 i { color: var(--w698c-primary); }
.w698c-card p { font-size: 1.3rem; color: var(--w698c-text-muted); margin-bottom: 0.6rem; }
.w698c-card ul { padding-left: 1.4rem; }
.w698c-card li { font-size: 1.3rem; color: var(--w698c-text-muted); margin-bottom: 0.4rem; list-style: disc; }
.w698c-card a { color: var(--w698c-gold); font-weight: 600; }

/* ===== FAQ ===== */
.w698c-faq-item {
  background: var(--w698c-bg-card); border-radius: var(--w698c-radius-sm);
  padding: 1rem 1.2rem; margin-bottom: 0.7rem; border-left: 3px solid var(--w698c-primary);
}
.w698c-faq-q { font-size: 1.35rem; font-weight: 700; color: var(--w698c-gold); margin-bottom: 0.4rem; }
.w698c-faq-a { font-size: 1.25rem; color: var(--w698c-text-muted); }

/* ===== Promo banner ===== */
.w698c-promo-banner {
  background: linear-gradient(135deg, #DC143C 0%, #FF6347 100%);
  border-radius: var(--w698c-radius); padding: 1.2rem; text-align: center;
  margin: 1rem 0; color: #fff;
}
.w698c-promo-banner h3 { font-size: 1.6rem; color: var(--w698c-gold); margin-bottom: 0.4rem; }
.w698c-promo-banner p { font-size: 1.25rem; margin-bottom: 0.8rem; }
.w698c-promo-banner .w698c-btn {
  background: #fff; color: var(--w698c-primary); font-size: 1.35rem; padding: 0.8rem 1.6rem;
}

/* ===== Testimonials ===== */
.w698c-testi-grid { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.w698c-testi {
  background: var(--w698c-bg-card); border-radius: var(--w698c-radius-sm);
  padding: 1rem 1.2rem; border-left: 3px solid var(--w698c-gold);
}
.w698c-testi-name { font-size: 1.3rem; font-weight: 700; color: var(--w698c-gold); margin-bottom: 0.3rem; }
.w698c-testi-stars { color: var(--w698c-gold); font-size: 1.2rem; margin-bottom: 0.3rem; }
.w698c-testi-text { font-size: 1.25rem; color: var(--w698c-text-muted); }

/* ===== Payment / app CTA ===== */
.w698c-pay-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.w698c-pay-chip {
  background: var(--w698c-bg-light); color: var(--w698c-text); font-size: 1.2rem;
  padding: 0.5rem 0.9rem; border-radius: 20px; border: 1px solid rgba(255, 239, 148, 0.2);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.w698c-pay-chip i { color: var(--w698c-gold); }
.w698c-app-cta {
  background: linear-gradient(135deg, #243443 0%, #3B0A14 100%);
  border-radius: var(--w698c-radius); padding: 1.4rem 1.2rem; text-align: center; margin: 1rem 0;
  border: 1px solid var(--w698c-primary);
}
.w698c-app-cta h3 { color: var(--w698c-gold); font-size: 1.6rem; margin-bottom: 0.4rem; }
.w698c-app-cta p { font-size: 1.25rem; color: var(--w698c-text-muted); margin-bottom: 0.9rem; }

/* ===== Winners ===== */
.w698c-winner-list { display: flex; flex-direction: column; gap: 0.5rem; }
.w698c-winner {
  display: flex; align-items: center; gap: 0.7rem; background: var(--w698c-bg-card);
  padding: 0.7rem 1rem; border-radius: var(--w698c-radius-sm);
}
.w698c-winner-avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--w698c-primary);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.3rem;
}
.w698c-winner-info { flex: 1; min-width: 0; }
.w698c-winner-name { font-size: 1.3rem; font-weight: 700; color: var(--w698c-text); }
.w698c-winner-game { font-size: 1.15rem; color: var(--w698c-text-muted); }
.w698c-winner-amount { font-size: 1.35rem; font-weight: 700; color: var(--w698c-gold); }

/* ===== RTP table ===== */
.w698c-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.w698c-rtp-table th, .w698c-rtp-table td {
  padding: 0.6rem 0.8rem; text-align: left; border-bottom: 1px solid rgba(255, 239, 148, 0.1);
}
.w698c-rtp-table th { color: var(--w698c-gold); background: var(--w698c-bg-light); }
.w698c-rtp-table td { color: var(--w698c-text-muted); }
.w698c-rtp-table td.w698c-rtp-val { color: var(--w698c-accent); font-weight: 700; }

/* ===== Footer ===== */
.w698c-footer {
  background: #141C25; padding: 1.6rem 1.2rem 2rem; margin-top: 2rem;
  border-top: 2px solid var(--w698c-primary);
}
.w698c-footer-brand { font-size: 1.3rem; color: var(--w698c-text-muted); margin-bottom: 1rem; line-height: 1.6; }
.w698c-footer-brand strong { color: var(--w698c-gold); }
.w698c-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 1rem;
}
.w698c-footer-links a {
  font-size: 1.2rem; color: var(--w698c-text-muted); padding: 0.3rem 0;
}
.w698c-footer-links a:hover { color: var(--w698c-gold); }
.w698c-footer-promos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.w698c-footer-promos .w698c-btn { font-size: 1.2rem; padding: 0.5rem 1rem; }
.w698c-footer-copy {
  font-size: 1.15rem; color: #8893A0; text-align: center; padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Bottom nav ===== */
.w698c-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: 60px; background: linear-gradient(180deg, #2A3B4D 0%, #1C2833 100%);
  border-top: 2px solid var(--w698c-primary);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.5);
}
.w698c-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; background: transparent; border: none; color: var(--w698c-text-muted);
  font-size: 1.05rem; cursor: pointer; transition: color var(--w698c-trans);
  text-decoration: none; padding: 4px 0;
}
.w698c-bottomnav-btn i { font-size: 22px; }
.w698c-bottomnav-btn .material-icons-outlined,
.w698c-bottomnav-btn .material-icons { font-size: 24px; }
.w698c-bottomnav-btn:hover { color: var(--w698c-gold); }
.w698c-bottomnav-btn:active { transform: scale(0.92); }
.w698c-bottomnav-active { color: var(--w698c-primary) !important; }
.w698c-bottomnav-active i { color: var(--w698c-gold); }

/* ===== Back to top ===== */
.w698c-top-btn {
  position: fixed; right: 14px; bottom: 76px; z-index: 999;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--w698c-primary); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  opacity: 0; pointer-events: none; transition: opacity var(--w698c-trans), transform var(--w698c-trans);
  box-shadow: var(--w698c-shadow);
}
.w698c-top-btn.w698c-top-visible { opacity: 1; pointer-events: auto; }
.w698c-top-btn:active { transform: scale(0.9); }

/* ===== Desktop ===== */
@media (min-width: 769px) {
  .w698c-bottomnav { display: none; }
  .w698c-main { padding-bottom: 0; }
  .w698c-container, .w698c-wrapper, .w698c-header-inner { max-width: 760px; }
  .w698c-game-grid { grid-template-columns: repeat(6, 1fr); }
  .w698c-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .w698c-main { padding-bottom: 80px; }
}
