/* gl29.cfd - Main Stylesheet */
/* CSS class prefix: v91b- */
/* Color palette: #CD853F | #00FA9A | #00FF00 | #2D2D2D | #98FB98 */

/* ===== CSS Variables ===== */
:root {
  --v91b-primary: #CD853F;
  --v91b-accent: #00FA9A;
  --v91b-bright: #00FF00;
  --v91b-bg: #2D2D2D;
  --v91b-bg-dark: #1A1A1A;
  --v91b-bg-card: #333333;
  --v91b-text: #98FB98;
  --v91b-text-light: #E0E0E0;
  --v91b-text-muted: #AAAAAA;
  --v91b-gold: #CD853F;
  --v91b-green: #00FA9A;
  --v91b-border: #444444;
  --v91b-radius: 8px;
  --v91b-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --v91b-header-h: 56px;
  --v91b-bottom-nav-h: 60px;
  --v91b-max-w: 430px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--v91b-bg-dark);
  color: var(--v91b-text-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--v91b-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--v91b-bright);
}

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

ul, ol {
  list-style: none;
}

/* ===== Layout ===== */
.v91b-wrapper {
  max-width: var(--v91b-max-w);
  margin: 0 auto;
  position: relative;
}

.v91b-container {
  padding: 0 1.2rem;
  width: 100%;
}

.v91b-grid {
  display: grid;
  gap: 1rem;
}

/* ===== Header ===== */
.v91b-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--v91b-header-h);
  background: var(--v91b-bg-dark);
  border-bottom: 1px solid var(--v91b-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.v91b-header-inner {
  max-width: var(--v91b-max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.v91b-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.v91b-logo img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.v91b-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v91b-primary);
  letter-spacing: 0.5px;
}

.v91b-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.v91b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--v91b-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 36px;
}

.v91b-btn-register {
  background: var(--v91b-accent);
  color: var(--v91b-bg-dark);
}

.v91b-btn-register:hover {
  background: var(--v91b-bright);
  transform: scale(1.03);
}

.v91b-btn-login {
  background: transparent;
  color: var(--v91b-accent);
  border: 1px solid var(--v91b-accent);
}

.v91b-btn-login:hover {
  background: rgba(0, 250, 154, 0.1);
}

.v91b-menu-toggle {
  background: none;
  border: none;
  color: var(--v91b-text-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* ===== Mobile Menu ===== */
.v91b-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--v91b-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--v91b-border);
  overflow-y: auto;
}

.v91b-mobile-menu.v91b-menu-active {
  right: 0;
}

.v91b-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.v91b-menu-overlay.v91b-overlay-active {
  opacity: 1;
  pointer-events: auto;
}

.v91b-menu-close {
  background: none;
  border: none;
  color: var(--v91b-text-light);
  font-size: 2.2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}

.v91b-menu-title {
  font-size: 1.8rem;
  color: var(--v91b-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--v91b-border);
}

.v91b-menu-nav a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  color: var(--v91b-text-light);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--v91b-border);
  transition: color 0.2s;
}

.v91b-menu-nav a:hover {
  color: var(--v91b-accent);
}

.v91b-menu-nav a i,
.v91b-menu-nav a span.material-symbols-outlined {
  font-size: 2rem;
  color: var(--v91b-accent);
}

/* ===== Carousel ===== */
.v91b-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--v91b-radius);
  margin-top: 0.5rem;
}

.v91b-carousel-inner {
  position: relative;
  width: 100%;
  padding-top: 50%;
}

.v91b-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.v91b-carousel-slide.v91b-slide-active {
  opacity: 1;
}

.v91b-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v91b-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.v91b-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.v91b-carousel-dot.v91b-dot-active {
  background: var(--v91b-accent);
  width: 20px;
  border-radius: 4px;
}

/* ===== Main Content ===== */
.v91b-main {
  padding-top: var(--v91b-header-h);
  min-height: 100vh;
}

@media (max-width: 768px) {
  .v91b-main {
    padding-bottom: calc(var(--v91b-bottom-nav-h) + 20px);
  }
}

.v91b-section {
  padding: 2rem 0;
}

.v91b-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v91b-primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.v91b-section-title i {
  color: var(--v91b-accent);
}

/* ===== Game Grid ===== */
.v91b-game-category {
  margin-bottom: 2rem;
}

.v91b-category-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v91b-accent);
  margin-bottom: 0.8rem;
  padding-left: 0.4rem;
  border-left: 3px solid var(--v91b-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.v91b-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: var(--v91b-radius);
  padding: 0.4rem;
  background: var(--v91b-bg-card);
}

