/**
 * 2026jl.cfd - Main Stylesheet
 * Prefix: s536-
 * Colors: #228B22 | #FF7F50 | #1E1E1E | #2E8B57 | #ADFF2F | #495057
 */

/* CSS Variables */
:root {
  --s536-primary: #228B22;
  --s536-accent: #FF7F50;
  --s536-bg: #1E1E1E;
  --s536-secondary: #2E8B57;
  --s536-highlight: #ADFF2F;
  --s536-muted: #495057;
  --s536-text: #f0f0f0;
  --s536-card-bg: #2a2a2a;
  --s536-border: #3a3a3a;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--s536-bg);
  color: var(--s536-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--s536-highlight); text-decoration: none; }
a:hover { color: var(--s536-accent); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.s536-container { width: 100%; padding: 0 1.2rem; }
.s536-wrapper { padding: 1.6rem 1.2rem; }
.s536-section { padding: 2rem 1.2rem; border-bottom: 1px solid var(--s536-border); }

/* Header */
.s536-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #1a3a1a, var(--s536-bg));
  border-bottom: 2px solid var(--s536-primary);
  max-width: 430px; margin: 0 auto;
}
.s536-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; height: 56px;
}
.s536-logo-area { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.s536-logo-area img { width: 28px; height: 28px; border-radius: 6px; }
.s536-site-name { color: var(--s536-highlight); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; }
.s536-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.s536-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.4rem; border-radius: 8px; font-size: 1.2rem;
  font-weight: 700; cursor: pointer; border: none; transition: all 0.2s;
  min-height: 36px; text-transform: uppercase; letter-spacing: 0.5px;
}
.s536-btn:hover { transform: scale(1.03); }
.s536-btn-register {
  background: linear-gradient(135deg, var(--s536-accent), #ff6347);
  color: #fff; box-shadow: 0 2px 8px rgba(255,127,80,0.3);
}
.s536-btn-login {
  background: transparent; border: 2px solid var(--s536-primary);
  color: var(--s536-highlight);
}
.s536-menu-toggle {
  background: none; border: none; color: var(--s536-text);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.s536-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: linear-gradient(180deg, #1a2e1a, var(--s536-bg));
  z-index: 9999; transition: right 0.3s ease; padding-top: 6rem;
  border-left: 2px solid var(--s536-primary);
}
.s536-mobile-menu.s536-menu-active { right: 0; }
.s536-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 9998; display: none;
}
.s536-menu-overlay.s536-overlay-active { display: block; }
.s536-menu-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; color: var(--s536-text);
  font-size: 2.4rem; cursor: pointer;
}
.s536-menu-link {
  display: block; padding: 1.2rem 2rem; color: var(--s536-text);
  font-size: 1.4rem; border-bottom: 1px solid var(--s536-border);
  transition: all 0.2s;
}
.s536-menu-link:hover { background: var(--s536-primary); color: #fff; }

/* Carousel */
.s536-carousel { position: relative; overflow: hidden; margin-top: 56px; }
.s536-slide {
  display: none; width: 100%; cursor: pointer;
  animation: s536fadeSlide 0.6s ease-in-out;
}
.s536-slide.s536-slide-active { display: block; }
@keyframes s536fadeSlide { from { opacity: 0.3; } to { opacity: 1; } }
.s536-slide img { width: 100%; height: auto; min-height: 180px; object-fit: cover; }
.s536-carousel-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px;
}
.s536-carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; border: none;
  transition: all 0.3s;
}
.s536-carousel-dot.s536-dot-active {
  background: var(--s536-accent); transform: scale(1.3);
}

/* Section Headers */
.s536-section-title {
  font-size: 2rem; font-weight: 800; color: var(--s536-highlight);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--s536-primary);
}
.s536-section-title i { margin-right: 0.6rem; color: var(--s536-accent); }
.s536-subtitle {
  font-size: 1.6rem; font-weight: 700; color: var(--s536-accent);
  margin: 1.4rem 0 0.8rem;
}

/* Game Grid */
.s536-game-category { margin-bottom: 2rem; }
.s536-cat-label {
  font-size: 1.5rem; font-weight: 700; color: var(--s536-accent);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
}
.s536-cat-label span.material-symbols-outlined { font-size: 2rem; }
.s536-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.s536-game-item {
  text-align: center; cursor: pointer; transition: transform 0.2s;
  border-radius: 10px; padding: 0.6rem; background: var(--s536-card-bg);
}
.s536-game-item:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(34,139,34,0.3); }
.s536-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: 8px;
  margin-bottom: 0.4rem; object-fit: cover;
}
.s536-game-name {
  font-size: 1.1rem; color: var(--s536-text); line-height: 1.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Cards */
.s536-card {
  background: var(--s536-card-bg); border-radius: 12px;
  padding: 1.6rem; margin-bottom: 1.4rem;
  border: 1px solid var(--s536-border);
}
.s536-card-title {
  font-size: 1.6rem; font-weight: 700; color: var(--s536-highlight);
  margin-bottom: 0.8rem;
}

/* Buttons & Links */
.s536-btn-primary {
  display: inline-block; background: linear-gradient(135deg, var(--s536-primary), var(--s536-secondary));
  color: #fff; padding: 1rem 2.4rem; border-radius: 10px;
  font-weight: 700; font-size: 1.4rem; cursor: pointer;
  border: none; transition: all 0.2s; text-align: center;
}
.s536-btn-primary:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(34,139,34,0.4); }
.s536-btn-accent {
  display: inline-block; background: linear-gradient(135deg, var(--s536-accent), #e0663a);
  color: #fff; padding: 1rem 2.4rem; border-radius: 10px;
  font-weight: 700; font-size: 1.4rem; cursor: pointer;
  border: none; transition: all 0.2s; text-align: center;
}
.s536-btn-accent:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(255,127,80,0.4); }
.s536-affiliate-link {
  color: var(--s536-accent); font-weight: 700; cursor: pointer;
  text-decoration: underline; transition: color 0.2s;
}
.s536-affiliate-link:hover { color: var(--s536-highlight); }

