/* =====================================================
   taya77.cfd - Theme Stylesheet
   Prefix: g0c8-
   Color Palette: #FFB74D | #D3D3D3 | #FF6347 | #BF360C | #262626
   ===================================================== */

/* --- CSS Variables --- */
:root {
  --g0c8-primary: #FFB74D;
  --g0c8-secondary: #D3D3D3;
  --g0c8-accent: #FF6347;
  --g0c8-deep: #BF360C;
  --g0c8-bg: #262626;
  --g0c8-bg-dark: #1a1a1a;
  --g0c8-bg-card: #2e2e2e;
  --g0c8-text: #f0f0f0;
  --g0c8-text-muted: #a0a0a0;
  --g0c8-text-dark: #262626;
  --g0c8-gold: #FFB74D;
  --g0c8-radius: 8px;
  --g0c8-radius-lg: 16px;
  --g0c8-shadow: 0 4px 16px rgba(0,0,0,0.3);
  --g0c8-transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::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(--g0c8-bg);
  color: var(--g0c8-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--g0c8-primary); text-decoration: none; }
a:hover { color: var(--g0c8-accent); }
img { max-width: 100%; height: auto; display: block; }

/* --- Header --- */
.g0c8-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--g0c8-bg-dark);
  border-bottom: 2px solid var(--g0c8-deep);
  max-width: 430px; margin: 0 auto;
}
.g0c8-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; height: 52px;
}
.g0c8-logo-area { display: flex; align-items: center; gap: 8px; }
.g0c8-logo-area img { width: 28px; height: 28px; border-radius: 4px; }
.g0c8-logo-area span { font-size: 1.6rem; font-weight: 700; color: var(--g0c8-primary); }
.g0c8-header-actions { display: flex; align-items: center; gap: 6px; }
.g0c8-btn-register {
  background: var(--g0c8-accent); color: #fff; border: none;
  padding: 6px 14px; border-radius: var(--g0c8-radius);
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  transition: var(--g0c8-transition);
}
.g0c8-btn-register:hover { background: #e5533a; transform: scale(1.05); }
.g0c8-btn-login {
  background: transparent; color: var(--g0c8-primary);
  border: 1px solid var(--g0c8-primary);
  padding: 6px 14px; border-radius: var(--g0c8-radius);
  font-size: 1.2rem; font-weight: 600; cursor: pointer;
  transition: var(--g0c8-transition);
}
.g0c8-btn-login:hover { background: var(--g0c8-primary); color: var(--g0c8-bg-dark); }
.g0c8-menu-toggle {
  background: none; border: none; color: var(--g0c8-primary);
  font-size: 2rem; cursor: pointer; padding: 4px;
}

/* --- Mobile Menu --- */
.g0c8-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px;
  height: 100vh; z-index: 9999;
  background: var(--g0c8-bg-dark);
  transition: right 0.35s ease;
  overflow-y: auto; padding: 60px 16px 20px;
}
.g0c8-mobile-menu.g0c8-menu-active { right: 0; }
.g0c8-menu-overlay {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(0,0,0,0.6); z-index: 9998;
}
.g0c8-menu-overlay.g0c8-overlay-active { display: block; }
.g0c8-menu-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: var(--g0c8-text);
  font-size: 2.4rem; cursor: pointer;
}
.g0c8-mobile-menu a {
  display: block; padding: 12px 0; color: var(--g0c8-text);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1.4rem; transition: var(--g0c8-transition);
}
.g0c8-mobile-menu a:hover { color: var(--g0c8-primary); padding-left: 8px; }

/* --- Main Content --- */
.g0c8-main { padding-top: 60px; }
@media (max-width: 768px) { .g0c8-main { padding-bottom: 80px; } }

/* --- Carousel --- */
.g0c8-carousel { position: relative; overflow: hidden; width: 100%; }
.g0c8-slide {
  display: none; cursor: pointer; width: 100%;
}
.g0c8-slide.g0c8-slide-active { display: block; }
.g0c8-slide img { width: 100%; height: auto; min-height: 160px; object-fit: cover; }
.g0c8-carousel-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px;
}
.g0c8-carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: var(--g0c8-transition);
}
.g0c8-carousel-dot.g0c8-dot-active { background: var(--g0c8-primary); }

/* --- Section --- */
.g0c8-section { padding: 20px 12px; }
.g0c8-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--g0c8-primary);
  margin-bottom: 14px; padding-bottom: 6px;
  border-bottom: 2px solid var(--g0c8-deep);
}
.g0c8-section-title i { margin-right: 6px; }

/* --- Game Grid --- */
.g0c8-category-title {
  font-size: 1.5rem; font-weight: 600; color: var(--g0c8-gold);
  margin: 16px 0 10px; padding-left: 4px;
  border-left: 3px solid var(--g0c8-accent); padding-left: 10px;
}
.g0c8-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.g0c8-game-item { text-align: center; cursor: pointer; transition: var(--g0c8-transition); }
.g0c8-game-item:hover { transform: scale(1.05); }
.g0c8-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: var(--g0c8-radius);
  border: 2px solid transparent; transition: var(--g0c8-transition);
}
.g0c8-game-item:hover img { border-color: var(--g0c8-primary); }
.g0c8-game-name {
  font-size: 1.1rem; color: var(--g0c8-text-muted);
  margin-top: 4px; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* --- Content Cards --- */
.g0c8-card {
  background: var(--g0c8-bg-card); border-radius: var(--g0c8-radius-lg);
  padding: 16px; margin-bottom: 14px; box-shadow: var(--g0c8-shadow);
}
.g0c8-card h3 { font-size: 1.6rem; color: var(--g0c8-primary); margin-bottom: 8px; }
.g0c8-card p { font-size: 1.3rem; color: var(--g0c8-text-muted); line-height: 1.6; }

/* --- Promo Button --- */
.g0c8-promo-btn {
  display: inline-block; background: linear-gradient(135deg, var(--g0c8-accent), var(--g0c8-deep));
  color: #fff; padding: 10px 24px; border-radius: 30px;
  font-size: 1.4rem; font-weight: 700; cursor: pointer;
  border: none; transition: var(--g0c8-transition);
  text-align: center;
}
.g0c8-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(255,99,71,0.4); }

