/**
 * laro789.sbs - Main Stylesheet
 * Class prefix: g200-
 * Colors: #273746 (bg), #FFB74D (accent)
 * Mobile-first design, max-width 430px
 */

/* CSS Variables */
:root {
  --g200-primary: #FFB74D;
  --g200-bg: #273746;
  --g200-bg-dark: #1c2a35;
  --g200-bg-light: #2f4455;
  --g200-text: #f0f0f0;
  --g200-text-muted: #b0bec5;
  --g200-accent: #FFB74D;
  --g200-accent-hover: #ffa726;
  --g200-border: #3a5568;
  --g200-radius: 8px;
  --g200-radius-lg: 12px;
  --g200-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --g200-transition: all 0.3s ease;
}

/* Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--g200-bg);
  color: var(--g200-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(--g200-accent);
  text-decoration: none;
  transition: var(--g200-transition);
}

a:hover {
  color: var(--g200-accent-hover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Header */
.g200-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 5.6rem;
  background: var(--g200-bg-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1000;
  border-bottom: 1px solid var(--g200-border);
}

.g200-header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.g200-header-logo img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.4rem;
}

.g200-header-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--g200-accent);
  letter-spacing: 0.5px;
}

.g200-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.g200-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: var(--g200-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--g200-transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 3.6rem;
}

.g200-btn-register {
  background: var(--g200-accent);
  color: var(--g200-bg-dark);
}

.g200-btn-register:hover {
  background: var(--g200-accent-hover);
  transform: scale(1.03);
  text-decoration: none;
}

.g200-btn-login {
  background: transparent;
  color: var(--g200-accent);
  border: 1.5px solid var(--g200-accent);
}

.g200-btn-login:hover {
  background: rgba(255, 183, 77, 0.1);
  text-decoration: none;
}

.g200-menu-toggle {
  background: none;
  border: none;
  color: var(--g200-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.g200-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--g200-bg-dark);
  z-index: 9999;
  transition: right 0.35s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.g200-menu-active {
  right: 0;
}

.g200-mobile-menu .g200-menu-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--g200-text);
  font-size: 2.4rem;
  cursor: pointer;
}

.g200-mobile-menu h3 {
  color: var(--g200-accent);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--g200-border);
}

.g200-mobile-menu a {
  display: block;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  color: var(--g200-text);
  border-bottom: 1px solid rgba(58, 85, 104, 0.4);
}

.g200-mobile-menu a:hover {
  color: var(--g200-accent);
}

.g200-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--g200-transition);
}

.g200-overlay-active {
  opacity: 1;
  visibility: visible;
}

/* Main content area */
.g200-main {
  padding-top: 5.6rem;
}

/* Carousel */
.g200-carousel {
  position: relative;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  border-radius: 0 0 var(--g200-radius-lg) var(--g200-radius-lg);
}

.g200-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.g200-slide-active {
  opacity: 1;
}

.g200-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g200-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.g200-carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: var(--g200-transition);
}

.g200-dot-active {
  background: var(--g200-accent);
  transform: scale(1.2);
}

/* Section Title */
.g200-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g200-accent);
  margin: 2rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--g200-accent);
  line-height: 2rem;
}

/* Game Grid */
.g200-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.g200-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--g200-transition);
  border-radius: var(--g200-radius);
  padding: 0.5rem;
}

.g200-game-item:hover {
  background: var(--g200-bg-light);
  transform: translateY(-2px);
}

.g200-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--g200-radius);
  object-fit: cover;
}

