/**
 * 444ck.click - Layout Stylesheet
 * All classes use prefix: w9c00-
 * Color palette: #90EE90 | #00FA9A | #DEE2E6 | #1C2833 | #7FFF00 | #D4AF37
 */

/* ===== CSS Variables ===== */
:root {
  --w9c00-primary: #00FA9A;
  --w9c00-secondary: #7FFF00;
  --w9c00-accent: #D4AF37;
  --w9c00-bg: #1C2833;
  --w9c00-bg-light: #2C3E50;
  --w9c00-bg-card: #1A252F;
  --w9c00-text: #DEE2E6;
  --w9c00-text-light: #90EE90;
  --w9c00-border: #34495E;
  --w9c00-font-size: 62.5%;
  --w9c00-radius: 8px;
  --w9c00-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--w9c00-font-size); scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--w9c00-bg);
  color: var(--w9c00-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--w9c00-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--w9c00-text-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== Header ===== */
.w9c00-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #1C2833 0%, #2C3E50 100%);
  border-bottom: 2px solid var(--w9c00-primary);
  max-width: 430px; margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.w9c00-header-left {
  display: flex; align-items: center; gap: 0.6rem;
}
.w9c00-logo {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--w9c00-accent);
}
.w9c00-site-name {
  font-size: 1.6rem; font-weight: 700; color: var(--w9c00-primary);
  letter-spacing: 0.5px;
}
.w9c00-header-right {
  display: flex; align-items: center; gap: 0.5rem;
}
.w9c00-btn-register, .w9c00-btn-login {
  padding: 0.5rem 1.2rem; border-radius: 20px; border: none;
  font-size: 1.2rem; font-weight: 600; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.w9c00-btn-register {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #1C2833;
}
.w9c00-btn-login {
  background: transparent; color: var(--w9c00-primary);
  border: 1.5px solid var(--w9c00-primary);
}
.w9c00-btn-register:hover, .w9c00-btn-login:hover {
  transform: scale(1.05); box-shadow: 0 2px 8px rgba(0,250,154,0.3);
}
.w9c00-menu-toggle {
  background: none; border: none; color: var(--w9c00-primary);
  font-size: 2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center;
}

/* ===== Mobile Menu ===== */
.w9c00-mobile-menu {
  display: none; max-height: 0; overflow: hidden;
  position: fixed; top: 52px; left: 0; right: 0; z-index: 9999;
  background: #1A252F; border-bottom: 2px solid var(--w9c00-primary);
  max-width: 430px; margin: 0 auto;
  transition: max-height 0.3s ease;
}
.w9c00-mobile-menu a {
  display: block; padding: 1rem 1.5rem; color: var(--w9c00-text);
  font-size: 1.3rem; border-bottom: 1px solid var(--w9c00-border);
  transition: background 0.2s, color 0.2s;
}
.w9c00-mobile-menu a:hover {
  background: var(--w9c00-bg-light); color: var(--w9c00-primary);
}

/* ===== Main Content ===== */
.w9c00-main {
  padding-top: 56px;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .w9c00-main { padding-bottom: 80px; }
}

/* ===== Carousel ===== */
.w9c00-carousel {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 0 0 var(--w9c00-radius) var(--w9c00-radius);
}
.w9c00-slide {
  display: none; width: 100%; cursor: pointer;
}
.w9c00-slide img {
  width: 100%; height: 180px; object-fit: cover;
}
.w9c00-carousel-dots {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 6px;
}
.w9c00-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  border: none; transition: background 0.3s;
}
.w9c00-dot-active { background: var(--w9c00-accent); }

/* ===== Section ===== */
.w9c00-section {
  padding: 1.5rem 1rem;
}
.w9c00-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--w9c00-primary);
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--w9c00-border);
}
.w9c00-section-title .w9c00-accent { color: var(--w9c00-accent); }

/* ===== Game Grid ===== */
.w9c00-category-label {
  font-size: 1.5rem; font-weight: 600; color: var(--w9c00-accent);
  margin: 1.2rem 0 0.8rem; padding-left: 0.5rem;
  border-left: 3px solid var(--w9c00-primary);
}
.w9c00-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem; padding: 0.3rem;
}
.w9c00-game-item {
  text-align: center; cursor: pointer;
  transition: transform 0.2s;
  padding: 0.4rem; border-radius: var(--w9c00-radius);
  background: var(--w9c00-bg-card);
  border: 1px solid var(--w9c00-border);
}
.w9c00-game-item:hover { transform: scale(1.05); }
.w9c00-game-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 6px; margin-bottom: 0.3rem;
}
.w9c00-game-name {
  font-size: 1rem; color: var(--w9c00-text);
  line-height: 1.2rem; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}