/* Footer */
.s536-footer {
  background: linear-gradient(180deg, var(--s536-bg), #0d0d0d);
  padding: 2.4rem 1.2rem 8rem; border-top: 2px solid var(--s536-primary);
}
.s536-footer-brand { font-size: 1.3rem; color: #aaa; line-height: 1.8rem; margin-bottom: 1.6rem; }
.s536-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.6rem; }
.s536-footer-link {
  background: var(--s536-card-bg); color: var(--s536-highlight);
  padding: 0.6rem 1.2rem; border-radius: 6px; font-size: 1.2rem;
  cursor: pointer; border: 1px solid var(--s536-border); transition: all 0.2s;
}
.s536-footer-link:hover { background: var(--s536-primary); color: #fff; }
.s536-footer-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.s536-footer-nav a { color: #888; font-size: 1.2rem; padding: 0.3rem 0.6rem; }
.s536-footer-nav a:hover { color: var(--s536-highlight); }
.s536-copyright { font-size: 1.1rem; color: #666; text-align: center; margin-top: 1.2rem; }

/* Bottom Navigation */
.s536-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #1a2e1a, #0d1a0d);
  border-top: 2px solid var(--s536-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; max-width: 430px; margin: 0 auto;
}
.s536-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px; background: none; border: none;
  color: #888; cursor: pointer; transition: all 0.25s; padding: 0.4rem;
  border-radius: 8px;
}
.s536-bottom-nav-btn:hover { color: var(--s536-highlight); background: rgba(34,139,34,0.15); }
.s536-bottom-nav-btn.s536-bottom-active { color: var(--s536-accent); }
.s536-bottom-nav-btn i,
.s536-bottom-nav-btn span.material-symbols-outlined,
.s536-bottom-nav-btn ion-icon { font-size: 2.2rem; margin-bottom: 0.2rem; }
.s536-bottom-nav-label { font-size: 1rem; font-weight: 600; }

/* Content Styles */
.s536-text-block { font-size: 1.4rem; line-height: 1.8rem; color: #ccc; margin-bottom: 1.2rem; }
.s536-text-block strong { color: var(--s536-highlight); }
.s536-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.s536-list li {
  padding: 0.6rem 0 0.6rem 1.8rem; position: relative;
  font-size: 1.3rem; color: #ccc; line-height: 1.6rem;
}
.s536-list li::before {
  content: ''; position: absolute; left: 0; top: 1.1rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--s536-primary);
}

/* FAQ */
.s536-faq-item { margin-bottom: 1.2rem; }
.s536-faq-q {
  font-size: 1.4rem; font-weight: 700; color: var(--s536-accent);
  margin-bottom: 0.4rem;
}
.s536-faq-a { font-size: 1.3rem; color: #bbb; line-height: 1.6rem; }

/* Tables */
.s536-table-wrap { overflow-x: auto; margin: 1rem 0; }
.s536-table {
  width: 100%; border-collapse: collapse; font-size: 1.2rem;
}
.s536-table th {
  background: var(--s536-primary); color: #fff; padding: 0.8rem;
  text-align: left; font-weight: 700;
}
.s536-table td { padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--s536-border); color: #ccc; }
.s536-table tr:hover td { background: rgba(34,139,34,0.1); }

/* Winner showcase */
.s536-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem; background: var(--s536-card-bg); border-radius: 8px;
  margin-bottom: 0.6rem; border: 1px solid var(--s536-border);
}
.s536-winner-name { font-size: 1.2rem; color: var(--s536-highlight); font-weight: 600; }
.s536-winner-game { font-size: 1.1rem; color: #999; }
.s536-winner-amount { font-size: 1.3rem; color: var(--s536-accent); font-weight: 800; }

/* Testimonial */
.s536-testimonial {
  background: var(--s536-card-bg); border-radius: 10px;
  padding: 1.4rem; margin-bottom: 1rem; border-left: 4px solid var(--s536-primary);
}
.s536-testimonial-text { font-size: 1.3rem; color: #ccc; font-style: italic; margin-bottom: 0.6rem; }
.s536-testimonial-author { font-size: 1.2rem; color: var(--s536-highlight); font-weight: 600; }

/* Payment icons row */
.s536-payment-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin: 1rem 0; }
.s536-payment-icon {
  background: var(--s536-card-bg); border-radius: 8px; padding: 0.6rem 1rem;
  border: 1px solid var(--s536-border); font-size: 1.2rem; color: #ccc;
}

/* Utility */
.s536-mt-1 { margin-top: 1rem; }
.s536-mt-2 { margin-top: 2rem; }
.s536-mb-1 { margin-bottom: 1rem; }
.s536-text-center { text-align: center; }
.s536-text-accent { color: var(--s536-accent); }
.s536-text-highlight { color: var(--s536-highlight); }

/* Main content bottom padding for mobile nav */
main { padding-bottom: 0; }
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .s536-bottom-nav { display: none; }
}
