/**
 * jilitt2026.click - Theme Stylesheet
 * Prefix: s929-
 * Color palette: Dark green casino theme
 */

/* ===== CSS Variables ===== */
:root {
  --s929-primary: #228B22;
  --s929-bg: #212F3D;
  --s929-text: #FFFFFF;
  --s929-accent: #6495ED;
  --s929-highlight: #FFD700;
  --s929-white: #FFFFFF;
  --s929-light-bg: #2C3E50;
  --s929-dark-bg: #1A252F;
  --s929-border: #34495E;
  --s929-green-light: #98FB98;
  --s929-success: #27AE60;
  --s929-warning: #F39C12;
  --s929-radius: 8px;
  --s929-radius-lg: 12px;
  --s929-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --s929-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.4);
  --s929-transition: all 0.3s ease;
  font-size: 62.5%;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--s929-text);
  background-color: var(--s929-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--s929-accent);
  text-decoration: none;
  transition: var(--s929-transition);
}

a:hover {
  color: var(--s929-highlight);
}

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

ul, ol {
  list-style: none;
}

/* ===== Container ===== */
.s929-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
}

/* ===== Header ===== */
.s929-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--s929-dark-bg), var(--s929-bg));
  border-bottom: 2px solid var(--s929-primary);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.s929-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.s929-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.s929-logo-area img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.s929-site-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--s929-highlight);
  white-space: nowrap;
}

.s929-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.s929-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--s929-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--s929-transition);
  white-space: nowrap;
}

.s929-btn-register {
  background: var(--s929-primary);
  color: var(--s929-white);
}

.s929-btn-register:hover {
  background: var(--s929-success);
  transform: translateY(-1px);
}

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

.s929-btn-login:hover {
  background: var(--s929-highlight);
  color: var(--s929-dark-bg);
}

.s929-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.s929-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--s929-white);
  border-radius: 2px;
  transition: var(--s929-transition);
}

/* ===== Mobile Menu ===== */
.s929-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--s929-transition);
}

.s929-overlay-active {
  opacity: 1;
  visibility: visible;
}

.s929-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--s929-dark-bg);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.s929-menu-active {
  right: 0;
}

.s929-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--s929-border);
}

.s929-menu-close {
  font-size: 2.4rem;
  color: var(--s929-white);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.s929-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.s929-menu-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--s929-text);
  border-radius: var(--s929-radius);
  transition: var(--s929-transition);
  font-size: 1.5rem;
}

.s929-menu-links a:hover,
.s929-menu-links a:focus {
  background: var(--s929-light-bg);
  color: var(--s929-highlight);
}

.s929-menu-links a i {
  width: 22px;
  text-align: center;
  color: var(--s929-primary);
}

/* ===== Carousel ===== */
.s929-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--s929-radius-lg);
  margin-top: 60px;
  aspect-ratio: 16/7;
}

.s929-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--s929-transition);
}

.s929-slide-active {
  opacity: 1;
}

.s929-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s929-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.s929-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--s929-transition);
}

.s929-dot-active {
  background: var(--s929-highlight);
  transform: scale(1.3);
}

/* ===== Section Titles ===== */
.s929-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--s929-highlight);
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--s929-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.s929-section-title i {
  color: var(--s929-primary);
}

/* ===== Game Grid ===== */
.s929-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.s929-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--s929-transition);
  padding: 8px 4px;
  border-radius: var(--s929-radius);
  background: var(--s929-light-bg);
}

.s929-game-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--s929-shadow-lg);
  background: var(--s929-dark-bg);
}

.s929-game-item img {
  width: 70px;
  height: 70px;
  border-radius: var(--s929-radius);
  object-fit: cover;
}

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

/* ===== Promo Buttons ===== */
.s929-promo-section {
  margin: 24px 0;
}