.v91b-game-item:hover {
  transform: scale(1.05);
}

.v91b-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.3rem;
}

.v91b-game-item span {
  font-size: 1.1rem;
  color: var(--v91b-text-light);
  text-align: center;
  line-height: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 2.6rem;
}

/* ===== Cards & Modules ===== */
.v91b-card {
  background: var(--v91b-bg-card);
  border-radius: var(--v91b-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--v91b-border);
}

.v91b-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v91b-primary);
  margin-bottom: 1rem;
}

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

.v91b-card ul {
  padding-left: 1.5rem;
}

.v91b-card li {
  list-style: disc;
  color: var(--v91b-text-muted);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 1.7rem;
}

/* ===== Promo Buttons ===== */
.v91b-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--v91b-primary), #B87333);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--v91b-radius);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  width: 100%;
  max-width: 300px;
  margin: 0.5rem auto;
  text-align: center;
}

.v91b-promo-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(205, 133, 63, 0.4);
}

.v91b-promo-link {
  color: var(--v91b-accent);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

.v91b-promo-link:hover {
  color: var(--v91b-bright);
}

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

.v91b-rtp-table th {
  background: var(--v91b-bg-dark);
  color: var(--v91b-primary);
  padding: 0.8rem;
  text-align: left;
  border-bottom: 2px solid var(--v91b-primary);
}

.v91b-rtp-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--v91b-border);
  color: var(--v91b-text-muted);
}

.v91b-rtp-table tr:hover td {
  background: rgba(0, 250, 154, 0.05);
}

.v91b-rtp-high {
  color: var(--v91b-accent);
  font-weight: 600;
}

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

.v91b-testimonial-name {
  color: var(--v91b-accent);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.v91b-testimonial-text {
  color: var(--v91b-text-muted);
  font-size: 1.2rem;
  font-style: italic;
}

.v91b-testimonial-stars {
  color: var(--v91b-primary);
  margin-bottom: 0.3rem;
}

/* ===== Payment Methods ===== */
.v91b-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.v91b-payment-item {
  background: var(--v91b-bg-card);
  border-radius: var(--v91b-radius);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--v91b-text-light);
  border: 1px solid var(--v91b-border);
}

/* ===== Winners ===== */
.v91b-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  border-bottom: 1px solid var(--v91b-border);
}

.v91b-winner-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.v91b-winner-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--v91b-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

.v91b-winner-name {
  font-size: 1.2rem;
  color: var(--v91b-text-light);
}

.v91b-winner-game {
  font-size: 1.1rem;
  color: var(--v91b-text-muted);
}

.v91b-winner-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--v91b-accent);
}

/* ===== Achievements ===== */
.v91b-achievement {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: var(--v91b-bg-card);
  border-radius: var(--v91b-radius);
  margin-bottom: 0.6rem;
}

.v91b-achievement-icon {
  font-size: 2.4rem;
  min-width: 40px;
  text-align: center;
}

.v91b-achievement-text {
  flex: 1;
}

.v91b-achievement-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--v91b-primary);
}

.v91b-achievement-desc {
  font-size: 1.1rem;
  color: var(--v91b-text-muted);
}

/* ===== Security ===== */
.v91b-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.v91b-security-item {
  background: var(--v91b-bg-card);
  border-radius: var(--v91b-radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--v91b-border);
}

.v91b-security-item i {
  font-size: 2.4rem;
  color: var(--v91b-accent);
  margin-bottom: 0.5rem;
}

.v91b-security-item span {
  display: block;
  font-size: 1.2rem;
  color: var(--v91b-text-light);
}

/* ===== Footer ===== */
.v91b-footer {
  background: var(--v91b-bg-dark);
  border-top: 1px solid var(--v91b-border);
  padding: 2rem 0 3rem;
}

.v91b-footer-desc {
  color: var(--v91b-text-muted);
  font-size: 1.2rem;
  line-height: 1.7rem;
  margin-bottom: 1.5rem;
}

.v91b-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.v91b-footer-links a {
  color: var(--v91b-text-light);
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  background: var(--v91b-bg-card);
  border-radius: 4px;
  transition: all 0.2s;
}

.v91b-footer-links a:hover {
  color: var(--v91b-accent);
  background: var(--v91b-border);
}

