/**
 * Tamabet Theme Stylesheet
 * Website: tamabet.sbs
 * CSS Prefix: v935-
 * Colors: #1A1A2E | #FFE135 | #F5F5F5 | #5D5D5D | #FFEBCD | #E9ECEF
 */

:root {
  --v935-primary: #1A1A2E;
  --v935-accent: #FFE135;
  --v935-light: #F5F5F5;
  --v935-muted: #5D5D5D;
  --v935-warm: #FFEBCD;
  --v935-border: #E9ECEF;
  --v935-dark: #12121f;
  --v935-gold: #FFD700;
  --v935-card-bg: #222240;
  --v935-text-light: #f0f0f0;
  --v935-text-dark: #1A1A2E;
  --v935-radius: 8px;
  --v935-radius-lg: 16px;
  --v935-shadow: 0 2px 12px rgba(0,0,0,0.3);
  --v935-transition: all 0.3s ease;
}

/* Reset & 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;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: var(--v935-text-light);
  background: var(--v935-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Header */
.v935-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--v935-dark);
  border-bottom: 1px solid rgba(255,225,53,0.15);
  height: 56px;
}
.v935-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  height: 56px;
}
.v935-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.v935-logo-area img { width: 28px; height: 28px; border-radius: 4px; }
.v935-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v935-accent);
  letter-spacing: 0.5px;
}
.v935-header-actions { display: flex; align-items: center; gap: 8px; }
.v935-btn-register {
  background: var(--v935-accent);
  color: var(--v935-text-dark);
  border: none;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--v935-transition);
  min-height: 36px;
}
.v935-btn-register:hover { background: #e6cc2e; transform: scale(1.03); }
.v935-btn-login {
  background: transparent;
  color: var(--v935-accent);
  border: 1.5px solid var(--v935-accent);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v935-transition);
  min-height: 36px;
}
.v935-btn-login:hover { background: rgba(255,225,53,0.1); }
.v935-menu-toggle {
  background: none;
  border: none;
  color: var(--v935-accent);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.v935-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--v935-transition);
}
.v935-overlay-active { opacity: 1; visibility: visible; }
.v935-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100%;
  background: var(--v935-dark);
  z-index: 9999;
  transition: right 0.35s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.v935-menu-active { right: 0; }
.v935-menu-close {
  background: none;
  border: none;
  color: var(--v935-accent);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}
.v935-menu-links { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.v935-menu-link {
  color: var(--v935-text-light);
  text-decoration: none;
  font-size: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--v935-transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.v935-menu-link:hover { color: var(--v935-accent); padding-left: 8px; }

/* Main Content */
.v935-main {
  padding-top: 56px;
  padding-bottom: 2rem;
  min-height: 100vh;
}

/* Carousel */
.v935-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--v935-radius);
  margin: 1rem 0;
}
.v935-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.v935-slide-active { display: block; }
.v935-carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--v935-radius);
}
.v935-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
}
.v935-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v935-muted);
  cursor: pointer;
  transition: var(--v935-transition);
  border: none;
}
.v935-dot-active { background: var(--v935-accent); transform: scale(1.3); }

/* Section Titles */
.v935-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--v935-accent);
  margin: 2rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--v935-accent);
  display: inline-block;
}
.v935-section-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--v935-warm);
  margin: 1.5rem 0 0.8rem;
}

