/* design-4844.css - bet100app core styles */
/* All classes use g441- prefix, all variables use --g441- */

:root {
  --g441-primary: #CD853F;
  --g441-primary-light: #E0A86E;
  --g441-primary-dark: #A66B2E;
  --g441-bg: #2C2C2C;
  --g441-bg-dark: #1A1A1A;
  --g441-bg-card: #3A3A3A;
  --g441-bg-light: #444444;
  --g441-text: #F5F5F5;
  --g441-text-muted: #BBBBBB;
  --g441-text-accent: #FFD700;
  --g441-border: #555555;
  --g441-success: #4CAF50;
  --g441-danger: #E74C3C;
  --g441-radius: 8px;
  --g441-radius-lg: 12px;
  --g441-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --g441-shadow-lg: 0 4px 16px rgba(0,0,0,0.4);
}

*, *::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(--g441-bg);
  color: var(--g441-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.g441-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 56px;
  background: var(--g441-bg-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 1000;
  border-bottom: 2px solid var(--g441-primary);
}

.g441-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.g441-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.g441-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g441-primary);
  letter-spacing: 0.5px;
}

.g441-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.g441-btn-register,
.g441-btn-login {
  padding: 6px 14px;
  border: none;
  border-radius: var(--g441-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.g441-btn-register {
  background: var(--g441-primary);
  color: var(--g441-bg-dark);
}

.g441-btn-register:hover {
  background: var(--g441-primary-light);
  transform: scale(1.05);
}

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

.g441-btn-login:hover {
  background: var(--g441-primary);
  color: var(--g441-bg-dark);
}

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

/* ===== MOBILE MENU ===== */
.g441-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

.g441-overlay-active {
  display: block;
}

.g441-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--g441-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 20px 16px;
  overflow-y: auto;
}

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

.g441-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--g441-border);
}

.g441-menu-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g441-primary);
}

.g441-menu-close {
  background: none;
  border: none;
  color: var(--g441-text);
  font-size: 2.4rem;
  cursor: pointer;
}

.g441-menu-nav {
  list-style: none;
}

.g441-menu-nav li {
  border-bottom: 1px solid var(--g441-border);
}

.g441-menu-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  color: var(--g441-text);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.2s;
}

.g441-menu-nav a:hover {
  color: var(--g441-primary);
}

.g441-menu-nav a span.material-symbols-outlined,
.g441-menu-nav a span.material-icons-outlined {
  font-size: 20px;
  color: var(--g441-primary);
}

/* ===== MAIN CONTENT ===== */
.g441-main {
  padding-top: 56px;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .g441-main {
    padding-bottom: 80px;
  }
}

/* ===== CAROUSEL ===== */
.g441-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--g441-radius) var(--g441-radius);
}

.g441-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
}

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

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

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

