/* 369club CSS Design - All classes prefixed with g11b- */
/* Root variables */
:root {
  --g11b-bg: #0F0F23;
  --g11b-teal: #20B2AA;
  --g11b-peru: #CD853F;
  --g11b-sienna: #A0522D;
  --g11b-lime: #32CD32;
  --g11b-gray: #808080;
  --g11b-white: #F0F0F0;
  --g11b-dark: #08081A;
  --g11b-radius: 8px;
  --g11b-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Base reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--g11b-bg);
  color: var(--g11b-white);
  line-height: 1.6rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--g11b-teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--g11b-peru); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.g11b-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.g11b-wrapper { padding: 1.6rem 0; }

/* Header */
.g11b-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000;
  background: linear-gradient(135deg, var(--g11b-dark) 0%, #151530 100%);
  border-bottom: 2px solid var(--g11b-teal);
  padding: 0.8rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.g11b-header-left { display: flex; align-items: center; gap: 0.6rem; }
.g11b-header-logo { width: 28px; height: 28px; border-radius: 50%; }
.g11b-header-name { font-size: 1.6rem; font-weight: 700; color: var(--g11b-teal); letter-spacing: 0.5px; }
.g11b-header-right { display: flex; align-items: center; gap: 0.5rem; }
.g11b-btn-register {
  background: var(--g11b-teal); color: var(--g11b-dark); border: none;
  padding: 0.6rem 1.2rem; border-radius: var(--g11b-radius);
  font-size: 1.2rem; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.g11b-btn-register:hover { background: #1a9e97; transform: scale(1.05); }
.g11b-btn-login {
  background: transparent; color: var(--g11b-peru); border: 1.5px solid var(--g11b-peru);
  padding: 0.5rem 1rem; border-radius: var(--g11b-radius);
  font-size: 1.2rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.g11b-btn-login:hover { background: var(--g11b-peru); color: var(--g11b-dark); }
.g11b-menu-toggle {
  background: none; border: none; color: var(--g11b-white);
  font-size: 2rem; cursor: pointer; padding: 0.4rem; line-height: 1;
}
.g11b-menu-toggle:hover { color: var(--g11b-teal); }

/* Main content */
main { padding-top: 6rem; }

/* Mobile menu */
.g11b-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: var(--g11b-dark); z-index: 9999; transition: right 0.3s ease;
  padding: 2rem 1.5rem; overflow-y: auto;
}
.g11b-mobile-menu.g11b-menu-open { right: 0; }
.g11b-menu-close {
  background: none; border: none; color: var(--g11b-white);
  font-size: 2.4rem; cursor: pointer; position: absolute;
  top: 1rem; right: 1rem;
}
.g11b-menu-list { list-style: none; margin-top: 3rem; }
.g11b-menu-list li { margin-bottom: 0.2rem; }
.g11b-menu-list a {
  display: block; padding: 1rem 0.8rem; color: var(--g11b-white);
  font-size: 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
}
.g11b-menu-list a:hover { color: var(--g11b-teal); padding-left: 1.2rem; }

/* Overlay */
.g11b-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 9998;
}
.g11b-overlay.g11b-overlay-active { display: block; }

/* Carousel */
.g11b-carousel { position: relative; overflow: hidden; border-radius: var(--g11b-radius); margin: 1rem 0; }
.g11b-carousel-slide {
  display: none; width: 100%; transition: opacity 0.5s ease; cursor: pointer;
}
.g11b-carousel-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.g11b-carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
}
.g11b-carousel-nav:hover { background: rgba(32,178,170,0.7); }
.g11b-carousel-prev { left: 8px; }
.g11b-carousel-next { right: 8px; }
.g11b-carousel-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.g11b-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background 0.3s;
}
.g11b-dot-active { background: var(--g11b-teal); }

/* Section titles */
.g11b-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--g11b-teal);
  margin: 2rem 0 1rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--g11b-sienna);
}
.g11b-section-title i { margin-right: 0.5rem; }

