/* ============================================================
   bd10 bet - Core stylesheet (base files)
   Prefix: v26c-
   Palette: #00FF7F | #0D1117 | #DEB887 | #2E8B57 | #3CB371
   ============================================================ */

:root {
  --v26c-primary: #00FF7F;
  --v26c-primary-dark: #2E8B57;
  --v26c-secondary: #3CB371;
  --v26c-accent: #DEB887;
  --v26c-bg: #0D1117;
  --v26c-bg-2: #11161d;
  --v26c-bg-3: #161c25;
  --v26c-card: #1b2230;
  --v26c-text: #f3f5f2;
  --v26c-text-muted: #b5c2b9;
  --v26c-border: rgba(0, 255, 127, 0.18);
  --v26c-header-h: 5.4rem;
  --v26c-bottomnav-h: 6.2rem;
  --v26c-radius: 1.2rem;
  --v26c-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

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

html {
  font-size: 62.5%;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--v26c-primary);
  text-decoration: none;
}

/* ============================================================
   Header
   ============================================================ */
.v26c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--v26c-header-h);
  background: linear-gradient(90deg, #0D1117 0%, #0f1a14 100%);
  border-bottom: 1px solid var(--v26c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  box-shadow: var(--v26c-shadow);
}

.v26c-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--v26c-primary);
}

.v26c-logo img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.6rem;
}

.v26c-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.v26c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 4rem;
}

.v26c-btn-primary {
  background: linear-gradient(135deg, var(--v26c-primary), var(--v26c-secondary));
  color: #06251a;
  box-shadow: 0 4px 12px rgba(0, 255, 127, 0.28);
}

.v26c-btn-primary:active {
  transform: scale(0.96);
}

.v26c-btn-ghost {
  background: transparent;
  color: var(--v26c-primary);
  border: 1px solid var(--v26c-primary);
}

.v26c-btn-ghost:active {
  background: rgba(0, 255, 127, 0.12);
}

.v26c-menu-toggle {
  background: transparent;
  border: none;
  color: var(--v26c-primary);
  font-size: 2.2rem;
  cursor: pointer;
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
}

/* ============================================================
   Mobile menu
   ============================================================ */
.v26c-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--v26c-bg-2);
  border-left: 1px solid var(--v26c-border);
  z-index: 9999;
  padding: 6rem 1.4rem 2rem;
  transition: right 0.28s ease;
  overflow-y: auto;
}

.v26c-mobile-menu.v26c-open {
  right: 0;
}

.v26c-mobile-menu h3 {
  color: var(--v26c-primary);
  font-size: 1.5rem;
  margin: 1.6rem 0 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v26c-mobile-menu a {
  display: block;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  color: var(--v26c-text);
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.v26c-mobile-menu a:active {
  background: rgba(0, 255, 127, 0.1);
}

.v26c-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: none;
}

.v26c-overlay.v26c-open {
  display: block;
}

/* ============================================================
   Layout
   ============================================================ */
.v26c-wrapper {
  max-width: 430px;
  margin: 0 auto;
  background: var(--v26c-bg);
  min-height: 100vh;
}

main.v26c-main {
  padding-top: var(--v26c-header-h);
  padding-bottom: var(--v26c-bottomnav-h);
}

.v26c-container {
  padding: 1.4rem 1.2rem;
}

/* ============================================================
   Hero / Carousel
   ============================================================ */
.v26c-hero {
  position: relative;
  margin: 1rem 0 1.4rem;
  border-radius: var(--v26c-radius);
  overflow: hidden;
  box-shadow: var(--v26c-shadow);
}

.v26c-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--v26c-radius);
}

.v26c-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.v26c-slide {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}

.v26c-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.v26c-slide-overlay {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: linear-gradient(90deg, rgba(13, 17, 23, 0.85), rgba(13, 17, 23, 0.2));
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  color: #fff;
}

.v26c-slide-overlay strong {
  color: var(--v26c-primary);
  font-size: 1.6rem;
  display: block;
}

.v26c-slide-overlay span {
  font-size: 1.2rem;
  color: var(--v26c-text-muted);
}

.v26c-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
}

.v26c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.v26c-dot.v26c-active {
  background: var(--v26c-primary);
}

/* ============================================================
   Section titles
   ============================================================ */
.v26c-section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--v26c-text);
  margin: 1.8rem 0 1rem;
  padding-left: 0.8rem;
  border-left: 4px solid var(--v26c-primary);
}

.v26c-section-title i {
  color: var(--v26c-primary);
  font-size: 1.8rem;
}

.v26c-section-sub {
  color: var(--v26c-text-muted);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* ============================================================
   Game grid
   ============================================================ */
.v26c-game-section {
  margin-bottom: 1.6rem;
}

.v26c-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.v26c-game-card {
  background: var(--v26c-card);
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
  text-align: center;
}

.v26c-game-card:active {
  transform: scale(0.96);
  border-color: var(--v26c-primary);
}

.v26c-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0a0e13;
}