.g441-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.g441-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.g441-dot-active {
  background: var(--g441-primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== SECTIONS ===== */
.g441-section {
  padding: 20px 14px;
}

.g441-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g441-primary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--g441-primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.g441-section-title .material-symbols-outlined {
  font-size: 22px;
}

/* ===== GAME GRID ===== */
.g441-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.g441-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.g441-game-item:hover {
  transform: scale(1.05);
}

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

.g441-game-item span {
  display: block;
  font-size: 1.1rem;
  color: var(--g441-text-muted);
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== CONTENT CARDS ===== */
.g441-card {
  background: var(--g441-bg-card);
  border-radius: var(--g441-radius-lg);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--g441-border);
}

.g441-card h2,
.g441-card h3 {
  color: var(--g441-primary);
  margin-bottom: 10px;
}

.g441-card h2 { font-size: 1.7rem; }
.g441-card h3 { font-size: 1.5rem; }

.g441-card p {
  color: var(--g441-text-muted);
  line-height: 1.7;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.g441-card ul {
  padding-left: 20px;
  color: var(--g441-text-muted);
  font-size: 1.3rem;
  line-height: 1.7;
}

.g441-card ul li {
  margin-bottom: 6px;
}

/* ===== PROMO BUTTONS ===== */
.g441-promo-btn {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--g441-primary), var(--g441-primary-dark));
  color: var(--g441-bg-dark);
  font-weight: 700;
  font-size: 1.4rem;
  border: none;
  border-radius: var(--g441-radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.g441-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(205,133,63,0.5);
}

.g441-promo-text {
  color: var(--g441-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

.g441-promo-text:hover {
  color: var(--g441-primary-light);
}

/* ===== FOOTER ===== */
.g441-footer {
  background: var(--g441-bg-dark);
  padding: 24px 14px;
  border-top: 2px solid var(--g441-primary-dark);
}

.g441-footer-brand {
  color: var(--g441-text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.g441-footer-brand strong {
  color: var(--g441-primary);
}

.g441-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.g441-footer-promo .g441-promo-btn {
  font-size: 1.2rem;
  padding: 8px 16px;
}

.g441-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 16px;
}

.g441-footer-links a {
  color: var(--g441-text-muted);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s;
}

.g441-footer-links a:hover {
  color: var(--g441-primary);
}

.g441-footer-copy {
  text-align: center;
  color: var(--g441-border);
  font-size: 1.1rem;
  padding-top: 12px;
  border-top: 1px solid var(--g441-border);
}

/* ===== BOTTOM NAV ===== */
.g441-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  background: var(--g441-bg-dark);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 2px solid var(--g441-primary);
  padding: 0 4px;
}

.g441-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--g441-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  gap: 2px;
  position: relative;
}

.g441-bottom-nav-btn:hover,
.g441-bottom-nav-btn:active {
  color: var(--g441-primary);
  transform: scale(1.1);
}

.g441-bottom-nav-btn .g441-nav-icon {
  font-size: 22px;
  line-height: 1;
}

.g441-bottom-nav-btn .g441-nav-label {
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.g441-nav-active {
  color: var(--g441-primary) !important;
}

.g441-nav-active .g441-nav-icon {
  text-shadow: 0 0 8px rgba(205,133,63,0.6);
}

@media (min-width: 769px) {
  .g441-bottom-nav { display: none; }
}

/* ===== HELPERS ===== */
.g441-text-primary { color: var(--g441-primary); }
.g441-text-gold { color: var(--g441-text-accent); }
.g441-text-center { text-align: center; }
.g441-mt-10 { margin-top: 10px; }
.g441-mb-10 { margin-bottom: 10px; }
.g441-mb-16 { margin-bottom: 16px; }
.g441-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.g441-gap-8 { gap: 8px; }

.g441-divider {
  height: 1px;
  background: var(--g441-border);
  margin: 16px 0;
}

/* ===== FAQ ACCORDION ===== */
.g441-faq-item {
  border: 1px solid var(--g441-border);
  border-radius: var(--g441-radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.g441-faq-q {
  padding: 12px;
  font-weight: 600;
  color: var(--g441-primary);
  background: var(--g441-bg-light);
  font-size: 1.3rem;
}

.g441-faq-a {
  padding: 12px;
  color: var(--g441-text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ===== WINNER SHOWCASE ===== */
.g441-winner-list {
  list-style: none;
}

.g441-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--g441-border);
  font-size: 1.2rem;
}

.g441-winner-name {
  color: var(--g441-primary);
  font-weight: 600;
}

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

/* ===== STATS BAR ===== */
.g441-stats-bar {
  display: flex;
  justify-content: space-around;
  padding: 12px;
  background: var(--g441-bg-card);
  border-radius: var(--g441-radius);
  margin-bottom: 16px;
}

.g441-stat-item {
  text-align: center;
}

.g441-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--g441-primary);
}

.g441-stat-label {
  font-size: 1rem;
  color: var(--g441-text-muted);
}

/* ===== PAYMENT METHODS ===== */
.g441-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.g441-payment-item {
  background: var(--g441-bg-light);
  padding: 8px 14px;
  border-radius: var(--g441-radius);
  font-size: 1.2rem;
  color: var(--g441-text-muted);
  border: 1px solid var(--g441-border);
}

/* ===== TESTIMONIALS ===== */
.g441-testimonial {
  background: var(--g441-bg-light);
  border-radius: var(--g441-radius);
  padding: 14px;
  margin-bottom: 10px;
  border-left: 3px solid var(--g441-primary);
}

.g441-testimonial-text {
  font-size: 1.2rem;
  color: var(--g441-text-muted);
  font-style: italic;
  margin-bottom: 6px;
}

.g441-testimonial-author {
  font-size: 1.1rem;
  color: var(--g441-primary);
  font-weight: 600;
}

/* ===== INTERNAL LINK STYLE ===== */
a.g441-internal-link {
  color: var(--g441-primary);
  text-decoration: underline;
  transition: color 0.2s;
}

a.g441-internal-link:hover {
  color: var(--g441-primary-light);
}
