/* ============================================================
 * No deposit bonus - style-e40c.css
 * Palette: #DB7093 | #9966CC | #B22222 | #2C2C2C | #FFC0CB
 * All custom classes use prefix "g0cb-".
 * Mobile-first; root font-size 62.5% (1rem = 10px).
 * ============================================================ */

:root {
  --g0cb-primary: #DB7093;
  --g0cb-secondary: #9966CC;
  --g0cb-accent: #B22222;
  --g0cb-bg: #2C2C2C;
  --g0cb-bg-2: #1c1c1c;
  --g0cb-bg-3: #3a2a30;
  --g0cb-text: #FFC0CB;
  --g0cb-text-light: #ffe8ef;
  --g0cb-white: #ffffff;
  --g0cb-muted: #c9a9b6;
  --g0cb-gold: #f5c542;
  --g0cb-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --g0cb-radius: 14px;
  --g0cb-radius-lg: 22px;
  --g0cb-transition: 0.25s ease;
}

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--g0cb-bg);
  color: var(--g0cb-text-light);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
  max-width: 100%;
}

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

a { color: var(--g0cb-text); text-decoration: none; }
a:hover { color: var(--g0cb-text-light); }

/* ---------------- Layout helpers ---------------- */
.g0cb-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.g0cb-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }
.g0cb-section { padding: 2.4rem 0; }
.g0cb-section-title {
  font-size: 2rem;
  color: var(--g0cb-white);
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 5px solid var(--g0cb-primary);
  line-height: 1.4;
}
.g0cb-section-subtitle {
  font-size: 1.4rem;
  color: var(--g0cb-muted);
  margin-bottom: 1.6rem;
}

/* ---------------- Header ---------------- */
.g0cb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1c1c1c 0%, #3a2a30 100%);
  border-bottom: 2px solid var(--g0cb-primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.g0cb-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 1rem;
  max-width: 430px;
  margin: 0 auto;
}
.g0cb-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.g0cb-brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--g0cb-primary), var(--g0cb-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
}
.g0cb-brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--g0cb-white);
  line-height: 1.1;
}
.g0cb-brand-name span { color: var(--g0cb-primary); }
.g0cb-header-actions { display: flex; gap: 0.6rem; align-items: center; }
.g0cb-icon-btn {
  background: transparent;
  border: none;
  color: var(--g0cb-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 8px;
  transition: var(--g0cb-transition);
}
.g0cb-icon-btn:active { transform: scale(0.9); color: var(--g0cb-primary); }
.g0cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 24px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--g0cb-transition);
  min-height: 36px;
  font-family: inherit;
}
.g0cb-btn:active { transform: scale(0.96); }
.g0cb-btn-register {
  background: linear-gradient(135deg, var(--g0cb-primary), var(--g0cb-accent));
  color: #fff;
  box-shadow: 0 4px 14px rgba(219, 112, 147, 0.45);
}
.g0cb-btn-login {
  background: transparent;
  color: var(--g0cb-text);
  border: 2px solid var(--g0cb-secondary);
}
.g0cb-btn-cta {
  background: linear-gradient(135deg, var(--g0cb-secondary), var(--g0cb-primary));
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(153, 102, 204, 0.5);
}
.g0cb-link-text {
  color: var(--g0cb-primary);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.g0cb-link-text:hover { color: var(--g0cb-text-light); }

/* ---------------- Mobile drawer menu ---------------- */
.g0cb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.g0cb-overlay-show { opacity: 1; pointer-events: auto; }
.g0cb-mobile-menu {
  position: fixed;
  top: 0;
  right: -85%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--g0cb-bg-2);
  z-index: 9999;
  padding: 2rem 1.4rem;
  overflow-y: auto;
  transition: right 0.3s ease;
  border-left: 2px solid var(--g0cb-primary);
}
.g0cb-menu-open { right: 0; }
.g0cb-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #444;
}
.g0cb-menu-title { font-size: 1.8rem; color: var(--g0cb-white); font-weight: 700; }
.g0cb-menu-close {
  background: transparent;
  border: none;
  color: var(--g0cb-text);
  font-size: 2.2rem;
  cursor: pointer;
}
.g0cb-menu-list { list-style: none; }
.g0cb-menu-list li { margin-bottom: 0.4rem; }
.g0cb-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0.8rem;
  border-radius: 10px;
  color: var(--g0cb-text-light);
  font-size: 1.4rem;
  font-weight: 500;
  transition: var(--g0cb-transition);
}
.g0cb-menu-list a:hover, .g0cb-menu-list a:active {
  background: rgba(219, 112, 147, 0.18);
  color: var(--g0cb-white);
}
.g0cb-menu-list .material-icons,
.g0cb-menu-list i { font-size: 1.8rem; color: var(--g0cb-primary); }

