/**
 * Casino Game - Core Stylesheet
 * File: css/layout-9467.css
 * All classes use prefix: w9467-
 * Color palette: #FFCCCB | #FFB3FF | #880E4F | #0E1621
 */

/* === CSS Variables === */
:root {
  --w9467-primary: #880E4F;
  --w9467-primary-light: #a1326a;
  --w9467-accent: #FFB3FF;
  --w9467-accent-soft: #FFCCCB;
  --w9467-bg: #0E1621;
  --w9467-bg-card: #162236;
  --w9467-bg-surface: #1a2a42;
  --w9467-text: #FFCCCB;
  --w9467-text-light: #FFB3FF;
  --w9467-text-bright: #ffffff;
  --w9467-border: rgba(255, 179, 255, 0.15);
  --w9467-gold: #FFD700;
  --w9467-radius: 8px;
  --w9467-radius-lg: 14px;
  --w9467-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --w9467-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; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--w9467-text);
  background: var(--w9467-bg);
  -webkit-font-smoothing: antialiased;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}
a { color: var(--w9467-accent); text-decoration: none; transition: var(--w9467-transition); }
a:hover { color: var(--w9467-text-bright); }
img { max-width: 100%; height: auto; display: block; }

/* === Header === */
.w9467-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  z-index: 1000;
  background: linear-gradient(135deg, var(--w9467-bg) 0%, #121d30 100%);
  border-bottom: 1px solid var(--w9467-border);
  padding: 0 1.2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}
.w9467-logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.w9467-logo-area img { width: 28px; height: 28px; border-radius: 6px; }
.w9467-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--w9467-text-bright);
  white-space: nowrap;
}
.w9467-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.w9467-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--w9467-radius);
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--w9467-transition);
  white-space: nowrap;
}
.w9467-btn-register {
  background: linear-gradient(135deg, var(--w9467-primary), var(--w9467-primary-light));
  color: var(--w9467-text-bright);
}
.w9467-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 12px rgba(136, 14, 79, 0.5); }
.w9467-btn-login {
  background: transparent;
  border: 1.5px solid var(--w9467-accent);
  color: var(--w9467-accent);
}
.w9467-btn-login:hover { background: rgba(255, 179, 255, 0.1); }
.w9467-menu-btn {
  background: none;
  border: none;
  color: var(--w9467-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Mobile Menu === */
.w9467-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}
.w9467-overlay-active { display: block; }
.w9467-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 270px;
  height: 100vh;
  background: var(--w9467-bg-card);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.w9467-menu-active { right: 0; }
.w9467-mobile-menu .w9467-menu-close {
  background: none;
  border: none;
  color: var(--w9467-text);
  font-size: 2.2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}
.w9467-mobile-menu nav { margin-top: 3rem; }
.w9467-mobile-menu nav a {
  display: block;
  padding: 1rem 0;
  color: var(--w9467-text);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--w9467-border);
}
.w9467-mobile-menu nav a:hover { color: var(--w9467-accent); padding-left: 0.5rem; }

/* === Main Content === */
.w9467-main {
  margin-top: 56px;
  padding: 0 1.2rem 2rem;
  min-height: 60vh;
}

/* === Carousel === */
.w9467-carousel {
  position: relative;
  width: 100%;
  margin: 1.2rem 0;
  border-radius: var(--w9467-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
}
.w9467-slide {
  display: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.w9467-slide-active { display: block; }
.w9467-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.w9467-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.w9467-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--w9467-transition);
  border: none;
}
.w9467-dot-active { background: var(--w9467-accent); width: 20px; border-radius: 4px; }

/* === Section Titles === */
.w9467-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--w9467-text-bright);
  margin: 2rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--w9467-primary);
}
.w9467-section-title span { color: var(--w9467-accent); }

/* === Game Grid === */
.w9467-game-section { margin: 1.5rem 0; }
.w9467-game-cat-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--w9467-accent);
  margin: 1.5rem 0 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--w9467-primary);
}
.w9467-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.w9467-game-card {
  text-align: center;
  cursor: pointer;
  transition: var(--w9467-transition);
  border-radius: var(--w9467-radius);
  padding: 0.4rem;
}
.w9467-game-card:hover { transform: translateY(-3px); background: var(--w9467-bg-surface); }
.w9467-game-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--w9467-radius);
  margin-bottom: 0.3rem;
}
.w9467-game-card p {
  font-size: 1.1rem;
  color: var(--w9467-text);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === Content Blocks === */
.w9467-content-block {
  background: var(--w9467-bg-card);
  border-radius: var(--w9467-radius-lg);
  padding: 1.8rem;
  margin: 1.5rem 0;
  border: 1px solid var(--w9467-border);
}
.w9467-content-block h2 {
  font-size: 1.8rem;
  color: var(--w9467-text-bright);
  margin-bottom: 1rem;
}
.w9467-content-block h3 {
  font-size: 1.6rem;
  color: var(--w9467-accent);
  margin: 1rem 0 0.5rem;
}
.w9467-content-block p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--w9467-text);
  margin-bottom: 0.8rem;
}
.w9467-content-block ul, .w9467-content-block ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.w9467-content-block li {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

/* === Promo Link === */
.w9467-promo-text {
  color: var(--w9467-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.w9467-promo-text:hover { color: var(--w9467-text-bright); }
.w9467-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--w9467-primary), var(--w9467-primary-light));
  color: var(--w9467-text-bright);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 2.4rem;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  text-align: center;
  margin: 1rem 0;
  transition: var(--w9467-transition);
}
.w9467-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(136, 14, 79, 0.6);
}

