/**
 * 700 bet - Theme Stylesheet
 * Class prefix: v944-
 * Colors: #FFD700 (Gold) | #FF7F50 (Coral) | #9400D3 (Purple) | #0E1621 (Dark BG)
 */

:root {
  --v944-primary: #FFD700;
  --v944-secondary: #FF7F50;
  --v944-accent: #9400D3;
  --v944-bg: #0E1621;
  --v944-bg-light: #151e2d;
  --v944-bg-card: #1a2538;
  --v944-text: #ffffff;
  --v944-text-muted: #a0aec0;
  --v944-border: #2d3a4a;
  --v944-success: #48bb78;
  --v944-gradient: linear-gradient(135deg, #FFD700 0%, #FF7F50 100%);
  --v944-gradient-accent: linear-gradient(135deg, #9400D3 0%, #FF7F50 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--v944-bg);
  color: var(--v944-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--v944-primary); text-decoration: none; }

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

.v944-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.v944-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.v944-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v944-primary);
}

.v944-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v944-btn-register, .v944-btn-login {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  min-height: 32px;
}

.v944-btn-register {
  background: var(--v944-gradient);
  color: #0E1621;
}

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

.v944-menu-toggle {
  background: none;
  border: none;
  color: var(--v944-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* ========== MOBILE MENU ========== */
.v944-mobile-menu {
  display: none;
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--v944-bg-light);
  z-index: 9999;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  padding: 1rem 0;
}

.v944-mobile-menu.v944-menu-active { display: block; }

.v944-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  color: var(--v944-text);
  font-size: 1.3rem;
  border-bottom: 1px solid var(--v944-border);
  transition: background 0.2s;
}

.v944-mobile-menu a:last-child { border-bottom: none; }
.v944-mobile-menu a:hover { background: rgba(255,215,0,0.1); }
.v944-mobile-menu a i { width: 20px; text-align: center; color: var(--v944-primary); }

/* ========== MAIN CONTENT ========== */
.v944-main {
  padding-top: 56px;
  padding-bottom: 2rem;
}

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

/* ========== CAROUSEL ========== */
.v944-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.v944-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.v944-slide:first-child { display: block; }

.v944-slide img {
  width: 100%;
  height: auto;
  border-radius: 0 0 12px 12px;
}

/* ========== SECTIONS ========== */
.v944-section {
  padding: 1.6rem 1rem;
}

.v944-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v944-primary);
  margin-bottom: 1.2rem;
  padding-left: 0.4rem;
  border-left: 4px solid var(--v944-secondary);
}

.v944-section-title i {
  margin-right: 0.5rem;
}

.v944-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v944-secondary);
  margin: 1rem 0 0.6rem;
}

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

.v944-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 8px;
  transition: transform 0.2s, background 0.2s;
}

.v944-game-item:hover {
  transform: scale(1.05);
  background: rgba(255,215,0,0.08);
}

.v944-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  margin-bottom: 0.3rem;
  border: 2px solid var(--v944-border);
}

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

/* ========== CARDS ========== */
.v944-card {
  background: var(--v944-bg-card);
  border-radius: 12px;
  padding: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid var(--v944-border);
}

.v944-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--v944-primary);
  margin-bottom: 0.8rem;
}

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

/* ========== PROMO BUTTONS ========== */
.v944-promo-btn {
  display: inline-block;
  background: var(--v944-gradient);
  color: #0E1621;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.v944-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
}

