/* theme-7fcc.css - 2jll.click core stylesheet
 * Palette: #32CD32 | #0E1621 | #E0E0E0 | #FA8072 | #3CB371 | #4A4A4A
 * Dark colors are backgrounds; light colors are text.
 * All custom classes use the uifc- prefix.
 */
:root {
  --uifc-primary: #32CD32;
  --uifc-bg: #0E1621;
  --uifc-text: #E0E0E0;
  --uifc-accent: #FA8072;
  --uifc-secondary: #3CB371;
  --uifc-muted: #4A4A4A;
  --uifc-bg-soft: #131E2C;
  --uifc-bg-card: #182738;
  --uifc-border: rgba(50, 205, 50, 0.22);
  --uifc-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  --uifc-radius: 12px;
  --uifc-radius-lg: 18px;
  --uifc-header-h: 56px;
  --uifc-bottomnav-h: 62px;
  --uifc-maxw: 430px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

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

body {
  font-family: 'Poppins', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  background: var(--uifc-bg);
  color: var(--uifc-text);
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--uifc-header-h);
  padding-bottom: var(--uifc-bottomnav-h);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--uifc-primary); text-decoration: none; }
a:hover { color: var(--uifc-accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.uifc-no-scroll { overflow: hidden; }

/* Layout primitives */
.uifc-container { width: 100%; max-width: var(--uifc-maxw); margin: 0 auto; padding: 0 12px; }
.uifc-wrapper { width: 100%; max-width: var(--uifc-maxw); margin: 0 auto; }
.uifc-text-center { text-align: center; }
.uifc-mt-8 { margin-top: 8px; } .uifc-mt-12 { margin-top: 12px; } .uifc-mb-12 { margin-bottom: 12px; }
.uifc-hidden { display: none !important; }

/* Header */
.uifc-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--uifc-header-h);
  background: linear-gradient(180deg, #0E1621 0%, #131E2C 100%);
  border-bottom: 1px solid var(--uifc-border);
  z-index: 1000;
  display: flex; align-items: center;
}
.uifc-header-inner {
  width: 100%; max-width: 760px; margin: 0 auto; padding: 0 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.uifc-logo { display: flex; align-items: center; gap: 8px; color: var(--uifc-text); font-weight: 700; font-size: 1.6rem; }
.uifc-logo .uifc-logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, #32CD32, #3CB371);
  display: inline-flex; align-items: center; justify-content: center;
  color: #06140A; font-size: 1.6rem; font-weight: 800;
}
.uifc-logo-text {
  background: linear-gradient(90deg, #32CD32, #FA8072);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 1.8rem; font-weight: 800;
}
.uifc-header-actions { display: flex; align-items: center; gap: 6px; }
.uifc-menu-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--uifc-primary); font-size: 2rem;
}

/* Buttons */
.uifc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 36px; padding: 0 14px; border-radius: 999px;
  font-size: 1.25rem; font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.uifc-btn:hover { transform: translateY(-1px); }