.v91b-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.v91b-footer-promo-btn {
  background: linear-gradient(135deg, var(--v91b-primary), #B87333);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.v91b-footer-promo-btn:hover {
  transform: scale(1.03);
}

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

/* ===== Bottom Navigation ===== */
.v91b-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--v91b-bottom-nav-h);
  background: var(--v91b-bg-dark);
  border-top: 1px solid var(--v91b-border);
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.3rem;
}

.v91b-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 54px;
  background: none;
  border: none;
  color: var(--v91b-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.3rem;
  border-radius: 8px;
  text-decoration: none;
}

.v91b-bottom-nav-btn i,
.v91b-bottom-nav-btn span.material-symbols-outlined,
.v91b-bottom-nav-btn ion-icon {
  font-size: 22px;
  margin-bottom: 2px;
  transition: color 0.2s, transform 0.2s;
}

.v91b-bottom-nav-btn span.v91b-nav-label {
  font-size: 1rem;
  line-height: 1.2rem;
}

.v91b-bottom-nav-btn:hover {
  color: var(--v91b-accent);
  background: rgba(0, 250, 154, 0.08);
}

.v91b-bottom-nav-btn:hover i,
.v91b-bottom-nav-btn:hover span.material-symbols-outlined,
.v91b-bottom-nav-btn:hover ion-icon {
  transform: scale(1.15);
}

.v91b-bottom-nav-btn.v91b-nav-active {
  color: var(--v91b-accent);
}

.v91b-bottom-nav-btn.v91b-nav-active i,
.v91b-bottom-nav-btn.v91b-nav-active span.material-symbols-outlined,
.v91b-bottom-nav-btn.v91b-nav-active ion-icon {
  color: var(--v91b-primary);
  transform: scale(1.1);
}

.v91b-bottom-nav-btn.v91b-nav-active span.v91b-nav-label {
  color: var(--v91b-primary);
  font-weight: 600;
}

/* ===== Hide bottom nav on desktop ===== */
@media (min-width: 769px) {
  .v91b-bottom-nav {
    display: none;
  }
}

/* ===== Desktop navigation ===== */
.v91b-desktop-nav {
  display: none;
}

@media (min-width: 769px) {
  .v91b-desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .v91b-desktop-nav a {
    color: var(--v91b-text-light);
    font-size: 1.3rem;
    transition: color 0.2s;
  }
  .v91b-desktop-nav a:hover {
    color: var(--v91b-accent);
  }
  .v91b-menu-toggle {
    display: none;
  }
  .v91b-wrapper {
    max-width: 768px;
  }
}

/* ===== H1 Styles ===== */
.v91b-h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--v91b-primary);
  line-height: 2.6rem;
  margin: 1.5rem 0 1rem;
}

.v91b-h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--v91b-primary);
  margin: 1.5rem 0 0.8rem;
}

.v91b-h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v91b-accent);
  margin: 1.2rem 0 0.6rem;
}

.v91b-text {
  color: var(--v91b-text-muted);
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-bottom: 0.8rem;
}

.v91b-text-highlight {
  color: var(--v91b-accent);
  font-weight: 600;
}

/* ===== FAQ Accordion ===== */
.v91b-faq-item {
  background: var(--v91b-bg-card);
  border-radius: var(--v91b-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--v91b-border);
}

.v91b-faq-q {
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--v91b-text-light);
  font-size: 1.3rem;
  cursor: pointer;
}

.v91b-faq-a {
  padding: 0 1.2rem 1rem;
  color: var(--v91b-text-muted);
  font-size: 1.2rem;
  line-height: 1.7rem;
}

/* ===== Tricks Component ===== */
.v91b-trick {
  background: var(--v91b-bg-card);
  border-radius: var(--v91b-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--v91b-border);
}

.v91b-trick-num {
  background: var(--v91b-primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.v91b-trick-text {
  flex: 1;
  font-size: 1.2rem;
  color: var(--v91b-text-muted);
  line-height: 1.7rem;
}

/* ===== App Download CTA ===== */
.v91b-app-cta {
  background: linear-gradient(135deg, var(--v91b-bg-card), var(--v91b-bg-dark));
  border-radius: var(--v91b-radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--v91b-primary);
}

.v91b-app-cta-title {
  font-size: 1.6rem;
  color: var(--v91b-primary);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.v91b-app-cta-text {
  color: var(--v91b-text-muted);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ===== Utility ===== */
.v91b-mb-1 { margin-bottom: 0.8rem; }
.v91b-mb-2 { margin-bottom: 1.6rem; }
.v91b-mt-1 { margin-top: 0.8rem; }
.v91b-mt-2 { margin-top: 1.6rem; }
.v91b-text-center { text-align: center; }
.v91b-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
