/* 22win33 - style-7cb2.css
 * All custom classes use the "pg7c-" prefix.
 * Palette: #0A0A0A (bg), #FFB347 (primary/amber), #FAFAD2 (light text accent).
 * Mobile-first, max-width 430px. rem units, root font 62.5%.
 * Comments in English.
 */

:root {
  --pg7c-bg: #0A0A0A;
  --pg7c-bg-alt: #161616;
  --pg7c-bg-card: #1f1f1f;
  --pg7c-primary: #FFB347;
  --pg7c-primary-dark: #e89a2c;
  --pg7c-light: #FAFAD2;
  --pg7c-text: #f5f5f0;
  --pg7c-text-muted: #b8b8a8;
  --pg7c-border: #2a2a2a;
}

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

html { font-size: 62.5%; }

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--pg7c-bg);
  color: var(--pg7c-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

a { color: var(--pg7c-primary); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Header ===== */
.pg7c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0d0d0d 0%, #0A0A0A 100%);
  border-bottom: 1px solid var(--pg7c-border);
  max-width: 430px;
  margin: 0 auto;
}
.pg7c-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  gap: 0.8rem;
}
.pg7c-brand {
  display: flex; align-items: center; gap: 0.8rem;
  flex: 1; min-width: 0;
}
.pg7c-brand img {
  width: 3rem; height: 3rem; border-radius: 0.6rem;
  border: 1px solid var(--pg7c-primary);
}
.pg7c-brand-name {
  font-size: 1.8rem; font-weight: 800; color: var(--pg7c-primary);
  letter-spacing: 0.03rem; white-space: nowrap;
}
.pg7c-brand-name span { color: var(--pg7c-light); }
.pg7c-header-actions { display: flex; align-items: center; gap: 0.6rem; }

.pg7c-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  border: none; border-radius: 2.4rem;
  font-size: 1.3rem; font-weight: 700;
  padding: 0.7rem 1.2rem; min-height: 3.4rem;
  cursor: pointer; transition: transform .15s, filter .15s;
}
.pg7c-btn:active { transform: scale(0.96); }
.pg7c-btn-primary {
  background: linear-gradient(135deg, var(--pg7c-primary), var(--pg7c-primary-dark));
  color: #1a1a1a;
}
.pg7c-btn-ghost {
  background: transparent; color: var(--pg7c-primary);
  border: 1px solid var(--pg7c-primary);
}
.pg7c-btn-block { width: 100%; padding: 1rem; font-size: 1.5rem; }

.pg7c-menu-btn {
  background: transparent; border: 1px solid var(--pg7c-border);
  color: var(--pg7c-light); width: 3.2rem; height: 3.2rem;
  border-radius: 0.6rem; font-size: 1.6rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ===== Mobile dropdown menu ===== */
.pg7c-mobile-menu {
  position: fixed;
  top: 5.6rem; left: 0; right: 0;
  background: #121212;
  border-bottom: 1px solid var(--pg7c-border);
  padding: 0.8rem 1.2rem 1.2rem;
  z-index: 9999;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  max-width: 430px; margin: 0 auto;
}
.pg7c-mobile-menu-open { max-height: 60rem; }
.pg7c-mobile-menu a {
  display: block; padding: 1rem 0.4rem;
  color: var(--pg7c-light);
  border-bottom: 1px dashed #2a2a2a;
  font-size: 1.4rem;
}
.pg7c-mobile-menu a:active { color: var(--pg7c-primary); }

/* ===== Layout ===== */
.pg7c-main { padding-top: 6rem; padding-bottom: 8rem; }
.pg7c-container { padding: 0 1.2rem; }
.pg7c-section { padding: 2rem 0; }
.pg7c-section-title {
  font-size: 1.7rem; font-weight: 800;
  color: var(--pg7c-primary); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.pg7c-section-title i { color: var(--pg7c-light); }
.pg7c-lead { color: var(--pg7c-text-muted); font-size: 1.35rem; margin-bottom: 1.2rem; }

/* ===== Carousel ===== */
.pg7c-carousel {
  position: relative; border-radius: 1rem; overflow: hidden;
  border: 1px solid var(--pg7c-border); margin: 1.2rem 0;
}
.pg7c-carousel-track { display: flex; transition: transform .5s ease; }
.pg7c-carousel-slide { min-width: 100%; position: relative; }
.pg7c-carousel-slide img { width: 100%; height: 18rem; object-fit: cover; }
.pg7c-carousel-caption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(10,10,10,0.7); padding: 0.6rem 0.8rem;
  border-radius: 0.6rem; color: var(--pg7c-light); font-size: 1.2rem;
}
.pg7c-carousel-dots {
  position: absolute; bottom: 0.6rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.5rem;
}
.pg7c-carousel-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(250,250,210,0.4); cursor: pointer; border: none;
}
.pg7c-carousel-dot-active { background: var(--pg7c-primary); }

