/*!
 * phbingo apk - screen-126111.css
 * Mobile-first (320-430px) basefile styles. Class prefix: g611-
 * Palette: #D4AF37 (gold) | #FFF8DC (cream) | #0E1621 (deep navy) | #FFE135 (yellow) | #BBBBBB (grey)
 */

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g611-gold: #D4AF37;
  --g611-cream: #FFF8DC;
  --g611-navy: #0E1621;
  --g611-yellow: #FFE135;
  --g611-grey: #BBBBBB;
  --g611-nav-h: 58px;
  --g611-bottom-h: 64px;
  --g611-max: 430px;
}

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--g611-navy);
  color: var(--g611-cream);
  line-height: 1.55;
  font-size: 15px;
  max-width: var(--g611-max);
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--g611-yellow); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

.g611-wrap { width: 100%; padding: 0 12px; }
.g611-section { padding: 22px 12px; }
.g611-section h2 {
  font-size: 20px;
  color: var(--g611-gold);
  margin-bottom: 12px;
  border-left: 4px solid var(--g611-yellow);
  padding-left: 10px;
  line-height: 1.3;
}
.g611-section h3 {
  font-size: 16px;
  color: var(--g611-yellow);
  margin: 14px 0 6px;
}
.g611-section p { margin-bottom: 10px; color: #E8E8E8; }
.g611-muted { color: var(--g611-grey); font-size: 13px; }

/* ---------- Header ---------- */
.g611-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--g611-nav-h);
  background: linear-gradient(180deg, #0c121c 0%, #0E1621 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
}
.g611-header-inner {
  width: 100%;
  max-width: var(--g611-max);
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.g611-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.g611-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--g611-gold);
  object-fit: cover;
  flex-shrink: 0;
}
.g611-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.g611-brand-text strong {
  font-size: 16px;
  color: var(--g611-yellow);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g611-brand-text span {
  font-size: 10px;
  color: var(--g611-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.g611-header-actions { display: flex; align-items: center; gap: 6px; }
.g611-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  border-radius: 22px;
  padding: 8px 14px;
  min-height: 36px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.g611-btn:active { transform: scale(0.96); }
.g611-btn-primary {
  background: linear-gradient(180deg, var(--g611-yellow) 0%, var(--g611-gold) 100%);
  color: #1a1300;
  box-shadow: 0 2px 0 #8a6b14;
}
.g611-btn-secondary {
  background: transparent;
  color: var(--g611-yellow);
  border: 1px solid var(--g611-gold);
}
.g611-btn-block {
  display: flex;
  width: 100%;
  padding: 12px;
  font-size: 15px;
}

.g611-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.g611-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--g611-yellow);
  position: relative;
}
.g611-menu-btn span::before,
.g611-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--g611-yellow);
}
.g611-menu-btn span::before { top: -6px; }
.g611-menu-btn span::after { top: 6px; }

/* ---------- Mobile dropdown nav ---------- */
.g611-mobile-nav {
  position: fixed;
  top: var(--g611-nav-h);
  right: 0;
  width: 78%;
  max-width: 320px;
  background: #0a1018;
  border-left: 1px solid rgba(212, 175, 55, 0.35);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  z-index: 60;
  padding: 14px 12px;
  height: calc(100vh - var(--g611-nav-h));
  overflow-y: auto;
}
.g611-mobile-nav.g611-open { transform: translateX(0); }
.g611-mobile-nav a {
  display: block;
  padding: 12px 10px;
  color: var(--g611-cream);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  font-size: 15px;
}
.g611-mobile-nav a:hover { background: rgba(212, 175, 55, 0.08); text-decoration: none; }
.g611-mobile-nav .g611-nav-cta {
  margin-top: 12px;
  text-align: center;
  background: linear-gradient(180deg, var(--g611-yellow) 0%, var(--g611-gold) 100%);
  color: #1a1300;
  font-weight: 700;
  border-radius: 10px;
}

.g611-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.g611-mobile-nav.g611-open ~ .g611-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Hero / Carousel ---------- */
.g611-hero { padding: 14px 12px 6px; }
.g611-carousel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #05090f;
  border: 1px solid rgba(212, 175, 55, 0.25);
}
.g611-slide {
  display: none;
  position: relative;
}
.g611-slide.g611-active { display: block; }
.g611-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.g611-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 14px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(14,22,33,0.92) 100%);
}
.g611-slide-cap h2 {
  color: var(--g611-yellow);
  font-size: 18px;
  margin-bottom: 4px;
  border: none;
  padding: 0;
}
.g611-slide-cap p {
  color: var(--g611-cream);
  font-size: 12px;
  margin: 0 0 8px;
}
.g611-slide-cap .g611-btn { padding: 6px 14px; font-size: 12px; }

.g611-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
}
.g611-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 248, 220, 0.4);
  border: none;
  cursor: pointer;
}
.g611-dot.g611-active { background: var(--g611-yellow); }