/* Game Grid */
.v935-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0.8rem 0;
}
.v935-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--v935-transition);
  background: var(--v935-card-bg);
  border-radius: var(--v935-radius);
  padding: 6px;
  overflow: hidden;
}
.v935-game-card:hover { transform: translateY(-2px); box-shadow: var(--v935-shadow); }
.v935-game-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}
.v935-game-card span {
  font-size: 1.1rem;
  color: var(--v935-text-light);
  text-align: center;
  margin-top: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Content Blocks */
.v935-content-block {
  background: var(--v935-card-bg);
  border-radius: var(--v935-radius-lg);
  padding: 1.5rem;
  margin: 1.2rem 0;
  border-left: 3px solid var(--v935-accent);
}
.v935-content-block h2 { color: var(--v935-accent); font-size: 1.7rem; margin-bottom: 0.8rem; }
.v935-content-block h3 { color: var(--v935-warm); font-size: 1.5rem; margin: 1rem 0 0.5rem; }
.v935-content-block p {
  color: var(--v935-text-light);
  line-height: 2.3rem;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

/* Buttons */
.v935-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--v935-radius);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--v935-transition);
  border: none;
  min-height: 44px;
}
.v935-btn-primary {
  background: var(--v935-accent);
  color: var(--v935-text-dark);
}
.v935-btn-primary:hover { background: #e6cc2e; transform: scale(1.03); }
.v935-btn-outline {
  background: transparent;
  color: var(--v935-accent);
  border: 1.5px solid var(--v935-accent);
}
.v935-btn-outline:hover { background: rgba(255,225,53,0.1); }

/* Promo Link Text */
.v935-promo-link {
  color: var(--v935-accent);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--v935-transition);
}
.v935-promo-link:hover { text-decoration: underline; }

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

/* Winner List */
.v935-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v935-winner-item:last-child { border-bottom: none; }
.v935-winner-name { color: var(--v935-warm); font-weight: 600; font-size: 1.3rem; }
.v935-winner-amount { color: var(--v935-accent); font-weight: 700; font-size: 1.4rem; }
.v935-winner-game { color: var(--v935-muted); font-size: 1.2rem; }

/* Footer */
.v935-footer {
  background: var(--v935-dark);
  padding: 2rem 0 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,225,53,0.1);
}
.v935-footer-desc {
  color: var(--v935-muted);
  font-size: 1.3rem;
  line-height: 2rem;
  margin-bottom: 1.2rem;
}
.v935-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.v935-footer-link {
  color: var(--v935-accent);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 4px 10px;
  border: 1px solid rgba(255,225,53,0.3);
  border-radius: 4px;
  transition: var(--v935-transition);
}
.v935-footer-link:hover { background: rgba(255,225,53,0.1); }
.v935-footer-copy {
  color: var(--v935-muted);
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1rem;
}

/* Bottom Navigation */
.v935-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--v935-dark);
  border-top: 1px solid rgba(255,225,53,0.15);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 4px;
}
.v935-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--v935-muted);
  cursor: pointer;
  transition: var(--v935-transition);
  padding: 4px;
  border-radius: 8px;
  text-decoration: none;
}
.v935-bottom-nav-btn:hover,
.v935-nav-active {
  color: var(--v935-accent);
  background: rgba(255,225,53,0.08);
}
.v935-bottom-nav-btn .v935-nav-icon { font-size: 22px; margin-bottom: 2px; }
.v935-bottom-nav-btn .v935-nav-label { font-size: 1rem; line-height: 1.2; }

/* FAQ */
.v935-faq-item {
  background: var(--v935-card-bg);
  border-radius: var(--v935-radius);
  padding: 1.2rem;
  margin: 0.6rem 0;
}
.v935-faq-q { color: var(--v935-accent); font-weight: 700; font-size: 1.4rem; margin-bottom: 0.5rem; }
.v935-faq-a { color: var(--v935-text-light); font-size: 1.3rem; line-height: 2rem; }

/* Testimonial */
.v935-testimonial {
  background: var(--v935-card-bg);
  border-radius: var(--v935-radius);
  padding: 1.2rem;
  margin: 0.6rem 0;
  border-left: 3px solid var(--v935-accent);
}
.v935-testimonial-author { color: var(--v935-accent); font-weight: 600; font-size: 1.3rem; }
.v935-testimonial-text { color: var(--v935-text-light); font-size: 1.3rem; line-height: 2rem; margin-top: 0.4rem; }

/* Payment Methods */
.v935-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0.8rem 0;
}
.v935-payment-item {
  background: var(--v935-card-bg);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 1.2rem;
  color: var(--v935-text-light);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .v935-main { padding-bottom: 80px; }
}
@media (min-width: 769px) {
  .v935-bottom-nav { display: none; }
}
