/*!
 * plus777 download free - Core stylesheet
 * Mobile-first layout (max-width 430px in mind), Flexbox driven.
 * All custom classes use the w63fc- prefix to avoid collisions.
 * Palette: #5F9EA0 | #2D2D2D | #000080 | #C9C9FF | #0000FF
 */
:root {
  --w63fc-primary: #5F9EA0;
  --w63fc-bg: #2D2D2D;
  --w63fc-deep: #000080;
  --w63fc-light: #C9C9FF;
  --w63fc-accent: #0000FF;
  --w63fc-gold: #FFD36E;
  --w63fc-text: #F4F6FF;
  --w63fc-muted: #B6BEE0;
  --w63fc-card: #1c1f33;
  --w63fc-border: rgba(201, 201, 255, 0.22);
  --w63fc-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  --w63fc-radius: 14px;
  --w63fc-radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', system-ui, sans-serif;
  background: radial-gradient(circle at top, #14182e 0%, var(--w63fc-bg) 55%, #0c0f1f 100%);
  color: var(--w63fc-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--w63fc-light); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Layout helpers ===== */
.w63fc-wrapper { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; position: relative; }
.w63fc-container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.4rem; }
.w63fc-hidden { display: none !important; }
.w63fc-text-center { text-align: center; }

/* ===== Header ===== */
.w63fc-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, rgba(0,0,128,0.92) 0%, rgba(45,45,45,0.95) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--w63fc-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.w63fc-header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0.6rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.w63fc-brand { display: flex; align-items: center; gap: 0.8rem; }
.w63fc-brand img { width: 30px; height: 30px; border-radius: 8px; }
.w63fc-brand-name { font-size: 1.6rem; font-weight: 800; color: var(--w63fc-light); line-height: 1.1; }
.w63fc-brand-name span { color: var(--w63fc-primary); display: block; font-size: 1.05rem; font-weight: 600; }

.w63fc-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.w63fc-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.2rem; border-radius: 30px; font-weight: 700; font-size: 1.25rem;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  min-height: 36px;
}
.w63fc-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.w63fc-btn-primary {
  background: linear-gradient(135deg, var(--w63fc-accent) 0%, var(--w63fc-deep) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(0,0,255,0.35);
}
.w63fc-btn-ghost {
  background: rgba(95,158,160,0.18); color: var(--w63fc-light);
  border: 1px solid rgba(201,201,255,0.35);
}
.w63fc-btn-gold {
  background: linear-gradient(135deg, #FFD36E 0%, #f5a623 100%);
  color: #2D2D2D; box-shadow: 0 4px 14px rgba(255,211,110,0.35);
}
.w63fc-icon-btn {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201,201,255,0.12); color: var(--w63fc-light);
  font-size: 1.7rem;
}

/* ===== Mobile menu drawer ===== */
.w63fc-menu-btn { display: inline-flex; }
.w63fc-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 80%; max-width: 320px;
  height: 100%; background: linear-gradient(180deg, #1a1d35 0%, #0e1023 100%);
  z-index: 9999; padding: 2.2rem 1.4rem; overflow-y: auto;
  transition: right .3s ease; border-left: 1px solid var(--w63fc-border);
}
.w63fc-mobile-menu.w63fc-menu-open { right: 0; }
.w63fc-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9998; display: none;
}
.w63fc-menu-overlay.w63fc-menu-open { display: block; }
.w63fc-menu-close {
  position: absolute; top: 1rem; right: 1.2rem; font-size: 2.2rem; color: var(--w63fc-light);
}
.w63fc-menu-title { font-size: 1.5rem; color: var(--w63fc-primary); margin-bottom: 1.2rem; font-weight: 700; }
.w63fc-menu-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.w63fc-menu-list a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1rem; border-radius: var(--w63fc-radius-sm);
  color: var(--w63fc-text); font-weight: 600; font-size: 1.35rem;
  border: 1px solid transparent; transition: all .2s ease;
}
.w63fc-menu-list a:hover, .w63fc-menu-list a:focus {
  background: rgba(95,158,160,0.18); border-color: var(--w63fc-border);
}
.w63fc-menu-list i { font-size: 1.6rem; color: var(--w63fc-primary); }

/* ===== Main / Sections ===== */
main { padding-top: 72px; padding-bottom: 90px; }
@media (max-width: 768px) { main { padding-bottom: 96px; } }
.w63fc-section { padding: 2.2rem 0; }
.w63fc-section-title {
  font-size: 1.7rem; font-weight: 800; color: var(--w63fc-light);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem;
}
.w63fc-section-title i { color: var(--w63fc-primary); }
.w63fc-section-sub { color: var(--w63fc-muted); margin-bottom: 1.2rem; font-size: 1.25rem; }