/* Game grid */
.g11b-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem;
  padding: 0.5rem 0;
}
.g11b-game-item {
  text-align: center; cursor: pointer; transition: transform 0.2s;
  background: rgba(255,255,255,0.04); border-radius: var(--g11b-radius);
  padding: 0.6rem 0.3rem;
}
.g11b-game-item:hover { transform: translateY(-2px); background: rgba(32,178,170,0.1); }
.g11b-game-item img {
  width: 56px; height: 56px; border-radius: 10px; margin: 0 auto 0.4rem;
  object-fit: cover; border: 1.5px solid rgba(255,255,255,0.1);
}
.g11b-game-item span {
  font-size: 1rem; color: var(--g11b-gray); display: block;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 80px; margin: 0 auto;
}

/* Content cards */
.g11b-card {
  background: linear-gradient(135deg, rgba(32,178,170,0.06) 0%, rgba(160,82,45,0.06) 100%);
  border: 1px solid rgba(32,178,170,0.15); border-radius: var(--g11b-radius);
  padding: 1.4rem; margin: 1rem 0;
}
.g11b-card h3 { color: var(--g11b-teal); font-size: 1.5rem; margin-bottom: 0.8rem; }
.g11b-card p { color: #c0c0c0; font-size: 1.3rem; line-height: 1.8rem; }

/* Promo button */
.g11b-promo-btn {
  display: inline-block; background: linear-gradient(135deg, var(--g11b-teal), #1a9e97);
  color: var(--g11b-dark); padding: 1rem 2.4rem; border-radius: 50px;
  font-size: 1.4rem; font-weight: 700; cursor: pointer; border: none;
  transition: all 0.3s; text-align: center; margin: 0.6rem 0;
}
.g11b-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(32,178,170,0.4); }
.g11b-promo-btn-alt {
  background: linear-gradient(135deg, var(--g11b-peru), var(--g11b-sienna));
  color: var(--g11b-white);
}

/* Highlight text */
.g11b-highlight { color: var(--g11b-teal); font-weight: 600; }
.g11b-highlight-gold { color: var(--g11b-peru); font-weight: 600; }
.g11b-highlight-lime { color: var(--g11b-lime); font-weight: 600; }

/* Stats grid */
.g11b-stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
  margin: 1rem 0;
}
.g11b-stat-item {
  background: rgba(255,255,255,0.04); border-radius: var(--g11b-radius);
  padding: 1rem; text-align: center; border: 1px solid rgba(32,178,170,0.1);
}
.g11b-stat-value { font-size: 2rem; font-weight: 700; color: var(--g11b-peru); }
.g11b-stat-label { font-size: 1.1rem; color: var(--g11b-gray); margin-top: 0.3rem; }

/* Testimonial */
.g11b-testimonial {
  background: rgba(205,133,63,0.08); border-left: 3px solid var(--g11b-peru);
  padding: 1rem 1.2rem; margin: 0.8rem 0; border-radius: 0 var(--g11b-radius) var(--g11b-radius) 0;
}
.g11b-testimonial p { font-size: 1.2rem; color: #b0b0b0; font-style: italic; }
.g11b-testimonial cite { color: var(--g11b-teal); font-size: 1.1rem; font-style: normal; margin-top: 0.4rem; display: block; }

/* Winner list */
.g11b-winner-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.g11b-winner-name { color: var(--g11b-teal); font-size: 1.2rem; }
.g11b-winner-amount { color: var(--g11b-lime); font-weight: 700; font-size: 1.3rem; }

/* Payment icons row */
.g11b-payment-row {
  display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap;
  margin: 1rem 0;
}
.g11b-payment-item {
  background: rgba(255,255,255,0.06); border-radius: var(--g11b-radius);
  padding: 0.8rem 1.2rem; font-size: 1.2rem; color: var(--g11b-gray);
  border: 1px solid rgba(255,255,255,0.08);
}

/* App download section */
.g11b-app-section {
  background: linear-gradient(135deg, rgba(32,178,170,0.12) 0%, rgba(205,133,63,0.12) 100%);
  border-radius: var(--g11b-radius); padding: 1.6rem; text-align: center;
  margin: 1.5rem 0; border: 1px solid rgba(32,178,170,0.2);
}
.g11b-app-section h3 { color: var(--g11b-teal); font-size: 1.6rem; margin-bottom: 0.8rem; }

/* Footer */
.g11b-footer {
  background: var(--g11b-dark); padding: 2rem 1.2rem 1rem;
  border-top: 2px solid var(--g11b-sienna); margin-top: 2rem;
}
.g11b-footer-brand { color: var(--g11b-gray); font-size: 1.2rem; line-height: 1.6rem; margin-bottom: 1rem; }
.g11b-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem;
}
.g11b-footer-links a {
  color: var(--g11b-teal); font-size: 1.1rem; padding: 0.4rem 0.6rem;
  background: rgba(32,178,170,0.08); border-radius: 4px; transition: all 0.2s;
}
.g11b-footer-links a:hover { background: rgba(32,178,170,0.2); }
.g11b-footer-copy { color: var(--g11b-gray); font-size: 1rem; text-align: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }
.g11b-partners { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; opacity: 0.6; }
.g11b-partners img { height: 20px; filter: grayscale(100%); }