.v26c-game-name {
  display: block;
  font-size: 1.05rem;
  color: var(--v26c-text);
  padding: 0.4rem 0.2rem 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.v26c-game-type-tag {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--v26c-accent);
  background: rgba(222, 180, 135, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 0.4rem;
  margin-bottom: 0.4rem;
}

/* ============================================================
   Info / content cards
   ============================================================ */
.v26c-card {
  background: var(--v26c-card);
  border-radius: var(--v26c-radius);
  padding: 1.4rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.v26c-card h2 {
  font-size: 1.7rem;
  color: var(--v26c-primary);
  margin-bottom: 0.6rem;
}

.v26c-card h3 {
  font-size: 1.4rem;
  color: var(--v26c-accent);
  margin: 1rem 0 0.4rem;
}

.v26c-card p {
  color: var(--v26c-text-muted);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.v26c-card ul {
  list-style: none;
  padding: 0;
}

.v26c-card ul li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  color: var(--v26c-text-muted);
  font-size: 1.3rem;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.v26c-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: var(--v26c-primary);
  font-size: 1.1rem;
}

.v26c-link-text {
  color: var(--v26c-primary);
  font-weight: 700;
  border-bottom: 1px dashed var(--v26c-primary);
}

/* ============================================================
   Promo banner
   ============================================================ */
.v26c-promo-banner {
  background: linear-gradient(135deg, #1b3a2a, #0D1117);
  border: 1px solid var(--v26c-border);
  border-radius: var(--v26c-radius);
  padding: 1.6rem 1.4rem;
  margin: 1.4rem 0;
  text-align: center;
}

.v26c-promo-banner h3 {
  color: var(--v26c-accent);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.v26c-promo-banner p {
  color: var(--v26c-text-muted);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.v26c-promo-banner .v26c-btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   RTP table
   ============================================================ */
.v26c-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}

.v26c-rtp-table th,
.v26c-rtp-table td {
  padding: 0.7rem 0.6rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v26c-rtp-table th {
  color: var(--v26c-primary);
  font-weight: 700;
}

.v26c-rtp-table td {
  color: var(--v26c-text-muted);
}

.v26c-rtp-table td.v26c-rtp-high {
  color: var(--v26c-primary);
  font-weight: 700;
}

/* ============================================================
   Testimonials
   ============================================================ */
.v26c-testimonial {
  background: var(--v26c-card);
  border-left: 3px solid var(--v26c-accent);
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
}

.v26c-testimonial p {
  font-size: 1.25rem;
  color: var(--v26c-text);
  font-style: italic;
}

.v26c-testimonial .v26c-author {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
  color: var(--v26c-accent);
  font-weight: 700;
}

/* ============================================================
   Payment / winners
   ============================================================ */
.v26c-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 1rem;
}

.v26c-chip {
  background: rgba(0, 255, 127, 0.08);
  border: 1px solid var(--v26c-border);
  color: var(--v26c-text);
  padding: 0.5rem 0.9rem;
  border-radius: 2rem;
  font-size: 1.15rem;
}

.v26c-winner-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  font-size: 1.2rem;
}

.v26c-winner-row .v26c-winner-name {
  color: var(--v26c-text);
}

.v26c-winner-row .v26c-winner-amount {
  color: var(--v26c-primary);
  font-weight: 700;
}

/* ============================================================
   Footer
   ============================================================ */
.v26c-footer {
  background: var(--v26c-bg-2);
  border-top: 1px solid var(--v26c-border);
  padding: 1.8rem 1.2rem 2rem;
  margin-top: 1.4rem;
}

.v26c-footer-brand {
  color: var(--v26c-primary);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.v26c-footer p {
  color: var(--v26c-text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.v26c-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 0.8rem 0;
}

.v26c-footer-links a {
  color: var(--v26c-text-muted);
  font-size: 1.15rem;
}

.v26c-footer-links a:hover {
  color: var(--v26c-primary);
}

.v26c-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.v26c-footer-promo .v26c-btn {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 45%;
}

.v26c-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: var(--v26c-text-muted);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   Bottom nav (mobile only)
   ============================================================ */
.v26c-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--v26c-bottomnav-h);
  background: linear-gradient(180deg, #0f1a14, #0D1117);
  border-top: 1px solid var(--v26c-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.4);
}

.v26c-bottomnav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: transparent;
  border: none;
  color: var(--v26c-text-muted);
  font-size: 1rem;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  padding: 0.4rem 0.2rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.v26c-bottomnav-btn:active {
  transform: scale(0.92);
}

.v26c-bottomnav-btn .v26c-bn-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.v26c-bottomnav-btn .v26c-bn-label {
  font-size: 1rem;
  line-height: 1.1;
}

.v26c-bottomnav-btn.v26c-active {
  color: var(--v26c-primary);
}

.v26c-bottomnav-btn.v26c-active .v26c-bn-icon {
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.6);
}

.v26c-bottomnav-btn.v26c-promo .v26c-bn-icon {
  color: var(--v26c-accent);
}

/* ============================================================
   Desktop
   ============================================================ */
@media (min-width: 769px) {
  .v26c-bottomnav {
    display: none;
  }

  main.v26c-main {
    padding-bottom: 2rem;
  }

  .v26c-wrapper {
    max-width: 760px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  }

  .v26c-game-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Small phone fine-tune */
@media (max-width: 360px) {
  .v26c-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v26c-logo {
    font-size: 1.5rem;
  }
}
