/*
 * staph.cfd - Core Stylesheet
 * All classes use g0b1- prefix for namespace isolation
 * Color palette: #00695C | #FF91A4 | #FF69B4 | #9400D3 | #2C3E50
 * Mobile-first design, max-width 430px
 */

/* CSS Variables */
:root {
  --g0b1-primary: #00695C;
  --g0b1-secondary: #9400D3;
  --g0b1-accent: #FF69B4;
  --g0b1-light: #FF91A4;
  --g0b1-bg: #2C3E50;
  --g0b1-bg-dark: #1a252f;
  --g0b1-text: #f0f0f0;
  --g0b1-text-muted: #b0bec5;
  --g0b1-card-bg: #34495e;
  --g0b1-border: #4a6274;
  font-size: 62.5%;
}

/* Reset and Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--g0b1-bg);
  color: var(--g0b1-text);
  line-height: 1.5rem;
  font-size: 1.6rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
}
a { color: var(--g0b1-light); text-decoration: none; }
a:hover { color: var(--g0b1-accent); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.g0b1-container { width: 100%; padding: 0 1.2rem; max-width: 430px; margin: 0 auto; }

/* Header */
.g0b1-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--g0b1-bg-dark) 0%, var(--g0b1-bg) 100%);
  border-bottom: 2px solid var(--g0b1-primary);
  max-width: 430px; margin: 0 auto;
}
.g0b1-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; height: 56px;
}
.g0b1-logo { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.g0b1-logo img { width: 28px; height: 28px; border-radius: 4px; }
.g0b1-logo span { font-size: 1.8rem; font-weight: 700; color: var(--g0b1-accent); letter-spacing: 1px; }
.g0b1-header-btns { display: flex; gap: 0.6rem; align-items: center; }
.g0b1-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.4rem; border-radius: 6px; font-size: 1.3rem;
  font-weight: 600; cursor: pointer; border: none; transition: all 0.2s;
  min-height: 36px; text-decoration: none;
}
.g0b1-btn-register {
  background: linear-gradient(135deg, var(--g0b1-accent), var(--g0b1-light));
  color: #fff;
}
.g0b1-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 8px rgba(255,105,180,0.4); }
.g0b1-btn-login {
  background: transparent; border: 1.5px solid var(--g0b1-accent);
  color: var(--g0b1-accent);
}
.g0b1-btn-login:hover { background: rgba(255,105,180,0.1); }

/* Menu Toggle */
.g0b1-menu-toggle {
  background: none; border: none; color: var(--g0b1-text);
  font-size: 2rem; cursor: pointer; padding: 4px; line-height: 1;
}
.g0b1-header-actions { display: flex; align-items: center; gap: 0.6rem; }

/* Mobile Menu */
.g0b1-mobile-menu {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  background: var(--g0b1-bg-dark); border-top: 1px solid var(--g0b1-border);
}
.g0b1-mobile-menu ul { list-style: none; padding: 0.8rem 0; }
.g0b1-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.g0b1-mobile-menu a {
  display: block; padding: 1rem 1.6rem; color: var(--g0b1-text);
  font-size: 1.4rem; transition: all 0.2s;
}
.g0b1-mobile-menu a:hover { background: rgba(0,105,92,0.2); color: var(--g0b1-accent); padding-left: 2rem; }

/* Main Content */
.g0b1-main { padding-top: 56px; }
@media (max-width: 768px) {
  .g0b1-main { padding-bottom: 80px; }
}

/* Carousel */
.g0b1-carousel { position: relative; overflow: hidden; width: 100%; }
.g0b1-slide {
  display: none; width: 100%; cursor: pointer;
  border-radius: 0; overflow: hidden;
}
.g0b1-slide img { width: 100%; height: auto; min-height: 160px; object-fit: cover; }
.g0b1-slide-active { display: block; }

/* Section Headings */
.g0b1-section { padding: 2rem 1.2rem; }
.g0b1-section-title {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 1.2rem;
  color: var(--g0b1-accent); border-left: 3px solid var(--g0b1-primary);
  padding-left: 1rem; line-height: 1.3;
}
.g0b1-section-title span { color: var(--g0b1-light); }

/* Game Grid */
.g0b1-game-section { padding: 1.5rem 1.2rem; }
.g0b1-game-section h2 {
  font-size: 1.6rem; font-weight: 700; color: var(--g0b1-light);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
}
.g0b1-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.g0b1-game-item {
  text-align: center; cursor: pointer; transition: transform 0.2s;
  border-radius: 8px; overflow: hidden;
}
.g0b1-game-item:hover { transform: scale(1.05); }
.g0b1-game-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; border: 1.5px solid var(--g0b1-border);
}
.g0b1-game-item span {
  display: block; font-size: 1.1rem; color: var(--g0b1-text-muted);
  margin-top: 0.4rem; line-height: 1.2; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}

/* Cards */
.g0b1-card {
  background: var(--g0b1-card-bg); border-radius: 10px;
  padding: 1.6rem; margin-bottom: 1.2rem;
  border: 1px solid var(--g0b1-border);
}
.g0b1-card h3 {
  font-size: 1.5rem; color: var(--g0b1-light); margin-bottom: 0.8rem;
}
.g0b1-card p { font-size: 1.3rem; line-height: 1.6; color: var(--g0b1-text-muted); }