.uifc-btn-primary { background: var(--uifc-primary); color: #06140A; box-shadow: 0 4px 14px rgba(50, 205, 50, .35); }
.uifc-btn-primary:hover { background: #2BB02B; color: #06140A; }
.uifc-btn-outline { background: transparent; color: var(--uifc-primary); border: 1.5px solid var(--uifc-primary); }
.uifc-btn-outline:hover { background: rgba(50, 205, 50, .12); color: var(--uifc-primary); }
.uifc-btn-accent { background: var(--uifc-accent); color: #2A0E0A; }
.uifc-btn-accent:hover { background: #F26858; color: #2A0E0A; }
.uifc-btn-block { width: 100%; min-height: 44px; font-size: 1.4rem; }

/* Mobile menu */
.uifc-menu-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 9998;
}
.uifc-menu-overlay.uifc-menu-open { opacity: 1; pointer-events: auto; }
.uifc-mobile-menu {
  position: fixed; top: 0; right: -88%;
  width: 82%; max-width: 320px; height: 100%;
  background: var(--uifc-bg-soft);
  z-index: 9999; padding: 70px 18px 30px;
  overflow-y: auto; transition: right .3s ease;
  border-left: 1px solid var(--uifc-border);
}
.uifc-mobile-menu.uifc-menu-open { right: 0; }
.uifc-mobile-menu h4 { color: var(--uifc-primary); font-size: 1.2rem; margin: 18px 0 8px; text-transform: uppercase; letter-spacing: .08em; }
.uifc-mobile-menu a {
  display: block; padding: 11px 12px;
  color: var(--uifc-text); font-size: 1.35rem; border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.uifc-mobile-menu a:hover { background: rgba(50, 205, 50, .10); color: var(--uifc-primary); }

/* Carousel / Hero */
.uifc-carousel {
  position: relative; overflow: hidden;
  border-radius: var(--uifc-radius-lg);
  margin: 12px 0; box-shadow: var(--uifc-shadow);
}
.uifc-carousel-track { display: flex; transition: transform .5s ease; }
.uifc-carousel-slide { min-width: 100%; position: relative; cursor: pointer; }
.uifc-carousel-slide img { width: 100%; height: 200px; object-fit: cover; }
.uifc-carousel-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 14px 12px;
  background: linear-gradient(180deg, rgba(14, 22, 33, 0) 0%, rgba(14, 22, 33, .88) 100%);
  color: #fff;
}
.uifc-carousel-cap h2 { font-size: 1.7rem; margin-bottom: 4px; }
.uifc-carousel-cap p { font-size: 1.15rem; opacity: .92; }
.uifc-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(14, 22, 33, .65); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.uifc-carousel-prev { left: 6px; } .uifc-carousel-next { right: 6px; }
.uifc-carousel-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.uifc-carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, .55); cursor: pointer; }
.uifc-carousel-dot.uifc-dot-active { background: var(--uifc-primary); width: 18px; border-radius: 4px; }

/* Sections */
.uifc-section { padding: 16px 0; }
.uifc-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.uifc-section-head h2 { font-size: 1.7rem; color: #fff; }
.uifc-section-head .uifc-link { color: var(--uifc-accent); font-size: 1.2rem; font-weight: 600; }
.uifc-intro { padding: 14px 12px; }
.uifc-intro h1 { color: #fff; font-size: 1.9rem; margin-bottom: 6px; line-height: 1.3; }
.uifc-intro p { color: var(--uifc-text); font-size: 1.3rem; }

/* Game grid + cards */
.uifc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.uifc-card {
  background: var(--uifc-bg-card); border-radius: var(--uifc-radius); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .04);
  transition: transform .15s ease, box-shadow .15s ease; position: relative; cursor: pointer;
}
.uifc-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, .4); }
.uifc-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #0a1018; }
.uifc-card-name {
  padding: 6px 8px; font-size: 1.1rem; text-align: center; color: var(--uifc-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.uifc-card-tag {
  position: absolute; top: 6px; left: 6px;
  background: var(--uifc-accent); color: #fff;
  font-size: 1rem; padding: 2px 6px; border-radius: 4px; font-weight: 700;
}
.uifc-tag-hot { background: #FA8072; } .uifc-tag-new { background: #32CD32; color: #06140A; }
.uifc-tag-vip { background: #FFD166; color: #2A1C00; } .uifc-tag-fish { background: #3CB371; color: #06140A; }

/* Content info blocks */
.uifc-card-info {
  background: var(--uifc-bg-card); padding: 14px; border-radius: var(--uifc-radius);
  margin-bottom: 12px; border-left: 3px solid var(--uifc-primary);
}
.uifc-card-info h3 { color: var(--uifc-primary); margin-bottom: 6px; font-size: 1.5rem; }
.uifc-card-info p { color: var(--uifc-text); font-size: 1.3rem; margin-bottom: 6px; }
.uifc-card-info a { color: var(--uifc-accent); font-weight: 600; text-decoration: underline; }

.uifc-pill {
  display: inline-block; padding: 3px 10px;
  background: rgba(50, 205, 50, .15); color: var(--uifc-primary);
  border-radius: 999px; font-size: 1.1rem; font-weight: 600; margin: 2px;
}
.uifc-callout {
  background: linear-gradient(135deg, rgba(50, 205, 50, .18), rgba(250, 128, 114, .18));
  padding: 16px; border-radius: var(--uifc-radius-lg); text-align: center; margin: 12px 0;
}
.uifc-callout h3 { color: #fff; margin-bottom: 6px; font-size: 1.6rem; }
.uifc-callout p { color: var(--uifc-text); font-size: 1.25rem; margin-bottom: 10px; }

.uifc-list { list-style: none; }
.uifc-list li { padding: 7px 0 7px 22px; position: relative; font-size: 1.3rem; color: var(--uifc-text); }
.uifc-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--uifc-primary);
}

/* Testimonials */
.uifc-testimonial { background: var(--uifc-bg-card); padding: 12px; border-radius: var(--uifc-radius); margin-bottom: 8px; }
.uifc-testimonial .uifc-stars { color: #FFD166; font-size: 1.2rem; margin-bottom: 4px; }
.uifc-testimonial p { font-size: 1.25rem; color: var(--uifc-text); margin-bottom: 6px; }
.uifc-testimonial .uifc-author { font-size: 1.1rem; color: var(--uifc-primary); font-weight: 700; }

.uifc-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; background: var(--uifc-bg-card); border-radius: 8px; margin-bottom: 6px;
}
.uifc-winner-row span:first-child { color: var(--uifc-text); font-size: 1.2rem; font-weight: 600; }
.uifc-winner-row span:last-child { color: var(--uifc-primary); font-size: 1.3rem; font-weight: 800; }

/* FAQ */
.uifc-faq { background: var(--uifc-bg-card); border-radius: var(--uifc-radius); margin-bottom: 8px; overflow: hidden; }
.uifc-faq summary { padding: 12px 14px; font-size: 1.3rem; color: #fff; cursor: pointer; list-style: none; font-weight: 600; }
.uifc-faq summary::-webkit-details-marker { display: none; }
.uifc-faq[open] summary { color: var(--uifc-primary); }
.uifc-faq p { padding: 0 14px 12px; font-size: 1.25rem; color: var(--uifc-text); }

/* Payment chips */
.uifc-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.uifc-chip {
  background: var(--uifc-bg-card); padding: 6px 12px; border-radius: 999px;
  font-size: 1.2rem; color: var(--uifc-text); border: 1px solid rgba(255, 255, 255, .06); font-weight: 600;
}

/* Promo links (SEO text links) */
.uifc-promo-link { color: var(--uifc-accent); font-weight: 700; text-decoration: underline; cursor: pointer; }
.uifc-promo-link:hover { color: var(--uifc-primary); }

/* Footer */
.uifc-footer {
  background: #060B12; padding: 22px 0 calc(var(--uifc-bottomnav-h) + 22px);
  margin-top: 22px; border-top: 1px solid var(--uifc-border);
}
.uifc-footer h4 { color: var(--uifc-primary); font-size: 1.3rem; margin: 12px 0 8px; }
.uifc-footer p { font-size: 1.2rem; line-height: 1.6; color: #b8c1cc; }
.uifc-footer a { color: var(--uifc-text); font-size: 1.2rem; display: block; padding: 4px 0; }
.uifc-footer a:hover { color: var(--uifc-primary); }
.uifc-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.uifc-footer-bottom {
  text-align: center; padding-top: 14px; margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: 1.1rem; color: #8a93a0;
}
.uifc-promo-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }

/* Mobile bottom navigation */
.uifc-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--uifc-bottomnav-h);
  background: linear-gradient(180deg, #131E2C 0%, #060B12 100%);
  border-top: 1px solid var(--uifc-border);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
}
.uifc-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--uifc-text); font-size: 1rem; gap: 2px;
  position: relative; transition: color .15s ease, transform .15s ease;
  background: none; cursor: pointer; text-decoration: none;
}
.uifc-bottomnav-btn .uifc-bottomnav-icon { font-size: 2.2rem; }
.uifc-bottomnav-btn .material-icons { font-size: 2.4rem; }
.uifc-bottomnav-btn ion-icon { font-size: 2.4rem; }
.uifc-bottomnav-btn:hover { color: var(--uifc-primary); transform: translateY(-2px); }
.uifc-bottomnav-active { color: var(--uifc-primary); }
.uifc-bottomnav-active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 3px; border-radius: 2px; background: var(--uifc-primary);
}

/* Responsive: tablet & desktop */
@media (min-width: 640px) {
  .uifc-grid { grid-template-columns: repeat(4, 1fr); }
  .uifc-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .uifc-container { max-width: 760px; }
  .uifc-carousel-slide img { height: 280px; }
}
@media (min-width: 769px) {
  body { padding-bottom: 0; }
  .uifc-bottomnav { display: none; }
  .uifc-footer { padding-bottom: 22px; }
  .uifc-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 480px) and (max-width: 639px) {
  .uifc-grid { grid-template-columns: repeat(4, 1fr); }
}