/* ===== Content Cards ===== */
.w9c00-card {
  background: var(--w9c00-bg-card); border-radius: var(--w9c00-radius);
  border: 1px solid var(--w9c00-border); padding: 1.2rem;
  margin-bottom: 1rem; box-shadow: var(--w9c00-shadow);
}
.w9c00-card h3 {
  font-size: 1.5rem; color: var(--w9c00-primary); margin-bottom: 0.6rem;
}
.w9c00-card p {
  font-size: 1.2rem; line-height: 1.6rem; color: var(--w9c00-text);
  margin-bottom: 0.5rem;
}

/* ===== CTA Buttons ===== */
.w9c00-cta {
  display: inline-block; padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--w9c00-accent), #FFD700);
  color: #1C2833; font-size: 1.4rem; font-weight: 700;
  border-radius: 25px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.w9c00-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}
.w9c00-cta-outline {
  display: inline-block; padding: 0.8rem 2rem;
  background: transparent; color: var(--w9c00-primary);
  font-size: 1.3rem; font-weight: 600;
  border: 2px solid var(--w9c00-primary); border-radius: 25px;
  cursor: pointer; transition: all 0.2s;
}
.w9c00-cta-outline:hover {
  background: var(--w9c00-primary); color: var(--w9c00-bg);
}

/* ===== Promo Text Link ===== */
.w9c00-promo-link {
  color: var(--w9c00-accent); font-weight: 700;
  text-decoration: underline; cursor: pointer;
  transition: color 0.2s;
}
.w9c00-promo-link:hover { color: #FFD700; }

/* ===== Feature List ===== */
.w9c00-feature-list {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.w9c00-feature-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.8rem; background: var(--w9c00-bg-light);
  border-radius: var(--w9c00-radius); border-left: 3px solid var(--w9c00-primary);
}
.w9c00-feature-icon {
  font-size: 2rem; color: var(--w9c00-primary); flex-shrink: 0;
}
.w9c00-feature-text h4 {
  font-size: 1.3rem; color: var(--w9c00-text-light); margin-bottom: 0.3rem;
}
.w9c00-feature-text p {
  font-size: 1.1rem; color: var(--w9c00-text); line-height: 1.4rem;
}

/* ===== RTP Table ===== */
.w9c00-rtp-table {
  width: 100%; border-collapse: collapse; font-size: 1.1rem;
}
.w9c00-rtp-table th {
  background: var(--w9c00-bg-light); color: var(--w9c00-primary);
  padding: 0.6rem; text-align: left; font-size: 1.1rem;
  border-bottom: 2px solid var(--w9c00-accent);
}
.w9c00-rtp-table td {
  padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--w9c00-border);
  color: var(--w9c00-text);
}
.w9c00-rtp-bar {
  height: 6px; border-radius: 3px; background: var(--w9c00-border);
  overflow: hidden;
}
.w9c00-rtp-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--w9c00-primary), var(--w9c00-secondary));
}

/* ===== Winner Showcase ===== */
.w9c00-winner-row {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--w9c00-border);
}
.w9c00-winner-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--w9c00-bg-light); display: flex;
  align-items: center; justify-content: center;
  color: var(--w9c00-accent); font-size: 1.4rem; font-weight: 700;
}
.w9c00-winner-info { flex: 1; }
.w9c00-winner-name { font-size: 1.1rem; color: var(--w9c00-text-light); }
.w9c00-winner-game { font-size: 1rem; color: #888; }
.w9c00-winner-amount {
  font-size: 1.3rem; font-weight: 700; color: var(--w9c00-accent);
}

/* ===== Testimonial ===== */
.w9c00-testimonial {
  padding: 1rem; background: var(--w9c00-bg-light);
  border-radius: var(--w9c00-radius); margin-bottom: 0.8rem;
  border-left: 3px solid var(--w9c00-accent);
}
.w9c00-testimonial-text {
  font-size: 1.1rem; line-height: 1.5rem; color: var(--w9c00-text);
  font-style: italic; margin-bottom: 0.5rem;
}
.w9c00-testimonial-author {
  font-size: 1rem; color: var(--w9c00-primary); font-weight: 600;
}

/* ===== Payment Icons ===== */
.w9c00-payment-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
}
.w9c00-payment-item {
  background: var(--w9c00-bg-light); padding: 0.5rem 1rem;
  border-radius: var(--w9c00-radius); font-size: 1.1rem;
  color: var(--w9c00-text); border: 1px solid var(--w9c00-border);
}