/* Promo Banner */
.g0b1-promo-banner {
  background: linear-gradient(135deg, var(--g0b1-primary), var(--g0b1-secondary));
  border-radius: 10px; padding: 1.6rem; text-align: center;
  margin: 1.2rem; cursor: pointer; transition: transform 0.2s;
}
.g0b1-promo-banner:hover { transform: scale(1.02); }
.g0b1-promo-banner h3 { font-size: 1.6rem; color: #fff; margin-bottom: 0.6rem; }
.g0b1-promo-banner p { font-size: 1.3rem; color: rgba(255,255,255,0.85); }
.g0b1-promo-btn {
  display: inline-block; margin-top: 1rem;
  background: var(--g0b1-accent); color: #fff;
  padding: 0.8rem 2rem; border-radius: 25px; font-weight: 700;
  font-size: 1.4rem; transition: all 0.2s;
}
.g0b1-promo-btn:hover { background: var(--g0b1-light); transform: scale(1.05); }

/* Footer */
.g0b1-footer {
  background: var(--g0b1-bg-dark); padding: 2.5rem 1.2rem 1.5rem;
  border-top: 2px solid var(--g0b1-primary);
}
.g0b1-footer-desc { font-size: 1.2rem; color: var(--g0b1-text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.g0b1-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.g0b1-footer-link {
  display: inline-block; padding: 0.5rem 1rem;
  background: var(--g0b1-card-bg); border-radius: 6px;
  font-size: 1.1rem; color: var(--g0b1-light); transition: all 0.2s;
  border: 1px solid var(--g0b1-border);
}
.g0b1-footer-link:hover { background: var(--g0b1-primary); color: #fff; }
.g0b1-footer-copy { font-size: 1.1rem; color: var(--g0b1-text-muted); text-align: center; padding-top: 1rem; border-top: 1px solid var(--g0b1-border); }

/* Bottom Navigation */
.g0b1-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, var(--g0b1-bg-dark), #0d1520);
  border-top: 2px solid var(--g0b1-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; max-width: 430px; margin: 0 auto;
}
.g0b1-bottom-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px; background: none; border: none;
  color: var(--g0b1-text-muted); cursor: pointer; transition: all 0.2s;
  padding: 0.3rem;
}
.g0b1-bottom-btn:hover, .g0b1-bottom-btn:focus { color: var(--g0b1-accent); transform: scale(1.1); }
.g0b1-bottom-btn .g0b1-nav-icon { font-size: 22px; margin-bottom: 2px; }
.g0b1-bottom-btn .g0b1-nav-label { font-size: 1rem; line-height: 1.1; }
.g0b1-bottom-btn-active { color: var(--g0b1-accent); }
@media (min-width: 769px) { .g0b1-bottom-nav { display: none; } }

/* Content Typography */
.g0b1-content { padding: 1.5rem 1.2rem; }
.g0b1-content h1 { font-size: 2rem; color: var(--g0b1-accent); margin-bottom: 1rem; line-height: 1.3; }
.g0b1-content h2 { font-size: 1.7rem; color: var(--g0b1-light); margin: 1.5rem 0 0.8rem; }
.g0b1-content h3 { font-size: 1.4rem; color: var(--g0b1-light); margin: 1.2rem 0 0.6rem; }
.g0b1-content p { font-size: 1.3rem; line-height: 1.6; color: var(--g0b1-text-muted); margin-bottom: 1rem; }
.g0b1-content ul { padding-left: 2rem; margin-bottom: 1rem; }
.g0b1-content li { font-size: 1.3rem; line-height: 1.6; color: var(--g0b1-text-muted); margin-bottom: 0.4rem; }

/* Text link styles for internal links */
.g0b1-text-link { color: var(--g0b1-light); text-decoration: underline; transition: color 0.2s; }
.g0b1-text-link:hover { color: var(--g0b1-accent); }

/* Testimonials */
.g0b1-testimonial {
  background: var(--g0b1-card-bg); border-radius: 10px;
  padding: 1.2rem; margin-bottom: 1rem;
  border-left: 3px solid var(--g0b1-primary);
}
.g0b1-testimonial-name { font-weight: 700; color: var(--g0b1-accent); font-size: 1.3rem; }
.g0b1-testimonial-text { font-size: 1.2rem; color: var(--g0b1-text-muted); margin-top: 0.4rem; line-height: 1.5; }

/* Winner badge */
.g0b1-winner {
  display: flex; align-items: center; gap: 1rem;
  background: var(--g0b1-card-bg); border-radius: 10px;
  padding: 1rem 1.2rem; margin-bottom: 0.8rem;
}
.g0b1-winner-amount { font-size: 1.4rem; font-weight: 700; color: var(--g0b1-accent); }
.g0b1-winner-name { font-size: 1.2rem; color: var(--g0b1-text-muted); }

/* RTP Stats */
.g0b1-rtp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
}
.g0b1-rtp-item {
  background: var(--g0b1-card-bg); border-radius: 8px; padding: 1rem; text-align: center;
}
.g0b1-rtp-value { font-size: 2rem; font-weight: 700; color: var(--g0b1-accent); }
.g0b1-rtp-label { font-size: 1.1rem; color: var(--g0b1-text-muted); margin-top: 0.3rem; }

/* Payment methods */
.g0b1-payment-row {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.g0b1-payment-item {
  background: var(--g0b1-card-bg); border-radius: 8px; padding: 0.8rem 1.2rem;
  font-size: 1.2rem; color: var(--g0b1-text-muted); border: 1px solid var(--g0b1-border);
}

/* Desktop adjustments */
@media (min-width: 769px) {
  body { max-width: 430px; }
  .g0b1-header { max-width: 430px; }
  .g0b1-bottom-nav { display: none; }
}