/* --- Promo Text Link --- */
.g0c8-promo-link {
  color: var(--g0c8-accent); font-weight: 700; cursor: pointer;
  text-decoration: underline; transition: var(--g0c8-transition);
}
.g0c8-promo-link:hover { color: var(--g0c8-primary); }

/* --- Features Grid --- */
.g0c8-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.g0c8-feature-item {
  background: var(--g0c8-bg-card); border-radius: var(--g0c8-radius);
  padding: 14px 10px; text-align: center;
  border: 1px solid rgba(255,183,77,0.15);
  transition: var(--g0c8-transition);
}
.g0c8-feature-item:hover { border-color: var(--g0c8-primary); }
.g0c8-feature-icon { font-size: 2.4rem; color: var(--g0c8-primary); margin-bottom: 6px; }
.g0c8-feature-item h4 { font-size: 1.3rem; color: var(--g0c8-text); margin-bottom: 4px; }
.g0c8-feature-item p { font-size: 1.1rem; color: var(--g0c8-text-muted); line-height: 1.4; }

/* --- Testimonials --- */
.g0c8-testimonial {
  background: var(--g0c8-bg-card); border-radius: var(--g0c8-radius);
  padding: 14px; margin-bottom: 10px; border-left: 3px solid var(--g0c8-gold);
}
.g0c8-testimonial-name { font-size: 1.3rem; color: var(--g0c8-primary); font-weight: 600; }
.g0c8-testimonial-text { font-size: 1.2rem; color: var(--g0c8-text-muted); margin-top: 6px; line-height: 1.5; }

/* --- Payment Methods --- */
.g0c8-payment-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.g0c8-payment-item {
  background: var(--g0c8-bg-card); padding: 8px 14px;
  border-radius: var(--g0c8-radius); font-size: 1.2rem;
  color: var(--g0c8-text-muted); border: 1px solid rgba(255,183,77,0.1);
}

/* --- Winners Showcase --- */
.g0c8-winner-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.g0c8-winner-game { font-size: 1.2rem; color: var(--g0c8-text); }
.g0c8-winner-amount { font-size: 1.3rem; color: var(--g0c8-accent); font-weight: 700; }

/* --- Footer --- */
.g0c8-footer {
  background: var(--g0c8-bg-dark); padding: 24px 12px;
  border-top: 2px solid var(--g0c8-deep);
}
.g0c8-footer-brand { text-align: center; margin-bottom: 16px; }
.g0c8-footer-brand p { font-size: 1.2rem; color: var(--g0c8-text-muted); line-height: 1.5; }
.g0c8-footer-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
.g0c8-footer-links a {
  font-size: 1.2rem; color: var(--g0c8-text-muted);
  padding: 4px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.05); transition: var(--g0c8-transition);
}
.g0c8-footer-links a:hover { color: var(--g0c8-primary); background: rgba(255,183,77,0.1); }
.g0c8-footer-partners { text-align: center; margin-bottom: 16px; }
.g0c8-footer-partners p { font-size: 1.1rem; color: var(--g0c8-text-muted); margin-bottom: 8px; }
.g0c8-footer-copyright { text-align: center; font-size: 1.1rem; color: var(--g0c8-text-muted); }

/* --- Bottom Navigation --- */
.g0c8-bnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1000; background: var(--g0c8-bg-dark);
  border-top: 2px solid var(--g0c8-deep);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; max-width: 430px; margin: 0 auto;
}
.g0c8-bnav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 60px; min-height: 56px;
  background: none; border: none; cursor: pointer;
  color: var(--g0c8-text-muted); transition: var(--g0c8-transition);
  padding: 4px 2px;
}
.g0c8-bnav-btn:hover, .g0c8-bnav-btn.g0c8-bnav-active {
  color: var(--g0c8-primary); transform: scale(1.08);
}
.g0c8-bnav-btn i, .g0c8-bnav-btn .material-icons { font-size: 22px; }
.g0c8-bnav-btn span { font-size: 1rem; margin-top: 2px; }
@media (min-width: 769px) { .g0c8-bnav { display: none; } }

/* --- Promo CTA Bar --- */
.g0c8-cta-bar {
  background: linear-gradient(135deg, var(--g0c8-accent), var(--g0c8-deep));
  padding: 16px; text-align: center; border-radius: var(--g0c8-radius-lg);
  margin: 16px 12px;
}
.g0c8-cta-bar h3 { font-size: 1.6rem; color: #fff; margin-bottom: 6px; }
.g0c8-cta-bar p { font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-bottom: 12px; }

/* --- Responsive Helpers --- */
.g0c8-text-center { text-align: center; }
.g0c8-mt-10 { margin-top: 10px; }
.g0c8-mb-10 { margin-bottom: 10px; }
.g0c8-hidden { display: none; }

/* --- Desktop adjustments --- */
@media (min-width: 769px) {
  body { max-width: 430px; }
  .g0c8-header { max-width: 430px; }
  .g0c8-bnav { display: none; }
}

/* --- Animation --- */
@keyframes g0c8-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.g0c8-animate-pulse { animation: g0c8-pulse 2s infinite; }