/* Bottom navigation */
.g11b-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000;
  background: linear-gradient(180deg, #12122A 0%, var(--g11b-dark) 100%);
  border-top: 1.5px solid var(--g11b-teal);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; padding: 0 0.4rem;
}
.g11b-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 60px; min-height: 56px;
  background: none; border: none; color: var(--g11b-gray);
  cursor: pointer; transition: all 0.2s; padding: 0.3rem;
}
.g11b-bottom-nav-btn:hover { color: var(--g11b-teal); }
.g11b-bottom-nav-btn.active { color: var(--g11b-teal); }
.g11b-bottom-nav-btn i, .g11b-bottom-nav-btn .material-icons {
  font-size: 22px; margin-bottom: 2px;
}
.g11b-bottom-nav-btn span { font-size: 10px; }
.g11b-bottom-nav-btn:active { transform: scale(0.92); }

/* Promo link text */
.g11b-link-text {
  color: var(--g11b-teal); font-weight: 600; cursor: pointer;
  border-bottom: 1px dashed var(--g11b-teal); transition: all 0.2s;
}
.g11b-link-text:hover { color: var(--g11b-peru); border-color: var(--g11b-peru); }

/* Inline tag */
.g11b-tag {
  display: inline-block; background: rgba(32,178,170,0.15);
  color: var(--g11b-teal); padding: 0.2rem 0.6rem; border-radius: 3px;
  font-size: 1.1rem; font-weight: 600;
}

/* FAQ */
.g11b-faq-item { margin: 0.8rem 0; }
.g11b-faq-q { color: var(--g11b-peru); font-weight: 600; font-size: 1.3rem; margin-bottom: 0.3rem; }
.g11b-faq-a { color: #b0b0b0; font-size: 1.2rem; line-height: 1.7rem; padding-left: 1rem; }

/* Steps */
.g11b-step {
  display: flex; gap: 1rem; margin: 0.8rem 0; align-items: flex-start;
}
.g11b-step-num {
  background: var(--g11b-teal); color: var(--g11b-dark); min-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;
}
.g11b-step-content { flex: 1; }
.g11b-step-content strong { color: var(--g11b-teal); }

/* Feature list */
.g11b-feature-list { list-style: none; padding: 0; }
.g11b-feature-list li {
  padding: 0.6rem 0; padding-left: 1.8rem; position: relative;
  color: #b0b0b0; font-size: 1.3rem; line-height: 1.6rem;
}
.g11b-feature-list li::before {
  content: ''; position: absolute; left: 0; top: 1rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g11b-lime);
}

/* Responsive - hide bottom nav on desktop */
@media (min-width: 769px) {
  .g11b-bottom-nav { display: none; }
}
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}

/* Utility classes */
.g11b-text-center { text-align: center; }
.g11b-mt-1 { margin-top: 0.8rem; }
.g11b-mt-2 { margin-top: 1.6rem; }
.g11b-mb-1 { margin-bottom: 0.8rem; }
.g11b-mb-2 { margin-bottom: 1.6rem; }
.g11b-text-sm { font-size: 1.2rem; color: var(--g11b-gray); }
.g11b-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--g11b-teal), transparent);
  margin: 1.5rem 0; border: none;
}

/* Animation for page load */
@keyframes g11bFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.g11b-fade-in { animation: g11bFadeIn 0.5s ease forwards; }

/* Category badge */
.g11b-cat-badge {
  display: inline-block; background: var(--g11b-sienna); color: var(--g11b-white);
  padding: 0.3rem 0.8rem; border-radius: 4px; font-size: 1rem; font-weight: 600;
  margin-bottom: 0.6rem;
}