/* === Testimonial === */
.w9467-testimonial {
  background: var(--w9467-bg-surface);
  border-radius: var(--w9467-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--w9467-primary);
}
.w9467-testimonial p { font-style: italic; font-size: 1.3rem; }
.w9467-testimonial cite { color: var(--w9467-accent); font-size: 1.2rem; }

/* === Winner Showcase === */
.w9467-winner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-bottom: 1px solid var(--w9467-border);
}
.w9467-winner-item:last-child { border-bottom: none; }
.w9467-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--w9467-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w9467-text-bright);
  font-weight: 700;
  font-size: 1.3rem;
}
.w9467-winner-info { flex: 1; }
.w9467-winner-name { font-size: 1.3rem; color: var(--w9467-text-bright); font-weight: 600; }
.w9467-winner-game { font-size: 1.2rem; color: var(--w9467-text); }
.w9467-winner-amount { font-size: 1.4rem; color: var(--w9467-gold); font-weight: 700; }

/* === Payment Methods === */
.w9467-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.w9467-payment-item {
  background: var(--w9467-bg-surface);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  color: var(--w9467-text);
  border: 1px solid var(--w9467-border);
}

/* === Footer === */
.w9467-footer {
  background: var(--w9467-bg-card);
  border-top: 1px solid var(--w9467-border);
  padding: 2rem 1.2rem 3rem;
  margin-top: 2rem;
}
.w9467-footer-brand {
  font-size: 1.3rem;
  color: var(--w9467-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.w9467-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.w9467-footer-links a {
  font-size: 1.2rem;
  color: var(--w9467-text);
  padding: 0.4rem 0.8rem;
  background: var(--w9467-bg-surface);
  border-radius: 4px;
  transition: var(--w9467-transition);
}
.w9467-footer-links a:hover { color: var(--w9467-accent); background: rgba(255, 179, 255, 0.08); }
.w9467-footer-copy {
  font-size: 1.2rem;
  color: rgba(255, 204, 203, 0.5);
  text-align: center;
  margin-top: 1rem;
}

/* === Bottom Navigation === */
.w9467-bnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  z-index: 1000;
  height: 60px;
  background: linear-gradient(180deg, #14202f 0%, var(--w9467-bg) 100%);
  border-top: 1px solid var(--w9467-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.4rem;
}
.w9467-bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 54px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--w9467-text);
  transition: var(--w9467-transition);
  gap: 2px;
  padding: 0;
}
.w9467-bnav-btn .w9467-bnav-icon { font-size: 22px; line-height: 1; }
.w9467-bnav-btn .w9467-bnav-label { font-size: 1rem; line-height: 1.2; }
.w9467-bnav-btn:hover,
.w9467-bnav-active {
  color: var(--w9467-accent);
}
.w9467-bnav-active .w9467-bnav-icon { transform: scale(1.15); }
.w9467-bnav-active::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--w9467-accent);
  border-radius: 1px;
  margin-top: 1px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .w9467-main { padding-bottom: 76px; }
  .w9467-footer { padding-bottom: 80px; }
}
@media (min-width: 769px) {
  .w9467-bnav { display: none; }
  .w9467-header { max-width: 100%; }
}

/* === Utility === */
.w9467-text-center { text-align: center; }
.w9467-mt-1 { margin-top: 1rem; }
.w9467-mt-2 { margin-top: 2rem; }
.w9467-mb-1 { margin-bottom: 1rem; }
.w9467-mb-2 { margin-bottom: 2rem; }
.w9467-hidden { display: none; }
.w9467-divider {
  border: none;
  border-top: 1px solid var(--w9467-border);
  margin: 1.5rem 0;
}

/* === FAQ Accordion === */
.w9467-faq-item { margin-bottom: 1rem; }
.w9467-faq-q {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--w9467-accent);
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.w9467-faq-a {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--w9467-text);
  padding-left: 1rem;
  border-left: 2px solid var(--w9467-border);
}

/* === App Download CTA === */
.w9467-app-cta {
  background: linear-gradient(135deg, var(--w9467-primary) 0%, #6b0a3e 100%);
  border-radius: var(--w9467-radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
}
.w9467-app-cta h3 { font-size: 1.8rem; color: var(--w9467-text-bright); margin-bottom: 0.8rem; }
.w9467-app-cta p { font-size: 1.3rem; color: var(--w9467-accent-soft); margin-bottom: 1rem; }

/* === RTP Table === */
.w9467-rtp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.w9467-rtp-item {
  background: var(--w9467-bg-surface);
  padding: 0.6rem 0.8rem;
  border-radius: var(--w9467-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}
.w9467-rtp-name { color: var(--w9467-text); }
.w9467-rtp-val { color: var(--w9467-gold); font-weight: 700; }