/* ===== Hero carousel ===== */
.w63fc-hero {
  position: relative; border-radius: var(--w63fc-radius); overflow: hidden;
  box-shadow: var(--w63fc-shadow); margin-bottom: 1.4rem;
}
.w63fc-hero-track { position: relative; height: 200px; }
.w63fc-hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease;
}
.w63fc-hero-slide.w63fc-hero-active { opacity: 1; }
.w63fc-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.w63fc-hero-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.2rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.w63fc-hero-title { font-size: 1.5rem; font-weight: 800; color: #fff; }
.w63fc-hero-cta {
  align-self: flex-start; padding: 0.55rem 1.1rem; border-radius: 30px;
  background: var(--w63fc-gold); color: #2D2D2D; font-weight: 700; font-size: 1.2rem;
}
.w63fc-hero-dots {
  position: absolute; bottom: 8px; right: 12px; display: flex; gap: 6px;
}
.w63fc-hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.45);
}
.w63fc-hero-dot.w63fc-dot-active { background: var(--w63fc-gold); }

/* ===== Filter chips ===== */
.w63fc-chips { display: flex; gap: 0.6rem; overflow-x: auto; padding: 0.6rem 0 1rem; }
.w63fc-chips::-webkit-scrollbar { display: none; }
.w63fc-chip {
  flex: 0 0 auto; padding: 0.55rem 1.1rem; border-radius: 20px;
  background: rgba(201,201,255,0.12); color: var(--w63fc-light);
  font-size: 1.2rem; font-weight: 600; border: 1px solid var(--w63fc-border);
  white-space: nowrap;
}
.w63fc-chip.w63fc-chip-active {
  background: linear-gradient(135deg, var(--w63fc-accent), var(--w63fc-primary));
  color: #fff; border-color: transparent;
}

