/**
 * ek33.click - Layout Stylesheet
 * Class prefix: s956-
 * Color palette: #228B22 | #AFEEEE | #98FB98 | #1A1A2E | #0097A7
 */

/* CSS Variables */
:root {
  --s956-primary: #228B22;
  --s956-secondary: #0097A7;
  --s956-accent: #98FB98;
  --s956-light: #AFEEEE;
  --s956-bg: #1A1A2E;
  --s956-bg-card: #1e2a3a;
  --s956-text: #e8f5e9;
  --s956-text-muted: #90a4ae;
  --s956-border: #2a3f5f;
  --s956-gradient: linear-gradient(135deg, #228B22 0%, #0097A7 100%);
  --s956-radius: 8px;
  --s956-radius-lg: 16px;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--s956-bg);
  color: var(--s956-text);
  font-size: 1.6rem;
  line-height: 1.5;
  min-height: 100vh;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--s956-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--s956-accent); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.s956-container { width: 100%; padding: 0 1.2rem; margin: 0 auto; }
.s956-wrapper { padding: 1.2rem 0; }

/* Header */
.s956-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000;
  background: var(--s956-bg); border-bottom: 2px solid var(--s956-primary);
  padding: 0.8rem 1rem; display: flex; align-items: center; justify-content: space-between;
}
.s956-logo-area { display: flex; align-items: center; gap: 0.6rem; }
.s956-logo-area img { width: 28px; height: 28px; border-radius: 6px; }
.s956-logo-area span { font-size: 1.8rem; font-weight: 700; color: var(--s956-primary); letter-spacing: -0.5px; }
.s956-header-right { display: flex; align-items: center; gap: 0.6rem; }
.s956-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.2rem; border-radius: var(--s956-radius); font-size: 1.2rem;
  font-weight: 600; cursor: pointer; border: none; transition: all 0.25s;
  text-transform: none; letter-spacing: 0.3px;
}
.s956-btn-register {
  background: var(--s956-gradient); color: #fff;
}
.s956-btn-register:hover { opacity: 0.9; transform: scale(1.03); }
.s956-btn-login {
  background: transparent; color: var(--s956-light); border: 1.5px solid var(--s956-secondary);
}
.s956-btn-login:hover { background: var(--s956-secondary); color: #fff; }
.s956-menu-toggle {
  background: none; border: none; color: var(--s956-text); font-size: 2rem;
  cursor: pointer; padding: 0.4rem; display: flex; align-items: center;
}

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

/* Carousel */
.s956-carousel {
  position: relative; width: 100%; overflow: hidden;
  border-radius: var(--s956-radius-lg); margin: 0.5rem 0;
}
.s956-slides-wrapper { position: relative; width: 100%; aspect-ratio: 16/7; }
.s956-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.6s ease; cursor: pointer;
}
.s956-slide img { width: 100%; height: 100%; object-fit: cover; }
.s956-slide-active { opacity: 1; }
.s956-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.s956-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; border: none;
}
.s956-dot-active { background: var(--s956-primary); transform: scale(1.2); }

/* Section headings */
.s956-section { padding: 1.5rem 1.2rem; }
.s956-section-title {
  font-size: 2rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--s956-primary); position: relative; padding-bottom: 0.6rem;
}
.s956-section-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; background: var(--s956-secondary); border-radius: 2px;
}