/* ---------------- Carousel ---------------- */
.g0cb-carousel {
  position: relative;
  margin: 1.4rem 0;
  border-radius: var(--g0cb-radius-lg);
  overflow: hidden;
  box-shadow: var(--g0cb-shadow);
}
.g0cb-slides { position: relative; height: 200px; }
.g0cb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.g0cb-slide img { width: 100%; height: 200px; object-fit: cover; }
.g0cb-slide-active { opacity: 1; }
.g0cb-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}
.g0cb-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 2;
}
.g0cb-carousel-arrow:hover { background: var(--g0cb-primary); }
.g0cb-arrow-prev { left: 8px; }
.g0cb-arrow-next { right: 8px; }
.g0cb-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.g0cb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
}
.g0cb-dot-active { background: var(--g0cb-primary); width: 22px; border-radius: 4px; }

/* ---------------- Hero ---------------- */
.g0cb-hero {
  padding: 1.6rem 0 2rem;
  text-align: center;
}
.g0cb-hero h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--g0cb-white);
  margin-bottom: 0.8rem;
}
.g0cb-hero h1 .accent { color: var(--g0cb-primary); }
.g0cb-hero p {
  font-size: 1.35rem;
  color: var(--g0cb-muted);
  margin-bottom: 1.4rem;
  padding: 0 0.4rem;
}
.g0cb-hero-cta { display: flex; flex-direction: column; gap: 0.8rem; padding: 0 0.6rem; }

