/**
 * Scater Casino - Theme Stylesheet
 * File: css/theme-4121.css
 * Prefix: w4121-
 */

:root {
  --w4121-primary: #FFE4B5;
  --w4121-bg: #2D2D2D;
  --w4121-bg-dark: #1A1A1A;
  --w4121-bg-card: #3A3A3A;
  --w4121-text: #FFE4B5;
  --w4121-text-light: #FFF8E7;
  --w4121-text-muted: #BFA87A;
  --w4121-accent: #FFD700;
  --w4121-accent2: #D4A017;
  --w4121-border: #4A4A4A;
  --w4121-gold: #FFD700;
  --w4121-gold-dark: #B8860B;
  --w4121-green: #4CAF50;
  --w4121-red: #E74C3C;
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--w4121-bg);
  color: var(--w4121-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--w4121-accent); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--w4121-gold); }

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

/* ===== CONTAINER ===== */
.w4121-container { max-width: 430px; margin: 0 auto; padding: 0 1rem; }

/* ===== HEADER ===== */
.w4121-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  border-bottom: 1px solid var(--w4121-gold-dark);
  padding: 0.8rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 430px; margin: 0 auto;
}
.w4121-header-left { display: flex; align-items: center; gap: 0.6rem; }
.w4121-logo { width: 28px; height: 28px; border-radius: 4px; }
.w4121-site-name { font-size: 1.6rem; font-weight: 700; color: var(--w4121-gold); letter-spacing: 0.5px; }
.w4121-header-right { display: flex; align-items: center; gap: 0.5rem; }
.w4121-btn-register {
  background: linear-gradient(135deg, #FFD700 0%, #D4A017 100%);
  color: #1A1A1A; border: none; padding: 0.5rem 1.2rem;
  border-radius: 20px; font-size: 1.2rem; font-weight: 700;
  cursor: pointer; transition: transform 0.2s;
}
.w4121-btn-register:hover { transform: scale(1.05); }
.w4121-btn-login {
  background: transparent; color: var(--w4121-primary);
  border: 1px solid var(--w4121-gold-dark); padding: 0.5rem 1rem;
  border-radius: 20px; font-size: 1.2rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.w4121-btn-login:hover { background: var(--w4121-bg-card); }
.w4121-menu-toggle {
  background: none; border: none; color: var(--w4121-primary);
  font-size: 2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* ===== MOBILE MENU ===== */
.w4121-mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999; background: rgba(0,0,0,0.92);
  display: none; flex-direction: column; padding: 6rem 2rem 2rem;
  max-width: 430px; margin: 0 auto;
}
.w4121-menu-active { display: flex !important; }
.w4121-menu-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: var(--w4121-primary);
  font-size: 2.4rem; cursor: pointer;
}
.w4121-mobile-menu a {
  display: block; padding: 1.2rem 0; font-size: 1.5rem;
  color: var(--w4121-primary); border-bottom: 1px solid var(--w4121-border);
  font-weight: 500;
}
.w4121-mobile-menu a:hover { color: var(--w4121-gold); text-decoration: none; }

/* ===== MAIN CONTENT ===== */
.w4121-main { padding-top: 5.5rem; }
@media (max-width: 768px) {
  .w4121-main { padding-bottom: 80px; }
}

/* ===== CAROUSEL ===== */
.w4121-carousel {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 0 0 12px 12px;
}
.w4121-slide {
  display: none; width: 100%; cursor: pointer;
}
.w4121-slide img { width: 100%; height: auto; min-height: 180px; object-fit: cover; }
.w4121-slide-active { display: block !important; }
.w4121-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.w4121-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.3s;
}
.w4121-dot-active { background: var(--w4121-gold); width: 20px; border-radius: 4px; }

/* ===== SECTION HEADINGS ===== */
.w4121-section { padding: 2rem 1rem; }
.w4121-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--w4121-gold);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--w4121-gold-dark);
  display: flex; align-items: center; gap: 0.6rem;
}
.w4121-section-title i, .w4121-section-title .material-icons {
  font-size: 2rem;
}