/* Game Grid */
.s956-cat-label {
  font-size: 1.6rem; font-weight: 600; color: var(--s956-light);
  margin: 1.5rem 0 0.8rem; display: flex; align-items: center; gap: 0.5rem;
}
.s956-cat-label i { color: var(--s956-primary); font-size: 1.8rem; }
.s956-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem;
}
.s956-game-item {
  text-align: center; cursor: pointer; transition: transform 0.2s;
}
.s956-game-item:hover { transform: translateY(-2px); }
.s956-game-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--s956-radius); border: 2px solid var(--s956-border);
  transition: border-color 0.2s;
}
.s956-game-item:hover img { border-color: var(--s956-primary); }
.s956-game-name {
  font-size: 1.1rem; color: var(--s956-text-muted); margin-top: 0.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Cards */
.s956-card {
  background: var(--s956-bg-card); border-radius: var(--s956-radius-lg);
  padding: 1.5rem; border: 1px solid var(--s956-border); margin-bottom: 1rem;
}
.s956-card-title {
  font-size: 1.6rem; font-weight: 600; color: var(--s956-primary);
  margin-bottom: 0.8rem;
}

/* Promo CTA */
.s956-cta {
  background: var(--s956-gradient); border-radius: var(--s956-radius-lg);
  padding: 2rem; text-align: center; margin: 1.5rem 0;
}
.s956-cta h3 { font-size: 2rem; color: #fff; margin-bottom: 0.8rem; }
.s956-cta p { color: rgba(255,255,255,0.9); font-size: 1.4rem; margin-bottom: 1.2rem; }
.s956-cta-btn {
  display: inline-block; padding: 1rem 2.5rem; background: #fff;
  color: var(--s956-primary); border-radius: 30px; font-weight: 700;
  font-size: 1.5rem; cursor: pointer; border: none; transition: transform 0.2s;
}
.s956-cta-btn:hover { transform: scale(1.05); }

/* Content text */
.s956-content { padding: 0.5rem 0; }
.s956-content p { margin-bottom: 1rem; color: var(--s956-text); line-height: 1.6; }
.s956-content h2 { font-size: 1.8rem; color: var(--s956-primary); margin: 1.5rem 0 0.8rem; }
.s956-content h3 { font-size: 1.6rem; color: var(--s956-light); margin: 1.2rem 0 0.6rem; }
.s956-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.s956-content li { margin-bottom: 0.5rem; color: var(--s956-text); line-height: 1.5; }

/* Promo text link */
.s956-promo-link {
  color: var(--s956-primary); font-weight: 700; cursor: pointer;
  border-bottom: 1px dashed var(--s956-primary); transition: color 0.2s;
}
.s956-promo-link:hover { color: var(--s956-accent); }

/* Footer */
.s956-footer {
  background: #111827; padding: 2rem 1.2rem 8rem; border-top: 2px solid var(--s956-primary);
}
.s956-footer-brand { margin-bottom: 1.5rem; }
.s956-footer-brand p { font-size: 1.3rem; color: var(--s956-text-muted); line-height: 1.5; }
.s956-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.s956-footer-link {
  padding: 0.5rem 1rem; background: var(--s956-bg-card); border: 1px solid var(--s956-border);
  border-radius: var(--s956-radius); font-size: 1.2rem; color: var(--s956-light);
  transition: all 0.2s; cursor: pointer;
}
.s956-footer-link:hover { border-color: var(--s956-primary); color: var(--s956-primary); }
.s956-footer-copy {
  text-align: center; font-size: 1.1rem; color: var(--s956-text-muted);
  padding-top: 1rem; border-top: 1px solid var(--s956-border);
}

/* Bottom Navigation */
.s956-bnav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 60px; z-index: 1000;
  background: linear-gradient(180deg, #0d2137 0%, #1A1A2E 100%);
  display: flex; justify-content: space-around; align-items: center;
  border-top: 2px solid var(--s956-primary);
  box-shadow: 0 -2px 15px rgba(34,139,34,0.15);
}
.s956-bnav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 48px; background: none; border: none;
  color: var(--s956-text-muted); cursor: pointer; transition: all 0.2s;
  padding: 0.3rem;
}
.s956-bnav-btn i, .s956-bnav-btn .material-icons, .s956-bnav-btn ion-icon {
  font-size: 22px; margin-bottom: 2px; transition: transform 0.2s;
}
.s956-bnav-btn span { font-size: 1rem; }
.s956-bnav-btn:hover, .s956-bnav-active {
  color: var(--s956-primary);
}
.s956-bnav-btn:hover i, .s956-bnav-btn:hover .material-icons,
.s956-bnav-active i, .s956-bnav-active .material-icons {
  transform: scale(1.15);
}

/* Utility */
.s956-text-center { text-align: center; }
.s956-mt-1 { margin-top: 0.5rem; }
.s956-mt-2 { margin-top: 1rem; }
.s956-mb-1 { margin-bottom: 0.5rem; }
.s956-mb-2 { margin-bottom: 1rem; }
.s956-hidden { display: none; }

/* Winner ticker */
.s956-ticker {
  background: var(--s956-bg-card); border-radius: var(--s956-radius);
  padding: 0.8rem 1rem; margin: 1rem 0; overflow: hidden;
  border-left: 3px solid var(--s956-primary);
}
.s956-ticker-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0; font-size: 1.3rem;
}
.s956-ticker-name { color: var(--s956-light); }
.s956-ticker-amount { color: var(--s956-primary); font-weight: 700; }

/* Payment methods */
.s956-pay-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.s956-pay-item {
  background: var(--s956-bg-card); padding: 0.6rem 1rem; border-radius: var(--s956-radius);
  border: 1px solid var(--s956-border); font-size: 1.2rem; color: var(--s956-text-muted);
}

/* FAQ */
.s956-faq-item { margin-bottom: 1rem; }
.s956-faq-q {
  font-weight: 600; color: var(--s956-primary); font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.s956-faq-a { color: var(--s956-text); font-size: 1.3rem; line-height: 1.5; }

/* Testimonial */
.s956-testimonial {
  background: var(--s956-bg-card); border-radius: var(--s956-radius-lg);
  padding: 1.2rem; border: 1px solid var(--s956-border); margin-bottom: 0.8rem;
}
.s956-testimonial-text { font-size: 1.3rem; color: var(--s956-text); font-style: italic; margin-bottom: 0.5rem; }
.s956-testimonial-author { font-size: 1.2rem; color: var(--s956-primary); font-weight: 600; }

/* Responsive: desktop hides bottom nav */
@media (min-width: 769px) {
  .s956-bnav { display: none; }
  body { max-width: 430px; }
}
@media (max-width: 768px) {
  .s956-main { padding-bottom: 75px; }
}
