/* casino sign up - Core stylesheet (basefiles) */
/* All custom classes use pg76- prefix */
:root {
  --pg76-primary: #6F4E37;
  --pg76-bg: #0C0C0C;
  --pg76-bg-soft: #15110d;
  --pg76-accent: #FF8000;
  --pg76-sand: #F4A460;
  --pg76-sienna: #A0522D;
  --pg76-text: #f6efe6;
  --pg76-muted: #c9b9a3;
  --pg76-line: rgba(244, 164, 96, 0.18);
  --pg76-radius: 14px;
  --pg76-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--pg76-bg);
  color: var(--pg76-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pg76-sand); text-decoration: none; }
a:hover { color: var(--pg76-accent); }
/* Layout container - mobile-first capped at 430px */
.pg76-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.4rem;
  position: relative;
}
.pg76-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
main { padding-bottom: 84px; }
/* ===== Header ===== */
.pg76-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(12,12,12,0.98), rgba(12,12,12,0.92));
  border-bottom: 1px solid var(--pg76-line);
  backdrop-filter: blur(6px);
}
.pg76-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.pg76-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}
.pg76-brand img {
  width: 28px; height: 28px;
  border-radius: 6px;
}
.pg76-brand-name {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pg76-sand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pg76-brand-name span { color: var(--pg76-accent); }
.pg76-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 36px;
  text-decoration: none;
}
.pg76-btn-primary {
  background: linear-gradient(135deg, var(--pg76-accent), var(--pg76-sienna));
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 128, 0, 0.35);
}
.pg76-btn-ghost {
  background: transparent;
  color: var(--pg76-sand);
  border: 1px solid var(--pg76-line);
}
.pg76-btn:hover { transform: translateY(-1px); }
.pg76-btn:active { transform: scale(0.97); }
#pg76MenuToggle {
  background: transparent;
  border: 1px solid var(--pg76-line);
  color: var(--pg76-sand);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