/* ===== GAME GRID ===== */
.w4121-game-category-title {
  font-size: 1.5rem; font-weight: 600; color: var(--w4121-accent);
  margin: 1.5rem 0 0.8rem; padding-left: 0.5rem;
  border-left: 3px solid var(--w4121-gold);
}
.w4121-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.w4121-game-item {
  text-align: center; cursor: pointer;
  transition: transform 0.2s;
}
.w4121-game-item:hover { transform: translateY(-3px); }
.w4121-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: 10px;
  border: 1px solid var(--w4121-border); object-fit: cover;
  margin-bottom: 0.3rem;
}
.w4121-game-name {
  font-size: 1.1rem; color: var(--w4121-text-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  line-height: 1.3rem;
}

/* ===== CONTENT BLOCKS ===== */
.w4121-card {
  background: var(--w4121-bg-card); border-radius: 10px;
  padding: 1.5rem; margin-bottom: 1.2rem;
  border: 1px solid var(--w4121-border);
}
.w4121-card h3 {
  font-size: 1.5rem; color: var(--w4121-gold); margin-bottom: 0.8rem;
}
.w4121-card p {
  font-size: 1.3rem; color: var(--w4121-text-muted); line-height: 1.8rem;
  margin-bottom: 0.6rem;
}

/* ===== CTA BUTTON ===== */
.w4121-cta {
  display: inline-block; background: linear-gradient(135deg, #FFD700 0%, #D4A017 100%);
  color: #1A1A1A; font-weight: 700; font-size: 1.4rem;
  padding: 1rem 2.5rem; border-radius: 30px; cursor: pointer;
  border: none; transition: transform 0.2s, box-shadow 0.2s;
  text-align: center; text-decoration: none;
}
.w4121-cta:hover {
  transform: scale(1.05); box-shadow: 0 4px 15px rgba(255,215,0,0.3);
  text-decoration: none;
}
.w4121-cta-outline {
  background: transparent; color: var(--w4121-gold);
  border: 2px solid var(--w4121-gold);
}

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

/* ===== PAYMENT ICONS ===== */
.w4121-payment-grid {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; padding: 1rem 0;
}
.w4121-payment-item {
  background: var(--w4121-bg-card); border-radius: 8px;
  padding: 0.6rem 1rem; font-size: 1.2rem; color: var(--w4121-text-muted);
  border: 1px solid var(--w4121-border);
}

/* ===== WINNER LIST ===== */
.w4121-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(74,74,74,0.5);
}
.w4121-winner-name { color: var(--w4121-primary); font-size: 1.2rem; font-weight: 600; }
.w4121-winner-game { color: var(--w4121-text-muted); font-size: 1.1rem; }
.w4121-winner-amount { color: var(--w4121-gold); font-size: 1.3rem; font-weight: 700; }

/* ===== FOOTER ===== */
.w4121-footer {
  background: var(--w4121-bg-dark); padding: 2rem 1rem 1rem;
  border-top: 1px solid var(--w4121-gold-dark);
}
.w4121-footer-brand { color: var(--w4121-text-muted); font-size: 1.2rem; line-height: 1.6rem; margin-bottom: 1.5rem; }
.w4121-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 1.5rem;
}
.w4121-footer-links a {
  color: var(--w4121-primary); font-size: 1.1rem;
  padding: 0.4rem 0.8rem; background: var(--w4121-bg-card);
  border-radius: 6px; border: 1px solid var(--w4121-border);
}
.w4121-footer-links a:hover { color: var(--w4121-gold); text-decoration: none; }
.w4121-footer-copy {
  text-align: center; color: var(--w4121-text-muted);
  font-size: 1.1rem; padding-top: 1rem;
  border-top: 1px solid var(--w4121-border);
}

/* ===== BOTTOM NAV ===== */
.w4121-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #2D2D2D 0%, #1A1A1A 100%);
  border-top: 1px solid var(--w4121-gold-dark);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; max-width: 430px; margin: 0 auto;
  padding: 0 0.3rem;
}
.w4121-bottom-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 60px; min-height: 52px;
  background: none; border: none; color: var(--w4121-text-muted);
  cursor: pointer; transition: all 0.2s; gap: 2px;
  padding: 0.3rem 0;
}
.w4121-bottom-btn:hover, .w4121-bottom-btn:focus { color: var(--w4121-gold); transform: scale(1.08); }
.w4121-bottom-btn .material-icons, .w4121-bottom-btn i { font-size: 22px; }
.w4121-bottom-btn span { font-size: 10px; line-height: 1.2; }
.w4121-bottom-btn-active { color: var(--w4121-gold) !important; }

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

/* ===== DESKTOP NAV ===== */
.w4121-desktop-nav { display: none; }
@media (min-width: 769px) {
  .w4121-desktop-nav {
    display: flex; gap: 1.5rem; align-items: center;
  }
  .w4121-desktop-nav a {
    color: var(--w4121-primary); font-size: 1.3rem; font-weight: 500;
  }
  .w4121-header { max-width: 100%; }
  .w4121-container { max-width: 768px; }
  .w4121-game-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ===== UTILITIES ===== */
.w4121-text-center { text-align: center; }
.w4121-mb-1 { margin-bottom: 1rem; }
.w4121-mb-2 { margin-bottom: 2rem; }
.w4121-mt-1 { margin-top: 1rem; }
.w4121-mt-2 { margin-top: 2rem; }
.w4121-flex-center { display: flex; align-items: center; justify-content: center; }
.w4121-gap-1 { gap: 1rem; }

/* ===== RTP TABLE ===== */
.w4121-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.w4121-rtp-table th {
  background: var(--w4121-bg-dark); color: var(--w4121-gold);
  padding: 0.6rem; text-align: left; font-weight: 600;
  border-bottom: 2px solid var(--w4121-gold-dark);
}
.w4121-rtp-table td {
  padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--w4121-border);
  color: var(--w4121-text-muted);
}
.w4121-rtp-high { color: var(--w4121-green); font-weight: 700; }
.w4121-rtp-med { color: var(--w4121-gold); font-weight: 600; }

/* ===== FAQ ===== */
.w4121-faq-item { margin-bottom: 1rem; }
.w4121-faq-q {
  font-weight: 700; color: var(--w4121-gold); font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.w4121-faq-a { color: var(--w4121-text-muted); font-size: 1.2rem; line-height: 1.7rem; }

/* ===== TRICKS/ACHIEVEMENT LIST ===== */
.w4121-trick-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(74,74,74,0.4);
}
.w4121-trick-icon { color: var(--w4121-gold); font-size: 1.6rem; min-width: 2rem; text-align: center; }
.w4121-trick-text { font-size: 1.2rem; color: var(--w4121-text-muted); line-height: 1.6rem; }

/* ===== PROMO TEXT LINK ===== */
.w4121-promo-link {
  color: var(--w4121-gold); font-weight: 700;
  cursor: pointer; text-decoration: underline;
}
.w4121-promo-link:hover { color: var(--w4121-primary); }