/* ===== Game grid ===== */
.w63fc-game-block { margin-bottom: 1.8rem; }
.w63fc-game-block-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem;
}
.w63fc-game-block-title { font-size: 1.45rem; font-weight: 700; color: var(--w63fc-light); display: flex; align-items: center; gap: 0.5rem; }
.w63fc-game-block-title i { color: var(--w63fc-primary); }
.w63fc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
@media (min-width: 600px) { .w63fc-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .w63fc-grid { grid-template-columns: repeat(6, 1fr); } }
.w63fc-game-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--w63fc-card); border: 1px solid var(--w63fc-border);
  border-radius: var(--w63fc-radius-sm); padding: 0.6rem 0.4rem; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.w63fc-game-card:hover, .w63fc-game-card:focus {
  transform: translateY(-2px); border-color: var(--w63fc-primary);
  box-shadow: 0 6px 14px rgba(95,158,160,0.25);
}
.w63fc-game-card img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; margin-bottom: 0.4rem; }
.w63fc-game-card span { font-size: 1.05rem; color: var(--w63fc-text); line-height: 1.25; min-height: 2.5em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== Feature / promo cards ===== */
.w63fc-card {
  background: var(--w63fc-card); border: 1px solid var(--w63fc-border);
  border-radius: var(--w63fc-radius); padding: 1.2rem; box-shadow: var(--w63fc-shadow);
}
.w63fc-card-title { font-size: 1.4rem; color: var(--w63fc-light); font-weight: 700; margin-bottom: 0.6rem; }
.w63fc-feature-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.w63fc-feature-item {
  flex: 1 1 140px; background: rgba(95,158,160,0.10); padding: 1rem; border-radius: var(--w63fc-radius-sm);
  border: 1px solid var(--w63fc-border); display: flex; flex-direction: column; gap: 0.4rem;
}
.w63fc-feature-item i { color: var(--w63fc-primary); font-size: 1.8rem; }
.w63fc-feature-item h4 { font-size: 1.2rem; color: var(--w63fc-light); }
.w63fc-feature-item p { color: var(--w63fc-muted); font-size: 1.1rem; }

/* ===== RTP strip ===== */
.w63fc-rtp-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.w63fc-rtp-list li {
  display: flex; justify-content: space-between; padding: 0.6rem 0.8rem;
  background: rgba(0,0,128,0.25); border-radius: var(--w63fc-radius-sm); font-size: 1.15rem;
}
.w63fc-rtp-list span:last-child { color: var(--w63fc-gold); font-weight: 700; }

/* ===== Testimonials ===== */
.w63fc-testimonials { display: grid; gap: 0.8rem; }
.w63fc-testimonial {
  background: rgba(201,201,255,0.08); border-left: 3px solid var(--w63fc-primary);
  padding: 0.9rem 1rem; border-radius: var(--w63fc-radius-sm);
}
.w63fc-testimonial p { color: var(--w63fc-text); font-style: italic; }
.w63fc-testimonial small { color: var(--w63fc-muted); }

/* ===== Payment methods ===== */
.w63fc-payment-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.w63fc-payment {
  flex: 1 1 80px; max-width: 110px; text-align: center; padding: 0.8rem 0.4rem;
  background: rgba(255,255,255,0.06); border-radius: var(--w63fc-radius-sm); font-size: 1.05rem;
  border: 1px solid var(--w63fc-border); color: var(--w63fc-light);
}
.w63fc-payment i { font-size: 1.6rem; color: var(--w63fc-primary); display: block; margin-bottom: 0.3rem; }

/* ===== Winners strip ===== */
.w63fc-winner-row {
  display: flex; gap: 0.8rem; overflow-x: auto; padding-bottom: 0.5rem;
}
.w63fc-winner {
  flex: 0 0 auto; width: 150px; background: var(--w63fc-card);
  border: 1px solid var(--w63fc-border); border-radius: var(--w63fc-radius-sm); padding: 0.7rem;
}
.w63fc-winner-name { font-size: 1.15rem; font-weight: 700; color: var(--w63fc-light); }
.w63fc-winner-game { font-size: 1.05rem; color: var(--w63fc-muted); }
.w63fc-winner-amount { color: var(--w63fc-gold); font-weight: 800; font-size: 1.3rem; }

/* ===== CTA banner ===== */
.w63fc-cta-banner {
  background: linear-gradient(135deg, var(--w63fc-deep) 0%, var(--w63fc-accent) 100%);
  border-radius: var(--w63fc-radius); padding: 1.6rem 1.2rem; text-align: center;
  color: #fff; box-shadow: var(--w63fc-shadow); margin: 1.4rem 0;
}
.w63fc-cta-banner h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.w63fc-cta-banner p { color: var(--w63fc-light); margin-bottom: 1rem; }
.w63fc-cta-banner .w63fc-btn { font-size: 1.35rem; padding: 0.9rem 1.8rem; }

/* ===== FAQ / SEO content ===== */
.w63fc-faq-item {
  background: rgba(201,201,255,0.07); padding: 0.9rem 1rem; margin-bottom: 0.6rem;
  border-radius: var(--w63fc-radius-sm); border: 1px solid var(--w63fc-border);
}
.w63fc-faq-item h4 { color: var(--w63fc-primary); font-size: 1.25rem; margin-bottom: 0.3rem; }
.w63fc-faq-item p { color: var(--w63fc-text); font-size: 1.2rem; }
.w63fc-prose p { margin-bottom: 0.8rem; color: var(--w63fc-text); }
.w63fc-prose strong { color: var(--w63fc-light); }

/* ===== Footer ===== */
.w63fc-footer {
  background: linear-gradient(180deg, #0c0f1f 0%, #05060f 100%);
  padding: 2rem 0 1.4rem; border-top: 1px solid var(--w63fc-border); margin-top: 2rem;
}
.w63fc-footer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-bottom: 1.2rem;
}
.w63fc-footer-col h5 { color: var(--w63fc-primary); font-size: 1.3rem; margin-bottom: 0.6rem; }
.w63fc-footer-col ul { list-style: none; }
.w63fc-footer-col li { margin-bottom: 0.4rem; }
.w63fc-footer-col a { color: var(--w63fc-text); font-size: 1.15rem; }
.w63fc-footer-col a:hover { color: var(--w63fc-light); }
.w63fc-footer-promo { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.w63fc-footer-copy { text-align: center; color: var(--w63fc-muted); font-size: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--w63fc-border); }

/* ===== Mobile bottom nav ===== */
.w63fc-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,128,0.96) 0%, rgba(15,18,40,1) 100%);
  backdrop-filter: blur(10px); border-top: 1px solid var(--w63fc-border);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 62px; padding: 4px 2px; box-shadow: 0 -4px 14px rgba(0,0,0,0.4);
}
.w63fc-bottom-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-width: 60px; min-height: 54px; color: var(--w63fc-muted);
  font-size: 1rem; font-weight: 600; padding: 4px; transition: color .15s ease, transform .15s ease;
  border-radius: 10px;
}
.w63fc-bottom-nav-item i, .w63fc-bottom-nav-item span.material-icons-outlined,
.w63fc-bottom-nav-item ion-icon { font-size: 22px; }
.w63fc-bottom-nav-item ion-icon { transform: translateY(-1px); }
.w63fc-bottom-nav-item:hover, .w63fc-bottom-nav-item:focus { color: var(--w63fc-light); transform: translateY(-1px); }
.w63fc-bottom-nav-item.w63fc-nav-current { color: var(--w63fc-gold); }
.w63fc-bottom-nav-promo { color: var(--w63fc-gold); }

/* Back to top */
.w63fc-to-top {
  position: fixed; bottom: 76px; right: 16px; z-index: 1000;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--w63fc-primary); color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35); display: none;
}
.w63fc-no-scroll { overflow: hidden; }

/* ===== Reveal animation ===== */
.w63fc-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.w63fc-reveal.w63fc-revealed { opacity: 1; transform: translateY(0); }

/* ===== Desktop rules ===== */
@media (min-width: 769px) {
  .w63fc-bottom-nav { display: none; }
  .w63fc-to-top { display: flex; }
  main { padding-bottom: 40px; }
  .w63fc-wrapper { max-width: 1100px; padding: 0 2rem; }
  .w63fc-hero-track { height: 320px; }
  .w63fc-hero-title { font-size: 2rem; }
  .w63fc-grid { grid-template-columns: repeat(6, 1fr); }
  .w63fc-menu-btn { display: none; }
  .w63fc-footer-grid { grid-template-columns: repeat(4, 1fr); }
}