#pg76MenuToggle.pg76-active { background: rgba(255,128,0,0.15); }
/* ===== Mobile dropdown menu ===== */
.pg76-mobilemenu {
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: var(--pg76-bg-soft);
  border-bottom: 1px solid var(--pg76-line);
  z-index: 9999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  box-shadow: var(--pg76-shadow);
}
.pg76-mobilemenu.pg76-open { max-height: 460px; }
.pg76-mobilemenu ul { list-style: none; padding: 0.6rem 1.2rem; }
.pg76-mobilemenu li { border-bottom: 1px dashed rgba(244,164,96,0.1); }
.pg76-mobilemenu li:last-child { border-bottom: none; }
.pg76-mobilemenu a {
  display: block;
  padding: 1rem 0.4rem;
  color: var(--pg76-text);
  font-size: 1.4rem;
}
.pg76-mobilemenu a:hover { color: var(--pg76-accent); padding-left: 0.8rem; }
/* ===== Hero carousel ===== */
.pg76-hero {
  margin-top: 60px;
  padding: 1rem 0 0.4rem;
}
.pg76-hero-carousel {
  position: relative;
  border-radius: var(--pg76-radius);
  overflow: hidden;
  box-shadow: var(--pg76-shadow);
}
.pg76-hero-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.pg76-hero-slide.pg76-active { display: block; }
.pg76-hero-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.pg76-hero-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(12,12,12,0.92));
}
.pg76-hero-cap h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.pg76-hero-cap p {
  color: var(--pg76-sand);
  font-size: 1.2rem;
}
.pg76-hero-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.7rem 0 0;
}
.pg76-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(244,164,96,0.3);
  border: none;
  cursor: pointer;
}
.pg76-hero-dot.pg76-active { background: var(--pg76-accent); width: 18px; border-radius: 4px; }
/* ===== Headings / sections ===== */
.pg76-section {
  padding: 1.6rem 0 0.6rem;
}
.pg76-section-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.pg76-section-head .pg76-bar {
  width: 4px; height: 20px;
  background: var(--pg76-accent);
  border-radius: 4px;
}
.pg76-h1 {
  font-size: 2rem;
  line-height: 1.35;
  color: #fff;
  margin: 0.6rem 0 0.8rem;
  font-weight: 800;
}
.pg76-h1 span, .pg76-h2 span, .pg76-h3 span { color: var(--pg76-accent); }
.pg76-h2 { font-size: 1.7rem; color: #fff; margin: 0.4rem 0 0.6rem; font-weight: 700; }
.pg76-h3 { font-size: 1.5rem; color: var(--pg76-sand); margin: 0.6rem 0 0.4rem; font-weight: 700; }
.pg76-text { color: var(--pg76-muted); font-size: 1.38rem; }
.pg76-text strong { color: var(--pg76-accent); }
/* ===== Filter chips ===== */
.pg76-chips {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.4rem 0 0.8rem;
  -webkit-overflow-scrolling: touch;
}
.pg76-chip {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(244,164,96,0.08);
  border: 1px solid var(--pg76-line);
  color: var(--pg76-sand);
  font-size: 1.25rem;
  cursor: pointer;
}
.pg76-chip.pg76-active { background: var(--pg76-accent); color: #fff; border-color: var(--pg76-accent); }
/* ===== Game grid ===== */
.pg76-game-section { margin-bottom: 1.4rem; }
.pg76-game-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}
.pg76-game-section-title i { color: var(--pg76-accent); }
.pg76-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.pg76-game-card {
  background: var(--pg76-bg-soft);
  border: 1px solid var(--pg76-line);
  border-radius: 12px;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  display: block;
}
.pg76-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--pg76-accent);
}
.pg76-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.4rem;
}
.pg76-game-name {
  font-size: 1.15rem;
  color: var(--pg76-text);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.8em;
}
/* ===== Cards / features ===== */
.pg76-card {
  background: var(--pg76-bg-soft);
  border: 1px solid var(--pg76-line);
  border-radius: var(--pg76-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.pg76-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pg76-card-row .pg76-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,128,0,0.12);
  color: var(--pg76-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.pg76-list { padding-left: 1.2rem; color: var(--pg76-muted); }
.pg76-list li { margin-bottom: 0.4rem; font-size: 1.35rem; }
.pg76-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pg76-pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(244,164,96,0.08);
  border: 1px solid var(--pg76-line);
  font-size: 1.2rem;
  color: var(--pg76-sand);
}
.pg76-rtp-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(244,164,96,0.12);
  font-size: 1.3rem;
}
.pg76-rtp-row:last-child { border-bottom: none; }
.pg76-rtp-row b { color: var(--pg76-accent); }
.pg76-faq-item {
  border-bottom: 1px solid var(--pg76-line);
  padding: 0.8rem 0;
}
.pg76-faq-item h3 { margin-bottom: 0.3rem; }
.pg76-faq-item p { color: var(--pg76-muted); font-size: 1.32rem; }
.pg76-quote {
  background: rgba(255,128,0,0.06);
  border-left: 3px solid var(--pg76-accent);
  padding: 0.8rem 1rem;
  border-radius: 0 10px 10px 0;
  margin-bottom: 0.7rem;
}
.pg76-quote p { font-style: italic; color: var(--pg76-text); font-size: 1.32rem; }
.pg76-quote span { color: var(--pg76-sand); font-size: 1.2rem; }
.pg76-cta {
  display: block;
  text-align: center;
  padding: 1.1rem;
  border-radius: var(--pg76-radius);
  background: linear-gradient(135deg, var(--pg76-accent), var(--pg76-sienna));
  color: #fff;
  font-weight: 800;
  font-size: 1.55rem;
  box-shadow: 0 6px 18px rgba(255,128,0,0.35);
  margin: 1rem 0;
}
/* ===== Footer ===== */
.pg76-footer {
  background: var(--pg76-bg-soft);
  border-top: 1px solid var(--pg76-line);
  padding: 1.4rem 0 2rem;
  margin-top: 1.6rem;
}
.pg76-footer p { color: var(--pg76-muted); font-size: 1.28rem; margin-bottom: 0.8rem; }
.pg76-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 1rem;
}
.pg76-footer-links a {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--pg76-line);
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--pg76-sand);
}
.pg76-footer-links a:hover { background: rgba(255,128,0,0.1); color: var(--pg76-accent); }
.pg76-copy { color: var(--pg76-muted); font-size: 1.15rem; border-top: 1px solid var(--pg76-line); padding-top: 0.8rem; }
/* ===== Bottom navigation ===== */
.pg76-bottombar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: linear-gradient(180deg, rgba(21,17,13,0.99), rgba(12,12,12,0.99));
  border-top: 1px solid var(--pg76-line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.4);
}
.pg76-bottombar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--pg76-muted);
  font-size: 1.05rem;
  gap: 0.2rem;
  min-width: 60px;
  min-height: 60px;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}
.pg76-bottombar a i { font-size: 22px; }
.pg76-bottombar a:hover { color: var(--pg76-sand); }
.pg76-bottombar a:active { transform: scale(0.92); }
.pg76-bottombar a.pg76-current { color: var(--pg76-accent); }
.pg76-bottombar .pg76-badge {
  position: absolute;
  top: 8px; right: calc(50% - 30px);
  background: var(--pg76-accent);
  color: #fff;
  font-size: 0.9rem;
  padding: 0 5px;
  border-radius: 999px;
  line-height: 1.4;
}
/* ===== Reveal animation ===== */
.pg76-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pg76-reveal.pg76-visible { opacity: 1; transform: translateY(0); }
/* ===== Desktop ===== */
@media (min-width: 769px) {
  .pg76-bottombar { display: none; }
  main { padding-bottom: 30px; }
  .pg76-header-inner { max-width: 760px; }
}
/* ===== Small phones ===== */
@media (max-width: 360px) {
  .pg76-grid { grid-template-columns: repeat(2, 1fr); }
  .pg76-brand-name { font-size: 1.3rem; }
}