.g200-game-item span {
  font-size: 1.1rem;
  color: var(--g200-text-muted);
  text-align: center;
  margin-top: 0.3rem;
  line-height: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card / Module */
.g200-card {
  background: var(--g200-bg-light);
  border-radius: var(--g200-radius-lg);
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid var(--g200-border);
}

.g200-card h2 {
  font-size: 1.6rem;
  color: var(--g200-accent);
  margin-bottom: 1rem;
}

.g200-card h3 {
  font-size: 1.4rem;
  color: var(--g200-accent);
  margin: 1rem 0 0.5rem;
}

.g200-card p {
  font-size: 1.3rem;
  color: var(--g200-text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.g200-card ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.g200-card li {
  font-size: 1.3rem;
  color: var(--g200-text-muted);
  line-height: 1.8;
}

/* Promo link inside cards */
.g200-promo-link {
  display: inline-block;
  color: var(--g200-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1.4rem;
  margin: 0.3rem 0;
}

.g200-promo-link:hover {
  color: var(--g200-accent-hover);
}

/* CTA Button (large) */
.g200-cta {
  display: block;
  width: 100%;
  padding: 1.4rem;
  background: linear-gradient(135deg, var(--g200-accent), #ff9800);
  color: var(--g200-bg-dark);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: var(--g200-radius-lg);
  cursor: pointer;
  transition: var(--g200-transition);
  margin: 1.5rem 0;
  text-decoration: none;
}

.g200-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(255, 183, 77, 0.4);
  text-decoration: none;
}

/* Testimonials */
.g200-testimonial {
  background: var(--g200-bg-dark);
  border-radius: var(--g200-radius);
  padding: 1.2rem;
  margin: 0.8rem 0;
  border-left: 3px solid var(--g200-accent);
}

.g200-testimonial p {
  font-size: 1.3rem;
  color: var(--g200-text-muted);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.g200-testimonial strong {
  color: var(--g200-accent);
  font-size: 1.2rem;
}

/* Stats bar */
.g200-stats {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  margin: 1rem 0;
  border-top: 1px solid var(--g200-border);
  border-bottom: 1px solid var(--g200-border);
}

.g200-stats-item {
  text-align: center;
}

.g200-stats-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--g200-accent);
}

.g200-stats-label {
  font-size: 1.1rem;
  color: var(--g200-text-muted);
}

/* Winner list */
.g200-winner-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.g200-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  background: var(--g200-bg-dark);
  border-radius: var(--g200-radius);
  font-size: 1.2rem;
}

.g200-winner-name {
  color: var(--g200-text);
  font-weight: 600;
}

.g200-winner-game {
  color: var(--g200-text-muted);
}

.g200-winner-amount {
  color: var(--g200-accent);
  font-weight: 700;
}

/* Payment icons row */
.g200-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}

.g200-payment-item {
  background: var(--g200-bg-dark);
  padding: 0.6rem 1rem;
  border-radius: var(--g200-radius);
  font-size: 1.2rem;
  color: var(--g200-text-muted);
  border: 1px solid var(--g200-border);
}

/* Footer */
.g200-footer {
  background: var(--g200-bg-dark);
  padding: 2rem 1.2rem 8rem;
  margin-top: 2rem;
  border-top: 1px solid var(--g200-border);
}

.g200-footer-brand {
  font-size: 1.3rem;
  color: var(--g200-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.g200-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.g200-footer-promos .g200-btn {
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  min-height: 3rem;
}

.g200-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0;
}

.g200-footer-links a {
  font-size: 1.2rem;
  color: var(--g200-text-muted);
}

.g200-footer-links a:hover {
  color: var(--g200-accent);
}

.g200-footer-copy {
  font-size: 1.1rem;
  color: rgba(176, 190, 197, 0.5);
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--g200-border);
}

/* Bottom Navigation */
.g200-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 6rem;
  background: var(--g200-bg-dark);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid var(--g200-border);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.g200-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  min-height: 5.2rem;
  background: none;
  border: none;
  color: var(--g200-text-muted);
  cursor: pointer;
  transition: var(--g200-transition);
  padding: 0.3rem;
  border-radius: var(--g200-radius);
}

.g200-bottom-nav-btn:hover,
.g200-bottom-nav-btn:focus {
  color: var(--g200-accent);
  background: rgba(255, 183, 77, 0.08);
}

.g200-bottom-nav-btn:active {
  transform: scale(0.92);
}

.g200-bottom-nav-btn .g200-nav-icon {
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
}

.g200-bottom-nav-btn .g200-nav-label {
  font-size: 1rem;
  color: inherit;
}

.g200-bottom-nav-btn.g200-active {
  color: var(--g200-accent);
}

.g200-bottom-nav-btn.g200-active .g200-nav-label {
  font-weight: 600;
}

/* Responsive: hide bottom nav on desktop */
@media (min-width: 769px) {
  .g200-bottom-nav {
    display: none;
  }
}

/* Mobile bottom padding for fixed nav */
@media (max-width: 768px) {
  .g200-main {
    padding-bottom: 7rem;
  }
  .g200-footer {
    padding-bottom: 8rem;
  }
}

/* Desktop hidden class */
.g200-mobile-only {
  display: block;
}

@media (min-width: 769px) {
  .g200-mobile-only {
    display: none;
  }
}

/* Page content helpers */
.g200-page-content {
  padding: 1rem 1.2rem 2rem;
}

.g200-page-content h1 {
  font-size: 2rem;
  color: var(--g200-accent);
  margin-bottom: 1rem;
  line-height: 2.4rem;
}

.g200-page-content h2 {
  font-size: 1.6rem;
  color: var(--g200-accent);
  margin: 1.5rem 0 0.8rem;
}

.g200-page-content p {
  font-size: 1.3rem;
  color: var(--g200-text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* FAQ accordion */
.g200-faq-item {
  margin: 0.8rem 0;
  border: 1px solid var(--g200-border);
  border-radius: var(--g200-radius);
  overflow: hidden;
}

.g200-faq-q {
  padding: 1rem;
  background: var(--g200-bg-dark);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--g200-text);
  cursor: pointer;
}

.g200-faq-a {
  padding: 0.8rem 1rem;
  font-size: 1.2rem;
  color: var(--g200-text-muted);
  line-height: 1.6;
  background: var(--g200-bg-light);
}

/* Badge */
.g200-badge {
  display: inline-block;
  background: var(--g200-accent);
  color: var(--g200-bg-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-left: 0.4rem;
}

/* Utility */
.g200-text-center {
  text-align: center;
}

.g200-mt-1 {
  margin-top: 1rem;
}

.g200-mb-1 {
  margin-bottom: 1rem;
}

.g200-hidden {
  display: none !important;
}