.s929-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.s929-promo-card {
  background: linear-gradient(135deg, var(--s929-primary), #1a6b1a);
  border-radius: var(--s929-radius-lg);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--s929-transition);
  border: 1px solid var(--s929-green-light);
}

.s929-promo-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(34, 139, 34, 0.4);
}

.s929-promo-card i {
  font-size: 2.8rem;
  color: var(--s929-highlight);
  margin-bottom: 8px;
}

.s929-promo-card h3 {
  font-size: 1.4rem;
  color: var(--s929-white);
  margin-bottom: 4px;
}

.s929-promo-card p {
  font-size: 1.2rem;
  color: var(--s929-green-light);
}

/* ===== Info Section ===== */
.s929-info-section {
  background: var(--s929-light-bg);
  border-radius: var(--s929-radius-lg);
  padding: 20px 16px;
  margin: 20px 0;
  border-left: 4px solid var(--s929-primary);
}

.s929-info-section h2 {
  font-size: 1.8rem;
  color: var(--s929-highlight);
  margin-bottom: 12px;
}

.s929-info-section p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 10px;
}

/* ===== Features Grid ===== */
.s929-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.s929-feature-card {
  background: var(--s929-light-bg);
  border-radius: var(--s929-radius);
  padding: 16px 12px;
  text-align: center;
  border: 1px solid var(--s929-border);
  transition: var(--s929-transition);
}

.s929-feature-card:hover {
  border-color: var(--s929-primary);
  box-shadow: 0 0 12px rgba(34, 139, 34, 0.2);
}

.s929-feature-card i {
  font-size: 2.4rem;
  color: var(--s929-primary);
  margin-bottom: 8px;
}

.s929-feature-card h3 {
  font-size: 1.3rem;
  color: var(--s929-highlight);
  margin-bottom: 6px;
}

.s929-feature-card p {
  font-size: 1.2rem;
  color: #bbb;
  line-height: 1.4;
}

/* ===== CTA Section ===== */
.s929-cta-section {
  background: linear-gradient(135deg, var(--s929-primary), #1a6b1a);
  border-radius: var(--s929-radius-lg);
  padding: 24px 16px;
  text-align: center;
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}

.s929-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.s929-cta-section h2 {
  font-size: 2.2rem;
  color: var(--s929-highlight);
  margin-bottom: 12px;
  position: relative;
}

.s929-cta-section p {
  font-size: 1.4rem;
  color: var(--s929-white);
  margin-bottom: 16px;
  position: relative;
}

.s929-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--s929-highlight);
  color: var(--s929-dark-bg);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--s929-transition);
  position: relative;
}

.s929-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ===== RTP Table ===== */
.s929-rtp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 1.3rem;
}

.s929-rtp-table th {
  background: var(--s929-primary);
  color: var(--s929-white);
  padding: 10px 8px;
  text-align: left;
  font-weight: 600;
}

.s929-rtp-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--s929-border);
  color: #ddd;
}

.s929-rtp-table tr:nth-child(even) td {
  background: var(--s929-light-bg);
}

.s929-rtp-table tr:hover td {
  background: rgba(34, 139, 34, 0.15);
}

/* ===== Winners ===== */
.s929-winners-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.s929-winner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--s929-light-bg);
  border-radius: var(--s929-radius);
  border-left: 3px solid var(--s929-highlight);
}

.s929-winner-item .s929-winner-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--s929-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s929-winner-item .s929-winner-icon i {
  color: var(--s929-highlight);
  font-size: 1.6rem;
}

.s929-winner-info {
  flex: 1;
}

.s929-winner-name {
  font-size: 1.3rem;
  color: var(--s929-highlight);
  font-weight: 600;
}

.s929-winner-detail {
  font-size: 1.2rem;
  color: #aaa;
}

.s929-winner-amount {
  font-size: 1.4rem;
  color: var(--s929-highlight);
  font-weight: 700;
}

/* ===== Payment ===== */
.s929-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 16px 0;
}