/* ---------------- Category nav chips ---------------- */
.g0cb-chips {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 1rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.g0cb-chips::-webkit-scrollbar { display: none; }
.g0cb-chip {
  flex-shrink: 0;
  padding: 0.6rem 1.2rem;
  background: var(--g0cb-bg-3);
  color: var(--g0cb-text);
  border-radius: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  border: 1px solid #555;
  cursor: pointer;
  transition: var(--g0cb-transition);
}
.g0cb-chip:hover, .g0cb-chip.active {
  background: linear-gradient(135deg, var(--g0cb-primary), var(--g0cb-secondary));
  color: #fff;
  border-color: transparent;
}

/* ---------------- Game grid ---------------- */
.g0cb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.g0cb-card {
  background: linear-gradient(160deg, #3a2a30, #2C2C2C);
  border-radius: var(--g0cb-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--g0cb-transition), box-shadow var(--g0cb-transition);
  border: 1px solid rgba(219, 112, 147, 0.15);
}
.g0cb-card:active {
  transform: scale(0.96);
  box-shadow: 0 0 18px rgba(219, 112, 147, 0.5);
}
.g0cb-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #222;
}
.g0cb-card-name {
  padding: 0.5rem 0.4rem;
  font-size: 1.1rem;
  color: var(--g0cb-text-light);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
.g0cb-card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--g0cb-accent);
  color: #fff;
  font-size: 1rem;
  padding: 1px 6px;
  border-radius: 6px;
  font-weight: 700;
}
.g0cb-card-hot .g0cb-card-badge { background: var(--g0cb-gold); color: #2C2C2C; }

/* ---------------- Info / feature cards ---------------- */
.g0cb-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.g0cb-feature {
  background: linear-gradient(145deg, #3a2a30, #1c1c1c);
  padding: 1.2rem;
  border-radius: var(--g0cb-radius);
  border-left: 3px solid var(--g0cb-primary);
}
.g0cb-feature .ico {
  font-size: 2.2rem;
  color: var(--g0cb-primary);
  margin-bottom: 0.4rem;
}
.g0cb-feature h3 {
  font-size: 1.35rem;
  color: var(--g0cb-white);
  margin-bottom: 0.4rem;
}
.g0cb-feature p {
  font-size: 1.2rem;
  color: var(--g0cb-muted);
  line-height: 1.4;
}

/* ---------------- Steps list ---------------- */
.g0cb-steps { list-style: none; counter-reset: step; }
.g0cb-steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  margin-bottom: 0.7rem;
  background: var(--g0cb-bg-3);
  border-radius: var(--g0cb-radius);
  font-size: 1.3rem;
  color: var(--g0cb-text-light);
  line-height: 1.5;
}
.g0cb-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--g0cb-primary), var(--g0cb-secondary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.g0cb-steps strong { color: var(--g0cb-white); }

/* ---------------- FAQ ---------------- */
.g0cb-faq-item {
  background: var(--g0cb-bg-3);
  border-radius: var(--g0cb-radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(219, 112, 147, 0.18);
}
.g0cb-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  color: var(--g0cb-white);
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.g0cb-faq-q .g0cb-faq-toggle {
  color: var(--g0cb-primary);
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}
.g0cb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.2rem;
  color: var(--g0cb-muted);
  font-size: 1.25rem;
  line-height: 1.5;
}
.g0cb-faq-open .g0cb-faq-a {
  max-height: 500px;
  padding: 0 1.2rem 1rem;
}
.g0cb-faq-open .g0cb-faq-toggle { transform: rotate(45deg); }

/* ---------------- Testimonials ---------------- */
.g0cb-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.g0cb-testimonial {
  background: linear-gradient(145deg, #3a2a30, #2C2C2C);
  border-radius: var(--g0cb-radius);
  padding: 1.2rem;
  border-top: 3px solid var(--g0cb-secondary);
}
.g0cb-testimonial-stars { color: var(--g0cb-gold); font-size: 1.2rem; margin-bottom: 0.4rem; }
.g0cb-testimonial p { color: var(--g0cb-text-light); font-size: 1.25rem; line-height: 1.5; margin-bottom: 0.6rem; }
.g0cb-testimonial .who { color: var(--g0cb-primary); font-size: 1.15rem; font-weight: 700; }

/* ---------------- Winners list ---------------- */
.g0cb-winners { display: flex; flex-direction: column; gap: 0.6rem; }
.g0cb-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--g0cb-bg-3);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 1.25rem;
}
.g0cb-winner .name { color: var(--g0cb-text); font-weight: 600; }
.g0cb-winner .amount { color: var(--g0cb-gold); font-weight: 800; }
.g0cb-winner .game { color: var(--g0cb-muted); font-size: 1.1rem; }

