/* =====================================================================
   cockfighting.homes - layout stylesheet
   All custom classes use the "seed-" prefix.
   Color palette: #6495ED | #2D2D2D | #0000CD | #FFFFBA | #F08080
   Mobile-first. Root font-size 62.5% -> 1rem = 10px.
   ===================================================================== */

:root {
  --seed-primary: #6495ED;       /* cornflower blue */
  --seed-deep: #0000CD;          /* medium blue */
  --seed-dark: #2D2D2D;          /* near-black background */
  --seed-darker: #1a1a1a;        /* deeper background */
  --seed-accent: #F08080;        /* light coral */
  --seed-highlight: #FFFFBA;     /* pale highlight yellow */
  --seed-text: #f5f7ff;
  --seed-text-muted: #b9c0d8;
  --seed-border: rgba(100, 149, 237, 0.25);
  --seed-card-bg: #232a3d;
  --seed-card-bg-2: #2a3350;
  --seed-radius: 14px;
  --seed-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  --seed-header-h: 56px;
  --seed-bottom-h: 62px;
}

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

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

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: radial-gradient(circle at 20% 10%, #1d2748 0%, var(--seed-dark) 55%, var(--seed-darker) 100%);
  color: var(--seed-text);
  line-height: 1.5;
  font-size: 1.6rem;
  overflow-x: hidden;
  padding-top: var(--seed-header-h);
}

a { color: var(--seed-highlight); text-decoration: none; }
a:hover { color: var(--seed-accent); text-decoration: underline; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { color: #fff; line-height: 1.25; font-weight: 700; }
h1 { font-size: 2.4rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.6rem; }
p { color: var(--seed-text-muted); }

.seed-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
}
.seed-wrapper { width: 100%; }

/* ---------------- Header ---------------- */
.seed-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--seed-header-h);
  background: linear-gradient(90deg, var(--seed-deep), var(--seed-primary));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 205, 0.45);
}
.seed-logo {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 800; font-size: 1.7rem;
}
.seed-logo img { width: 28px; height: 28px; border-radius: 6px; }
.seed-logo span { color: var(--seed-highlight); }

.seed-header-actions { display: flex; align-items: center; gap: 8px; }
.seed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  min-height: 36px;
}
.seed-btn:hover { transform: translateY(-1px); }
.seed-btn-primary {
  background: var(--seed-accent);
  color: #2D2D2D;
  box-shadow: 0 4px 12px rgba(240, 128, 128, 0.5);
}
.seed-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.seed-menu-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ---------------- Mobile slide menu ---------------- */
#seedMobileMenu {
  position: fixed;
  top: 0; right: -80%;
  width: 80%;
  height: 100%;
  background: var(--seed-darker);
  z-index: 9999;
  padding: 70px 18px 30px;
  transition: right .28s ease;
  overflow-y: auto;
}
.seed-menu-open { right: 0 !important; }
#seedMenuOverlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  display: none;
}
.seed-overlay-active { display: block; }
.seed-mobile-menu h3 {
  color: var(--seed-highlight);
  margin: 16px 0 8px;
  font-size: 1.6rem;
}
.seed-mobile-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--seed-text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1.5rem;
}
.seed-mobile-menu a:hover { background: rgba(100,149,237,0.15); }

/* ---------------- Hero / Carousel ---------------- */
.seed-hero { margin-top: 12px; }
.seed-carousel {
  position: relative;
  border-radius: var(--seed-radius);
  overflow: hidden;
  box-shadow: var(--seed-shadow);
}
.seed-slide {
  display: none;
  position: relative;
  height: 200px;
}
.seed-slide img { width: 100%; height: 100%; object-fit: cover; }
.seed-slide-active { display: block; }
.seed-slide-caption {
  position: absolute;
  left: 12px; bottom: 12px; right: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 18px 10px 8px;
  font-size: 1.5rem;
  font-weight: 700;
}
.seed-slide-caption .seed-slide-cta {
  display: inline-block;
  margin-top: 6px;
  background: var(--seed-accent);
  color: #2D2D2D;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 1.3rem;
}
.seed-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 3;
}
.seed-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.seed-dot-active { background: var(--seed-highlight); }