.s929-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--s929-light-bg);
  border-radius: var(--s929-radius);
  min-width: 80px;
}

.s929-payment-item i {
  font-size: 2.4rem;
  color: var(--s929-accent);
}

.s929-payment-item span {
  font-size: 1.1rem;
  color: #bbb;
}

/* ===== FAQ ===== */
.s929-faq-item {
  background: var(--s929-light-bg);
  border-radius: var(--s929-radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.s929-faq-question {
  padding: 14px 16px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--s929-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s929-faq-question i {
  color: var(--s929-primary);
  transition: var(--s929-transition);
}

.s929-faq-answer {
  padding: 0 16px 14px;
  font-size: 1.3rem;
  color: #bbb;
  line-height: 1.6;
}

/* ===== Footer ===== */
.s929-footer {
  background: var(--s929-dark-bg);
  padding: 24px 12px 80px;
  margin-top: 32px;
  border-top: 2px solid var(--s929-primary);
}

.s929-footer-inner {
  max-width: 430px;
  margin: 0 auto;
}

.s929-footer-brand {
  text-align: center;
  margin-bottom: 20px;
}

.s929-footer-brand p {
  font-size: 1.3rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 8px;
}

.s929-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.s929-footer-links a {
  font-size: 1.2rem;
  padding: 6px 12px;
  background: var(--s929-light-bg);
  border-radius: var(--s929-radius);
  color: var(--s929-text);
  transition: var(--s929-transition);
}

.s929-footer-links a:hover {
  background: var(--s929-primary);
  color: var(--s929-white);
}

.s929-footer-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.s929-footer-promo a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--s929-primary);
  color: var(--s929-white);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--s929-transition);
}

.s929-footer-promo a:hover {
  background: var(--s929-highlight);
  color: var(--s929-dark-bg);
}

.s929-footer-copy {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  padding-top: 16px;
  border-top: 1px solid var(--s929-border);
}

/* ===== Bottom Navigation ===== */
.s929-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--s929-dark-bg), #0d1520);
  border-top: 2px solid var(--s929-primary);
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
}

.s929-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  cursor: pointer;
  transition: var(--s929-transition);
  border: none;
  background: none;
  color: #888;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.s929-bottom-nav-item:hover,
.s929-bottom-nav-item:focus {
  color: var(--s929-highlight);
}

.s929-bottom-nav-item.s929-nav-active {
  color: var(--s929-highlight);
}

.s929-bottom-nav-item i {
  font-size: 22px;
  margin-bottom: 2px;
}

.s929-bottom-nav-item span {
  font-size: 10px;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  main {
    padding-bottom: 80px;
  }
}

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

  .s929-hamburger {
    display: none;
  }

  .s929-header-inner {
    max-width: 100%;
  }
}

/* ===== Utility ===== */
.s929-text-center {
  text-align: center;
}

.s929-text-highlight {
  color: var(--s929-highlight);
}

.s929-text-accent {
  color: var(--s929-accent);
}

.s929-text-green {
  color: var(--s929-primary);
}

.s929-mb-0 {
  margin-bottom: 0;
}

.s929-mb-1 {
  margin-bottom: 8px;
}

.s929-mb-2 {
  margin-bottom: 16px;
}

.s929-mb-3 {
  margin-bottom: 24px;
}

/* ===== App Download Section ===== */
.s929-app-section {
  background: linear-gradient(135deg, var(--s929-dark-bg), #0d1f2d);
  border-radius: var(--s929-radius-lg);
  padding: 20px 16px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--s929-border);
}

.s929-app-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  flex-shrink: 0;
}

.s929-app-info h3 {
  font-size: 1.6rem;
  color: var(--s929-highlight);
  margin-bottom: 4px;
}

.s929-app-info p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 8px;
}

.s929-app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--s929-primary);
  color: var(--s929-white);
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--s929-transition);
}

.s929-app-download-btn:hover {
  background: var(--s929-success);
}