/* ---------------- Payment ---------------- */
.g0cb-payments { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.g0cb-pay {
  flex: 1 1 28%;
  background: var(--g0cb-bg-3);
  padding: 1rem 0.5rem;
  border-radius: 10px;
  text-align: center;
  color: var(--g0cb-text-light);
  font-size: 1.15rem;
  font-weight: 600;
  border: 1px solid #444;
}
.g0cb-pay .ico { display: block; font-size: 1.8rem; color: var(--g0cb-primary); margin-bottom: 0.2rem; }

/* ---------------- App download ---------------- */
.g0cb-app-card {
  background: linear-gradient(135deg, var(--g0cb-secondary), var(--g0cb-accent));
  border-radius: var(--g0cb-radius-lg);
  padding: 1.6rem;
  text-align: center;
  color: #fff;
}
.g0cb-app-card h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.g0cb-app-card p { font-size: 1.2rem; margin-bottom: 1rem; opacity: 0.95; }
.g0cb-app-buttons { display: flex; flex-direction: column; gap: 0.6rem; }
.g0cb-app-btn {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 0.8rem;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.g0cb-app-btn:active { transform: scale(0.97); }

/* ---------------- Long SEO content ---------------- */
.g0cb-seo-content {
  background: var(--g0cb-bg-3);
  border-radius: var(--g0cb-radius);
  padding: 1.4rem;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--g0cb-text-light);
}
.g0cb-seo-content h2 {
  font-size: 1.7rem;
  color: var(--g0cb-white);
  margin: 1.2rem 0 0.6rem;
}
.g0cb-seo-content h2:first-child { margin-top: 0; }
.g0cb-seo-content h3 {
  font-size: 1.45rem;
  color: var(--g0cb-primary);
  margin: 1rem 0 0.4rem;
}
.g0cb-seo-content p { margin-bottom: 0.8rem; }
.g0cb-seo-content ul { margin: 0 0 0.8rem 1.4rem; }
.g0cb-seo-content li { margin-bottom: 0.4rem; }
.g0cb-seo-content strong { color: var(--g0cb-white); }

/* ---------------- Footer ---------------- */
.g0cb-footer {
  background: var(--g0cb-bg-2);
  border-top: 2px solid var(--g0cb-primary);
  padding: 2.4rem 0 6rem;
  margin-top: 2rem;
}
.g0cb-footer-brand {
  text-align: center;
  margin-bottom: 1.4rem;
}
.g0cb-footer-brand .name {
  font-size: 1.8rem;
  color: var(--g0cb-white);
  font-weight: 800;
}
.g0cb-footer-brand .name span { color: var(--g0cb-primary); }
.g0cb-footer-desc {
  font-size: 1.2rem;
  color: var(--g0cb-muted);
  max-width: 360px;
  margin: 0.6rem auto 0;
  line-height: 1.6;
}
.g0cb-footer-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1.4rem 0;
}
.g0cb-footer-link {
  background: var(--g0cb-bg-3);
  color: var(--g0cb-text);
  text-align: center;
  padding: 0.7rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid #444;
  transition: var(--g0cb-transition);
}
.g0cb-footer-link:active, .g0cb-footer-link:hover {
  background: linear-gradient(135deg, var(--g0cb-primary), var(--g0cb-secondary));
  color: #fff;
}
.g0cb-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  margin: 1.2rem 0;
}
.g0cb-footer-links a {
  color: var(--g0cb-muted);
  font-size: 1.2rem;
  text-decoration: underline;
}
.g0cb-footer-links a:hover { color: var(--g0cb-primary); }
.g0cb-footer-copy {
  text-align: center;
  font-size: 1.15rem;
  color: #888;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}

/* ---------------- Bottom nav ---------------- */
.g0cb-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, #1c1c1c, #000);
  border-top: 2px solid var(--g0cb-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.5);
}
.g0cb-bottom-nav button {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--g0cb-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 100%;
  min-width: 60px;
  cursor: pointer;
  font-family: inherit;
  transition: var(--g0cb-transition);
}
.g0cb-bottom-nav button .ico { font-size: 22px; }
.g0cb-bottom-nav button .label { font-size: 11px; font-weight: 600; }
.g0cb-bottom-nav button:active { transform: scale(0.92); }
.g0cb-bottom-nav button:active .ico,
.g0cb-bottom-nav .g0cb-nav-current .ico { color: var(--g0cb-primary); }
.g0cb-bottom-nav .g0cb-nav-current .label { color: var(--g0cb-text-light); }

/* ---------------- Back-to-top FAB ---------------- */
.g0cb-to-top {
  position: fixed;
  right: 14px;
  bottom: 76px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g0cb-primary), var(--g0cb-secondary));
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: var(--g0cb-shadow);
}
.g0cb-to-top-show { opacity: 1; pointer-events: auto; }

/* ---------------- Desktop tweaks ---------------- */
@media (min-width: 769px) {
  body { background: #181818; }
  .g0cb-container, .g0cb-header-row, .g0cb-wrapper { max-width: 960px; }
  .g0cb-grid { grid-template-columns: repeat(6, 1fr); }
  .g0cb-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .g0cb-testimonials { grid-template-columns: repeat(3, 1fr); }
  .g0cb-bottom-nav { display: none; }
  .g0cb-footer { padding-bottom: 2rem; }
  .g0cb-slides { height: 320px; }
  .g0cb-slide img, .g0cb-slides { height: 320px; }
}

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

/* ---------------- Utility ---------------- */
.g0cb-text-center { text-align: center; }
.g0cb-mt-1 { margin-top: 0.6rem; }
.g0cb-mt-2 { margin-top: 1.2rem; }
.g0cb-mb-2 { margin-bottom: 1.2rem; }
.g0cb-hidden { display: none !important; }
.g0cb-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--g0cb-secondary);
  color: #fff;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 2px;
}
.g0cb-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g0cb-primary), transparent);
  margin: 1.6rem 0;
}