/* ===== Footer ===== */
.w9c00-footer {
  background: var(--w9c00-bg-card); padding: 2rem 1rem 1rem;
  border-top: 2px solid var(--w9c00-border);
  text-align: center;
}
.w9c00-footer-brand {
  font-size: 1.2rem; color: var(--w9c00-text); line-height: 1.5rem;
  margin-bottom: 1rem;
}
.w9c00-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin-bottom: 1rem;
}
.w9c00-footer-links a {
  padding: 0.4rem 0.8rem; background: var(--w9c00-bg-light);
  border-radius: 15px; font-size: 1rem; color: var(--w9c00-text);
  border: 1px solid var(--w9c00-border); transition: all 0.2s;
}
.w9c00-footer-links a:hover {
  color: var(--w9c00-primary); border-color: var(--w9c00-primary);
}
.w9c00-footer-copy {
  font-size: 1rem; color: #666; margin-top: 1rem;
}

/* ===== Bottom Navigation ===== */
.w9c00-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #2C3E50, #1C2833);
  border-top: 2px solid var(--w9c00-primary);
  max-width: 430px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; padding: 0 0.3rem;
}
.w9c00-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: var(--w9c00-text);
  cursor: pointer; transition: all 0.2s; border-radius: 8px;
  padding: 0.3rem;
}
.w9c00-bottom-nav-btn:hover, .w9c00-nav-active {
  color: var(--w9c00-primary); background: rgba(0,250,154,0.1);
  transform: scale(1.08);
}
.w9c00-bottom-nav-btn i,
.w9c00-bottom-nav-btn .material-icons,
.w9c00-bottom-nav-btn ion-icon,
.w9c00-bottom-nav-btn bi {
  font-size: 22px; margin-bottom: 2px;
}
.w9c00-nav-label {
  font-size: 10px; line-height: 1.2rem;
}
@media (min-width: 769px) {
  .w9c00-bottom-nav { display: none; }
}

/* ===== Help Page Styles ===== */
.w9c00-help-content {
  padding: 1rem;
}
.w9c00-help-content h2 {
  font-size: 1.6rem; color: var(--w9c00-primary); margin: 1.2rem 0 0.6rem;
}
.w9c00-help-content h3 {
  font-size: 1.4rem; color: var(--w9c00-text-light); margin: 1rem 0 0.5rem;
}
.w9c00-help-content p {
  font-size: 1.2rem; line-height: 1.6rem; margin-bottom: 0.8rem;
  color: var(--w9c00-text);
}
.w9c00-faq-item {
  background: var(--w9c00-bg-card); border-radius: var(--w9c00-radius);
  padding: 1rem; margin-bottom: 0.8rem; border: 1px solid var(--w9c00-border);
}
.w9c00-faq-q {
  font-size: 1.3rem; font-weight: 600; color: var(--w9c00-accent);
  margin-bottom: 0.4rem;
}
.w9c00-faq-a {
  font-size: 1.1rem; color: var(--w9c00-text); line-height: 1.5rem;
}

/* ===== Utilities ===== */
.w9c00-text-center { text-align: center; }
.w9c00-mt-1 { margin-top: 0.8rem; }
.w9c00-mt-2 { margin-top: 1.6rem; }
.w9c00-mb-1 { margin-bottom: 0.8rem; }
.w9c00-mb-2 { margin-bottom: 1.6rem; }
.w9c00-p-1 { padding: 0.8rem; }
.w9c00-flex-center {
  display: flex; justify-content: center; align-items: center;
}
.w9c00-highlight {
  color: var(--w9c00-accent); font-weight: 700;
}

/* ===== Partner Logos ===== */
.w9c00-partner-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin: 0.8rem 0;
}
.w9c00-partner-logo {
  padding: 0.3rem 0.7rem; background: var(--w9c00-bg-light);
  border-radius: 4px; font-size: 1rem; color: #999;
  border: 1px solid var(--w9c00-border);
}

/* ===== Desktop navigation ===== */
@media (min-width: 769px) {
  .w9c00-menu-toggle { display: none; }
  .w9c00-desktop-nav {
    display: flex !important; gap: 1rem; align-items: center;
  }
  .w9c00-desktop-nav a {
    color: var(--w9c00-text); font-size: 1.2rem;
    padding: 0.3rem 0.6rem; transition: color 0.2s;
  }
  .w9c00-desktop-nav a:hover { color: var(--w9c00-primary); }
}
@media (max-width: 768px) {
  .w9c00-desktop-nav { display: none; }
}

/* ===== App Download CTA ===== */
.w9c00-app-cta {
  background: linear-gradient(135deg, #1C2833, #2C3E50);
  border: 1px solid var(--w9c00-primary);
  border-radius: var(--w9c00-radius); padding: 1.5rem;
  text-align: center;
}
.w9c00-app-cta h3 {
  color: var(--w9c00-primary); font-size: 1.5rem; margin-bottom: 0.5rem;
}
.w9c00-app-cta p {
  color: var(--w9c00-text); font-size: 1.1rem; margin-bottom: 1rem;
}