/* ===== Hero CTA ===== */
.pg7c-hero {
  text-align: center; padding: 1.6rem 1.2rem;
  background: radial-gradient(circle at top, #1a1408 0%, #0A0A0A 70%);
  border-radius: 1rem; margin: 1.2rem 0;
}
.pg7c-hero h1 {
  font-size: 2rem; line-height: 2.6rem; color: var(--pg7c-primary);
  margin-bottom: 0.6rem;
}
.pg7c-hero p { color: var(--pg7c-text-muted); margin-bottom: 1.2rem; }

/* ===== Filter chips ===== */
.pg7c-filter-row {
  display: flex; gap: 0.6rem; overflow-x: auto;
  padding: 0.6rem 0 1rem; -webkit-overflow-scrolling: touch;
}
.pg7c-filter-chip {
  flex: 0 0 auto; padding: 0.6rem 1rem;
  background: var(--pg7c-bg-card); color: var(--pg7c-light);
  border-radius: 2rem; font-size: 1.2rem; font-weight: 600;
  border: 1px solid var(--pg7c-border); cursor: pointer;
}
.pg7c-filter-chip-active {
  background: var(--pg7c-primary); color: #1a1a1a; border-color: var(--pg7c-primary);
}

/* ===== Game grid (compact small icons) ===== */
.pg7c-game-block { margin-bottom: 2rem; }
.pg7c-game-block h3 {
  font-size: 1.5rem; color: var(--pg7c-light); margin-bottom: 0.8rem;
  border-left: 3px solid var(--pg7c-primary); padding-left: 0.6rem;
}
.pg7c-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.pg7c-game-card {
  display: block; background: var(--pg7c-bg-card);
  border-radius: 0.7rem; overflow: hidden;
  border: 1px solid var(--pg7c-border);
  transition: transform .15s;
}
.pg7c-game-card:active { transform: scale(0.96); }
.pg7c-game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pg7c-game-name {
  font-size: 1.1rem; color: var(--pg7c-light);
  padding: 0.4rem 0.3rem; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== Info / feature cards ===== */
.pg7c-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
}
.pg7c-card {
  background: var(--pg7c-bg-card); border: 1px solid var(--pg7c-border);
  border-radius: 0.8rem; padding: 1rem;
}
.pg7c-card-title {
  font-size: 1.3rem; color: var(--pg7c-primary);
  font-weight: 700; margin-bottom: 0.4rem;
}
.pg7c-card p { color: var(--pg7c-text-muted); font-size: 1.2rem; }

/* ===== RTP table ===== */
.pg7c-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.pg7c-rtp-table th, .pg7c-rtp-table td {
  padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--pg7c-border);
  text-align: left;
}
.pg7c-rtp-table th { color: var(--pg7c-primary); }
.pg7c-rtp-table td { color: var(--pg7c-light); }

/* ===== Testimonials ===== */
.pg7c-quote {
  background: var(--pg7c-bg-card); border-left: 3px solid var(--pg7c-primary);
  padding: 0.8rem 1rem; border-radius: 0.5rem; margin-bottom: 0.7rem;
}
.pg7c-quote p { color: var(--pg7c-light); font-size: 1.25rem; }
.pg7c-quote .pg7c-quote-by {
  color: var(--pg7c-primary); font-size: 1.1rem; margin-top: 0.4rem;
}

/* ===== Payment / winners strips ===== */
.pg7c-chip-row {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
}
.pg7c-chip {
  background: var(--pg7c-bg-card); border: 1px solid var(--pg7c-border);
  color: var(--pg7c-light); border-radius: 0.5rem;
  padding: 0.5rem 0.9rem; font-size: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}

/* ===== FAQ ===== */
.pg7c-faq-item {
  background: var(--pg7c-bg-card); border: 1px solid var(--pg7c-border);
  border-radius: 0.6rem; padding: 0.9rem 1rem; margin-bottom: 0.7rem;
}
.pg7c-faq-item h4 { color: var(--pg7c-primary); font-size: 1.3rem; margin-bottom: 0.3rem; }
.pg7c-faq-item p { color: var(--pg7c-text-muted); font-size: 1.25rem; }

/* ===== Inline promo text link ===== */
.pg7c-promo-link {
  color: var(--pg7c-primary); font-weight: 800;
  text-decoration: underline; cursor: pointer;
}

/* ===== Footer ===== */
.pg7c-footer {
  background: #050505; border-top: 1px solid var(--pg7c-border);
  padding: 2rem 1.2rem 9rem; margin-top: 2rem;
}
.pg7c-footer-brand {
  color: var(--pg7c-text-muted); font-size: 1.25rem; margin-bottom: 1.2rem;
}
.pg7c-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 1.2rem;
}
.pg7c-footer-links a {
  color: var(--pg7c-light); font-size: 1.2rem;
}
.pg7c-footer-promos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-bottom: 1.2rem;
}
.pg7c-footer-copy { color: #666; font-size: 1.1rem; }

/* ===== Mobile bottom nav (5 buttons) ===== */
.pg7c-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 6rem; z-index: 1000;
  background: #0d0d0d; border-top: 1px solid var(--pg7c-border);
  display: flex; justify-content: space-around; align-items: center;
  max-width: 430px; margin: 0 auto;
}
.pg7c-bottom-nav-btn {
  flex: 1; background: transparent; border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; min-width: 6rem; min-height: 6rem;
  color: var(--pg7c-text-muted); cursor: pointer;
  transition: color .15s, transform .15s;
}
.pg7c-bottom-nav-btn:active { transform: scale(0.92); }
.pg7c-bottom-nav-btn .pg7c-nav-icon { font-size: 2.2rem; line-height: 1; }
.pg7c-bottom-nav-btn .pg7c-nav-label { font-size: 1rem; }
.pg7c-bottom-nav-btn-active { color: var(--pg7c-primary); }
.pg7c-bottom-nav-btn-promo { color: var(--pg7c-primary); }

/* ===== Desktop: hide bottom nav ===== */
@media (min-width: 769px) {
  .pg7c-bottom-nav { display: none; }
  body, .pg7c-header, .pg7c-mobile-menu, .pg7c-footer { max-width: 430px; }
}

@media (max-width: 768px) {
  .pg7c-main { padding-bottom: 8rem; }
}