/* ---------------- Section base ---------------- */
.seed-section { margin: 26px 0; }
.seed-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.seed-section-head h2 { font-size: 1.9rem; color: #fff; }
.seed-section-head .seed-link-more {
  font-size: 1.3rem; color: var(--seed-highlight);
}
.seed-section-intro {
  font-size: 1.4rem; color: var(--seed-text-muted);
  margin-bottom: 14px;
}

/* ---------------- Game grid ---------------- */
.seed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.seed-grid.seed-grid-4 { grid-template-columns: repeat(4, 1fr); }
.seed-card {
  background: var(--seed-card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--seed-border);
  transition: transform .15s ease, box-shadow .2s ease;
  cursor: pointer;
}
.seed-card:hover { transform: translateY(-3px); box-shadow: var(--seed-shadow); }
.seed-card img { width: 100%; height: 96px; object-fit: cover; }
.seed-card .seed-card-title {
  padding: 6px 8px;
  font-size: 1.15rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(0,0,0,0.25);
}
.seed-card .seed-card-tag {
  display: inline-block;
  background: var(--seed-deep);
  color: #fff;
  font-size: 1rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 6px;
}

/* ---------------- Featured ---------------- */
.seed-featured {
  background: linear-gradient(135deg, var(--seed-deep), var(--seed-primary));
  border-radius: var(--seed-radius);
  padding: 18px;
  color: #fff;
  box-shadow: var(--seed-shadow);
  margin: 20px 0;
}
.seed-featured h2 { color: #fff; margin-bottom: 8px; }
.seed-featured p { color: rgba(255,255,255,0.9); }

/* ---------------- Promo CTA strip ---------------- */
.seed-promo-strip {
  background: var(--seed-accent);
  color: #2D2D2D;
  padding: 14px;
  border-radius: var(--seed-radius);
  text-align: center;
  margin: 18px 0;
  font-weight: 700;
}
.seed-promo-strip .seed-btn { margin-top: 8px; }

/* ---------------- FAQ ---------------- */
.seed-faq-item {
  background: var(--seed-card-bg);
  border: 1px solid var(--seed-border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.seed-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 700; color: #fff;
  font-size: 1.45rem;
}
.seed-faq-icon { color: var(--seed-highlight); transition: transform .2s ease; }
.seed-faq-icon-open { transform: rotate(45deg); }
.seed-faq-body {
  display: none;
  padding: 0 14px 12px;
  color: var(--seed-text-muted);
  font-size: 1.35rem;
}

/* ---------------- Testimonials ---------------- */
.seed-testimonial {
  background: var(--seed-card-bg);
  border-left: 4px solid var(--seed-accent);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.seed-testimonial .seed-stars { color: var(--seed-highlight); font-size: 1.3rem; }
.seed-testimonial p { color: var(--seed-text); margin: 6px 0; font-size: 1.35rem; }
.seed-testimonial .seed-author { font-size: 1.2rem; color: var(--seed-text-muted); }

/* ---------------- Payment / Winners lists ---------------- */
.seed-list-card {
  background: var(--seed-card-bg);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--seed-border);
}
.seed-list-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 1.3rem;
}
.seed-list-row:last-child { border-bottom: none; }
.seed-list-row .seed-win { color: var(--seed-accent); font-weight: 700; }

/* ---------------- Footer ---------------- */
.seed-footer {
  background: var(--seed-darker);
  padding: 22px 12px 100px;
  margin-top: 30px;
  border-top: 3px solid var(--seed-primary);
}
.seed-footer h4 { color: var(--seed-highlight); margin: 12px 0 8px; }
.seed-footer p { font-size: 1.3rem; }
.seed-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin: 12px 0;
}
.seed-footer-links a { font-size: 1.3rem; color: var(--seed-text-muted); }
.seed-footer-buttons {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 12px 0;
}
.seed-copyright {
  margin-top: 14px;
  font-size: 1.2rem;
  color: var(--seed-text-muted);
  text-align: center;
}

/* ---------------- Bottom nav ---------------- */
.seed-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--seed-bottom-h);
  background: linear-gradient(90deg, var(--seed-deep), var(--seed-primary));
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -3px 14px rgba(0,0,205,0.5);
}
.seed-bottom-nav-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  gap: 2px;
  transition: transform .15s ease, color .15s ease;
}
.seed-bottom-nav-btn i,
.seed-bottom-nav-btn span.material-icons-outlined,
.seed-bottom-nav-btn ion-icon { font-size: 22px; }
.seed-bottom-nav-btn:hover { transform: scale(1.08); color: var(--seed-highlight); }
.seed-nav-active { color: var(--seed-highlight); }

/* ---------------- Utility ---------------- */
.seed-text-center { text-align: center; }
.seed-mt-1 { margin-top: 8px; }
.seed-mt-2 { margin-top: 16px; }
.seed-mb-2 { margin-bottom: 16px; }
.seed-hidden-mobile { display: none; }
.seed-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 1.1rem;
  background: rgba(100,149,237,0.2);
  color: var(--seed-highlight);
  margin-right: 4px;
}
.seed-info-box {
  background: var(--seed-card-bg);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--seed-border);
  font-size: 1.35rem;
  color: var(--seed-text-muted);
  margin-bottom: 12px;
}
.seed-info-box strong { color: #fff; }

/* ---------------- Desktop layout ---------------- */
@media (min-width: 769px) {
  body { padding-top: 64px; }
  .seed-container { max-width: 960px; padding: 0 20px; }
  .seed-grid { grid-template-columns: repeat(6, 1fr); }
  .seed-grid.seed-grid-4 { grid-template-columns: repeat(8, 1fr); }
  .seed-bottom-nav { display: none; }
  .seed-hidden-mobile { display: block; }
  .seed-footer { padding-bottom: 30px; }
  .seed-slide { height: 340px; }
  .seed-header { height: 64px; }
  .seed-footer-links { grid-template-columns: repeat(3, 1fr); }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .seed-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 360px) {
  .seed-grid { grid-template-columns: repeat(2, 1fr); }
  .seed-card img { height: 84px; }
}