.v944-promo-link {
  color: var(--v944-secondary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

/* ========== FOOTER ========== */
.v944-footer {
  background: var(--v944-bg-light);
  padding: 2rem 1rem 1rem;
  border-top: 1px solid var(--v944-border);
  text-align: center;
}

.v944-footer-desc {
  color: var(--v944-text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.v944-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.v944-footer-links a {
  background: var(--v944-bg-card);
  color: var(--v944-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 1.1rem;
  border: 1px solid var(--v944-border);
}

.v944-footer-links a:hover { background: rgba(255,215,0,0.15); }

.v944-site-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.v944-site-links a {
  color: var(--v944-text-muted);
  font-size: 1.1rem;
}

.v944-site-links a:hover { color: var(--v944-primary); }

.v944-copyright {
  color: var(--v944-text-muted);
  font-size: 1.1rem;
  border-top: 1px solid var(--v944-border);
  padding-top: 1rem;
}

/* ========== BOTTOM NAV ========== */
.v944-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: var(--v944-bg-light);
  border-top: 1px solid var(--v944-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 0.3rem;
}

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

.v944-bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--v944-text-muted);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  padding: 0.3rem;
}

.v944-bnav-btn:hover,
.v944-bnav-btn.v944-bnav-active {
  color: var(--v944-primary);
  transform: scale(1.08);
}

.v944-bnav-btn i,
.v944-bnav-btn span.material-symbols-outlined {
  font-size: 22px;
  margin-bottom: 2px;
}

.v944-bnav-btn span.v944-bnav-label {
  font-size: 1rem;
  line-height: 1.2;
}

/* ========== UTILITY ========== */
.v944-text-gold { color: var(--v944-primary); }
.v944-text-coral { color: var(--v944-secondary); }
.v944-text-purple { color: var(--v944-accent); }
.v944-text-center { text-align: center; }
.v944-mb-1 { margin-bottom: 0.8rem; }
.v944-mb-2 { margin-bottom: 1.6rem; }
.v944-mt-1 { margin-top: 0.8rem; }
.v944-fw-bold { font-weight: 700; }

.v944-list { list-style: none; padding: 0; }
.v944-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--v944-border);
  font-size: 1.3rem;
  color: var(--v944-text-muted);
}
.v944-list li:last-child { border-bottom: none; }

/* ========== FAQ ========== */
.v944-faq-item {
  background: var(--v944-bg-card);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--v944-border);
}

.v944-faq-q {
  font-weight: 700;
  color: var(--v944-primary);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.v944-faq-a {
  color: var(--v944-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
}

/* ========== PAYMENT GRID ========== */
.v944-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.v944-payment-item {
  background: var(--v944-bg-card);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--v944-border);
  font-size: 1.2rem;
  color: var(--v944-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========== WINNER LIST ========== */
.v944-winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--v944-border);
}

.v944-winner-name {
  font-size: 1.2rem;
  color: var(--v944-primary);
  font-weight: 600;
}

.v944-winner-amount {
  font-size: 1.3rem;
  color: var(--v944-success);
  font-weight: 700;
}

/* ========== RTP BAR ========== */
.v944-rtp-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.v944-rtp-label {
  font-size: 1.2rem;
  color: var(--v944-text-muted);
  min-width: 100px;
}

.v944-rtp-track {
  flex: 1;
  height: 8px;
  background: var(--v944-bg);
  border-radius: 4px;
  overflow: hidden;
}

.v944-rtp-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--v944-gradient);
}

.v944-rtp-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--v944-primary);
  min-width: 40px;
  text-align: right;
}

/* ========== TESTIMONIALS ========== */
.v944-testimonial {
  background: var(--v944-bg-card);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--v944-secondary);
}

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

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

/* ========== APP DOWNLOAD ========== */
.v944-app-cta {
  background: var(--v944-gradient-accent);
  border-radius: 12px;
  padding: 1.4rem;
  text-align: center;
}

.v944-app-cta h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.v944-app-cta p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

/* ========== CATEGORY HIGHLIGHT ========== */
.v944-cat-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--v944-bg-card);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--v944-border);
}

.v944-cat-highlight i {
  font-size: 2.4rem;
  color: var(--v944-primary);
}

.v944-cat-highlight h4 {
  font-size: 1.3rem;
  color: var(--v944-secondary);
  margin-bottom: 0.2rem;
}

.v944-cat-highlight p {
  font-size: 1.1rem;
  color: var(--v944-text-muted);
}

/* ========== INTERNAL LINKS ========== */
.v944-internal-link {
  color: var(--v944-secondary);
  text-decoration: underline;
  cursor: pointer;
}

.v944-internal-link:hover {
  color: var(--v944-primary);
}
