/**
 * amjili.click - Main Stylesheet
 * Class prefix: we575-
 * Color palette: #FFFFBA | #FFA500 | #0C0C0C | #FAFAD2 | #495057 | #F4A460
 * Mobile-first responsive design
 */

:root {
  --we575-primary: #FFA500;
  --we575-secondary: #F4A460;
  --we575-bg: #0C0C0C;
  --we575-bg-light: #1a1a1a;
  --we575-bg-card: #151515;
  --we575-text: #FAFAD2;
  --we575-text-muted: #FFFFBA;
  --we575-accent: #FFA500;
  --we575-accent2: #F4A460;
  --we575-border: #2a2a2a;
  --we575-dark-gray: #495057;
  --we575-success: #28a745;
  --we575-radius: 8px;
  --we575-radius-lg: 12px;
  --we575-shadow: 0 2px 12px rgba(0,0,0,0.4);
  --we575-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --we575-header-h: 56px;
  --we575-bottom-h: 60px;
}

/* 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: var(--we575-font);
  background: var(--we575-bg);
  color: var(--we575-text);
  font-size: 1.4rem;
  line-height: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--we575-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--we575-accent2); }
img { max-width: 100%; height: auto; display: block; }

/* ========== HEADER ========== */
.we575-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--we575-header-h);
  background: linear-gradient(135deg, #0C0C0C 0%, #1a1a0a 100%);
  border-bottom: 2px solid var(--we575-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(255,165,0,0.15);
}
.we575-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.we575-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.we575-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--we575-primary);
  letter-spacing: 0.5px;
}
.we575-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.we575-btn-register {
  background: linear-gradient(135deg, #FFA500, #F4A460);
  color: #0C0C0C;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: var(--we575-radius);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.we575-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(255,165,0,0.4);
}
.we575-btn-login {
  background: transparent;
  color: var(--we575-primary);
  border: 1.5px solid var(--we575-primary);
  padding: 0.45rem 1rem;
  border-radius: var(--we575-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.we575-btn-login:hover {
  background: var(--we575-primary);
  color: #0C0C0C;
}
.we575-menu-toggle {
  background: none;
  border: none;
  color: var(--we575-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* ========== MOBILE MENU ========== */
.we575-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.we575-overlay-active { display: block; }
.we575-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #111 0%, #0C0C0C 100%);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 6rem 0 2rem;
  overflow-y: auto;
  border-left: 2px solid var(--we575-primary);
}
.we575-menu-active { right: 0; }
.we575-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  color: var(--we575-text);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--we575-border);
  transition: background 0.2s, color 0.2s;
}
.we575-mobile-menu a:hover {
  background: rgba(255,165,0,0.1);
  color: var(--we575-primary);
}
.we575-mobile-menu .material-icons,
.we575-mobile-menu .fas,
.we575-mobile-menu .far { font-size: 2rem; color: var(--we575-primary); }

/* ========== MAIN CONTENT ========== */
.we575-main {
  padding-top: var(--we575-header-h);
  min-height: 100vh;
}
@media (max-width: 768px) {
  .we575-main { padding-bottom: 80px; }
}

/* ========== CAROUSEL ========== */
.we575-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/7;
  cursor: pointer;
}
.we575-slide {
  display: none;
  width: 100%;
  height: 100%;
}
.we575-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.we575-slide-active { display: block; }
.we575-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.we575-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.we575-dot-active { background: var(--we575-primary); }

/* ========== SECTIONS ========== */
.we575-section {
  padding: 2rem 1.2rem;
}
.we575-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--we575-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--we575-border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.we575-section-title .fas,
.we575-section-title .material-icons { font-size: 2rem; }

/* ========== GAME GRID ========== */
.we575-cat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--we575-secondary);
  margin: 1.2rem 0 0.8rem;
  padding-left: 0.4rem;
  border-left: 3px solid var(--we575-primary);
  padding-left: 0.8rem;
}
.we575-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
@media (min-width: 400px) {
  .we575-game-grid { grid-template-columns: repeat(5, 1fr); }
}
.we575-game-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s;
  border-radius: var(--we575-radius);
  overflow: hidden;
}
.we575-game-card:hover { transform: scale(1.05); }
.we575-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--we575-radius);
  border: 1px solid var(--we575-border);
}
.we575-game-card span {
  display: block;
  font-size: 1rem;
  color: var(--we575-text-muted);
  margin-top: 0.3rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========== CTA BUTTONS ========== */
.we575-cta {
  display: block;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #FFA500, #e69500);
  color: #0C0C0C;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: var(--we575-radius);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  margin: 1.5rem 0;
}
.we575-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,165,0,0.4);
}