/* ---------- Quick stats ---------- */
.g611-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px 12px 14px;
}
.g611-stat {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.g611-stat b { display: block; color: var(--g611-yellow); font-size: 15px; }
.g611-stat small { color: var(--g611-grey); font-size: 10px; }

/* ---------- Category tabs ---------- */
.g611-cats {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 12px 10px;
  scrollbar-width: none;
}
.g611-cats::-webkit-scrollbar { display: none; }
.g611-cat-tab {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--g611-cream);
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.g611-cat-tab.g611-active {
  background: linear-gradient(180deg, var(--g611-yellow) 0%, var(--g611-gold) 100%);
  color: #1a1300;
  font-weight: 700;
}

/* ---------- Game grid ---------- */
.g611-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 4px 12px 12px;
}
@media (min-width: 360px) {
  .g611-games { gap: 9px; }
}
@media (min-width: 400px) {
  .g611-games { grid-template-columns: repeat(5, 1fr); }
}
.g611-game {
  background: #0a121c;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.g611-game:active { transform: scale(0.96); border-color: var(--g611-yellow); }
.g611-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #05090f;
}
.g611-game-name {
  display: block;
  font-size: 10.5px;
  text-align: center;
  padding: 4px 2px 5px;
  color: var(--g611-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g611-game-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  background: var(--g611-yellow);
  color: #1a1300;
  font-size: 8.5px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  text-transform: uppercase;
}

.g611-more-row { text-align: center; padding: 4px 12px 18px; }
.g611-more-row a {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--g611-gold);
  border-radius: 22px;
  color: var(--g611-yellow);
  font-size: 13px;
}

/* ---------- Feature cards ---------- */
.g611-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 380px) {
  .g611-features { grid-template-columns: 1fr 1fr; }
}
.g611-feature {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
  padding: 14px;
}
.g611-feature h3 {
  margin-top: 0;
  color: var(--g611-yellow);
}
.g611-feature .g611-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--g611-yellow) 0%, var(--g611-gold) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #1a1300; font-size: 18px;
  margin-bottom: 8px;
}

/* ---------- Steps ---------- */
.g611-steps { counter-reset: step; padding-left: 0; list-style: none; }
.g611-steps li {
  position: relative;
  padding: 8px 10px 8px 42px;
  margin-bottom: 8px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--g611-gold);
  border-radius: 6px;
  color: #E8E8E8;
  font-size: 14px;
}
.g611-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--g611-yellow);
  color: #1a1300;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ---------- FAQ ---------- */
.g611-faq-item {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.g611-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--g611-cream);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.g611-faq-q::after { content: "+"; color: var(--g611-yellow); font-size: 18px; font-weight: 700; }
.g611-faq-item.g611-open .g611-faq-q::after { content: "\2212"; }
.g611-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 14px;
  color: #D0D0D0;
  font-size: 13px;
}
.g611-faq-item.g611-open .g611-faq-a {
  max-height: 360px;
  padding: 0 14px 12px;
}

/* ---------- Promo banner ---------- */
.g611-promo-banner {
  margin: 16px 12px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a2433 0%, #0E1621 60%, #2a1f08 100%);
  border: 1px solid var(--g611-gold);
  text-align: center;
}
.g611-promo-banner h3 {
  color: var(--g611-yellow);
  margin: 0 0 6px;
  font-size: 17px;
}
.g611-promo-banner p {
  color: var(--g611-cream);
  font-size: 13px;
  margin: 0 0 12px;
}

/* ---------- SEO content block ---------- */
.g611-seo { font-size: 14px; color: #D6D6D6; }
.g611-seo h3 { color: var(--g611-yellow); margin: 14px 0 6px; }
.g611-seo ul { padding-left: 18px; margin: 6px 0 10px; }
.g611-seo li { margin-bottom: 4px; }
.g611-seo a { color: var(--g611-yellow); }

/* ---------- Footer ---------- */
.g611-footer {
  background: #05090f;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 22px 14px calc(var(--g611-bottom-h) + 22px);
  font-size: 13px;
  color: var(--g611-grey);
}
.g611-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.g611-footer h4 {
  color: var(--g611-yellow);
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.g611-footer a { display: block; color: var(--g611-grey); padding: 3px 0; font-size: 12.5px; }
.g611-footer a:hover { color: var(--g611-yellow); text-decoration: none; }
.g611-footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 12px;
  text-align: center;
  font-size: 11.5px;
  color: #888;
}
.g611-footer-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 12px;
}
.g611-footer-pay span {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--g611-cream);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}

/* ---------- Bottom navigation ---------- */
.g611-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--g611-max);
  height: var(--g611-bottom-h);
  background: linear-gradient(180deg, #0a121c 0%, #05090f 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  z-index: 70;
}
.g611-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--g611-grey);
  font-size: 10px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 2px;
  position: relative;
  transition: color 0.15s ease;
}
.g611-nav-item svg { width: 22px; height: 22px; fill: currentColor; }
.g611-nav-item.g611-active { color: var(--g611-yellow); }
.g611-nav-item.g611-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 2px;
  background: var(--g611-yellow);
  border-radius: 2px;
}
.g611-nav-item.g611-promo {
  color: #1a1300;
  background: linear-gradient(180deg, var(--g611-yellow) 0%, var(--g611-gold) 100%);
  font-weight: 700;
  margin: -10px 6px 6px;
  min-height: 68px;
  border-radius: 14px 14px 8px 8px;
  box-shadow: 0 -3px 0 rgba(14, 22, 33, 0.8), 0 3px 10px rgba(0, 0, 0, 0.35);
}
.g611-nav-item.g611-promo svg { fill: #1a1300; }
.g611-nav-item:active { transform: scale(0.94); }

/* ---------- Utility ---------- */
.g611-hide { display: none !important; }
.g611-center { text-align: center; }
.g611-mt8 { margin-top: 8px; }
.g611-mt16 { margin-top: 16px; }