/* ========== CONTENT CARDS ========== */
.we575-card {
  background: var(--we575-bg-card);
  border: 1px solid var(--we575-border);
  border-radius: var(--we575-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.we575-card h3 {
  font-size: 1.5rem;
  color: var(--we575-primary);
  margin-bottom: 0.8rem;
}
.we575-card p {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: var(--we575-text);
  margin-bottom: 0.6rem;
}

/* ========== TESTIMONIALS ========== */
.we575-testimonial {
  background: var(--we575-bg-card);
  border-left: 3px solid var(--we575-primary);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border-radius: 0 var(--we575-radius) var(--we575-radius) 0;
}
.we575-testimonial .we575-name {
  color: var(--we575-primary);
  font-weight: 600;
  font-size: 1.2rem;
}
.we575-testimonial .we575-stars {
  color: #FFD700;
  font-size: 1.1rem;
}
.we575-testimonial p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin-top: 0.4rem;
  color: var(--we575-text-muted);
}

/* ========== PAYMENT ========== */
.we575-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.we575-payment-item {
  background: var(--we575-bg-light);
  border: 1px solid var(--we575-border);
  border-radius: var(--we575-radius);
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  color: var(--we575-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========== WINNER SHOWCASE ========== */
.we575-winner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--we575-border);
  font-size: 1.2rem;
}
.we575-winner-row:last-child { border-bottom: none; }
.we575-winner-name { color: var(--we575-primary); font-weight: 600; }
.we575-winner-amount { color: #28a745; font-weight: 700; }

/* ========== FOOTER ========== */
.we575-footer {
  background: linear-gradient(180deg, #0C0C0C, #050505);
  border-top: 2px solid var(--we575-primary);
  padding: 2rem 1.2rem 1rem;
  margin-top: 2rem;
}
.we575-footer-brand {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: var(--we575-text-muted);
  margin-bottom: 1.5rem;
}
.we575-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.we575-footer-links a {
  background: var(--we575-bg-light);
  border: 1px solid var(--we575-border);
  border-radius: var(--we575-radius);
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  color: var(--we575-text);
  transition: border-color 0.2s, color 0.2s;
}
.we575-footer-links a:hover {
  border-color: var(--we575-primary);
  color: var(--we575-primary);
}
.we575-footer-copy {
  text-align: center;
  font-size: 1.1rem;
  color: var(--we575-dark-gray);
  padding-top: 1rem;
  border-top: 1px solid var(--we575-border);
}

/* ========== BOTTOM NAV ========== */
.we575-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--we575-bottom-h);
  background: linear-gradient(180deg, #1a1a0a, #0C0C0C);
  border-top: 2px solid var(--we575-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(255,165,0,0.1);
}
.we575-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 54px;
  background: none;
  border: none;
  color: var(--we575-text-muted);
  cursor: pointer;
  transition: transform 0.15s, color 0.15s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.we575-nav-btn:hover,
.we575-nav-btn:focus { color: var(--we575-primary); transform: scale(1.08); }
.we575-nav-btn .material-icons,
.we575-nav-btn .fas,
.we575-nav-btn .far,
.we575-nav-btn .fad,
.we575-nav-btn ion-icon { font-size: 2.4rem; }
.we575-nav-btn span {
  font-size: 1rem;
  margin-top: 0.2rem;
  font-weight: 500;
}
.we575-nav-active { color: var(--we575-primary) !important; }
.we575-nav-active .material-icons,
.we575-nav-active .fas,
.we575-nav-active .far { color: var(--we575-primary); }

@media (min-width: 769px) {
  .we575-bottom-nav { display: none; }
  .we575-main { padding-bottom: 0; }
}

/* ========== RESPONSIVE ========== */
.we575-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 769px) {
  .we575-container { max-width: 768px; }
  .we575-game-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ========== UTILITIES ========== */
.we575-text-center { text-align: center; }
.we575-text-accent { color: var(--we575-primary); }
.we575-mt-1 { margin-top: 1rem; }
.we575-mb-1 { margin-bottom: 1rem; }
.we575-mb-2 { margin-bottom: 2rem; }
.we575-hidden { display: none; }

/* Promotional inline link style */
.we575-promo-link {
  color: var(--we575-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.we575-promo-link:hover { color: var(--we575-accent2); }

/* RTP bar styling */
.we575-rtp-bar {
  background: var(--we575-bg-light);
  border-radius: var(--we575-radius);
  overflow: hidden;
  height: 8px;
  margin: 0.3rem 0;
}
.we575-rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFA500, #28a745);
  border-radius: var(--we575-radius);
  transition: width 0.3s;
}
