/* =========================================================
   phmacao apk - Core base stylesheet
   Prefix: w25a6-
   Palette: #1B263B | #800080 | #DA70D6 | #66CDAA | #9400D3
   Mobile-first, max-width 430px
   ========================================================= */

:root {
  --w25a6-bg: #1B263B;
  --w25a6-bg-soft: #21304d;
  --w25a6-bg-deep: #141d2e;
  --w25a6-primary: #800080;
  --w25a6-accent: #DA70D6;
  --w25a6-mint: #66CDAA;
  --w25a6-violet: #9400D3;
  --w25a6-text: #f5f3fb;
  --w25a6-text-muted: #b9b4d3;
  --w25a6-border: rgba(218, 112, 214, 0.22);
  --w25a6-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
  --w25a6-radius: 14px;
  --w25a6-radius-sm: 10px;
  --w25a6-gradient: linear-gradient(135deg, #9400D3 0%, #800080 50%, #DA70D6 100%);
  --w25a6-gradient-mint: linear-gradient(135deg, #66CDAA 0%, #9400D3 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--w25a6-bg);
  color: var(--w25a6-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

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

a {
  color: var(--w25a6-mint);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--w25a6-accent);
}

.w25a6-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}

.w25a6-wrapper {
  padding: 18px 14px;
}

/* ---------- Header ---------- */
.w25a6-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, rgba(20, 29, 46, 0.98), rgba(27, 38, 59, 0.92));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--w25a6-border);
  z-index: 1000;
  box-shadow: var(--w25a6-shadow);
}

.w25a6-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  gap: 8px;
}

.w25a6-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.w25a6-logo img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
}

.w25a6-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: var(--w25a6-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

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

.w25a6-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  min-height: 36px;
}

.w25a6-btn-login {
  background: transparent;
  color: var(--w25a6-text);
  border: 1.5px solid var(--w25a6-accent);
}

.w25a6-btn-register {
  background: var(--w25a6-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(148, 0, 211, 0.4);
}

.w25a6-btn:hover {
  transform: translateY(-1px);
}

.w25a6-btn-register:hover {
  box-shadow: 0 6px 18px rgba(218, 112, 214, 0.55);
}

.w25a6-menu-btn {
  background: transparent;
  border: none;
  color: var(--w25a6-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile slide menu ---------- */
.w25a6-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--w25a6-bg-deep);
  z-index: 9999;
  padding: 70px 16px 30px;
  transition: right 0.3s ease;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.w25a6-mobile-menu.w25a6-open {
  right: 0;
}

.w25a6-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: none;
}

.w25a6-menu-overlay.w25a6-open {
  display: block;
}

.w25a6-mobile-menu a {
  display: block;
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: var(--w25a6-radius-sm);
  color: var(--w25a6-text);
  font-size: 1.45rem;
  font-weight: 600;
  background: var(--w25a6-bg-soft);
  border: 1px solid var(--w25a6-border);
}

.w25a6-mobile-menu a:hover {
  background: var(--w25a6-primary);
  color: #fff;
}

.w25a6-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--w25a6-text);
  font-size: 2.2rem;
  cursor: pointer;
}

/* ---------- Hero / Carousel ---------- */
.w25a6-hero {
  margin-top: 58px;
  padding: 14px 0 0;
}

.w25a6-carousel {
  position: relative;
  border-radius: var(--w25a6-radius);
  overflow: hidden;
  box-shadow: var(--w25a6-shadow);
  margin: 0 14px;
}

.w25a6-slides {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.w25a6-slides::-webkit-scrollbar {
  display: none;
}

.w25a6-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  cursor: pointer;
}

.w25a6-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.w25a6-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(20, 29, 46, 0.95));
  color: #fff;
}

.w25a6-slide-overlay h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.w25a6-slide-overlay p {
  font-size: 1.25rem;
  color: var(--w25a6-mint);
  font-weight: 600;
}

.w25a6-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 2px;
}

.w25a6-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(218, 112, 214, 0.35);
  border: none;
  cursor: pointer;
}

.w25a6-dot.w25a6-active {
  background: var(--w25a6-accent);
  width: 18px;
  border-radius: 999px;
}

/* ---------- Sections ---------- */
.w25a6-section {
  padding: 22px 14px;
}

.w25a6-section-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--w25a6-text);
}

.w25a6-section-title::before {
  content: "";
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: var(--w25a6-gradient);
  display: inline-block;
}

.w25a6-section-title small {
  font-size: 1.2rem;
  color: var(--w25a6-text-muted);
  font-weight: 500;
  margin-left: auto;
}

.w25a6-intro-text {
  color: var(--w25a6-text-muted);
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.7rem;
}

.w25a6-intro-text strong {
  color: var(--w25a6-mint);
}

/* ---------- Game grid ---------- */
.w25a6-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.w25a6-game-card {
  background: var(--w25a6-bg-soft);
  border: 1px solid var(--w25a6-border);
  border-radius: var(--w25a6-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.w25a6-game-card:hover {
  transform: translateY(-3px);
  border-color: var(--w25a6-accent);
  box-shadow: 0 6px 18px rgba(218, 112, 214, 0.3);
}

.w25a6-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0e1524;
}

.w25a6-game-card-name {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 6px 4px;
  color: var(--w25a6-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Cards / Feature blocks ---------- */
.w25a6-card {
  background: var(--w25a6-bg-soft);
  border: 1px solid var(--w25a6-border);
  border-radius: var(--w25a6-radius);
  padding: 14px;
  margin-bottom: 12px;
}

.w25a6-card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--w25a6-accent);
}

.w25a6-card p {
  color: var(--w25a6-text-muted);
  font-size: 1.35rem;
  line-height: 1.65rem;
}

.w25a6-card ul {
  list-style: none;
  margin-top: 6px;
}

.w25a6-card ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--w25a6-text-muted);
  font-size: 1.32rem;
  border-bottom: 1px dashed rgba(218, 112, 214, 0.15);
}

.w25a6-card ul li:last-child {
  border-bottom: none;
}

.w25a6-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--w25a6-mint);
  font-size: 1.1rem;
}

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

.w25a6-feature-item {
  background: var(--w25a6-bg-soft);
  border: 1px solid var(--w25a6-border);
  border-radius: var(--w25a6-radius-sm);
  padding: 12px;
  text-align: center;
}

.w25a6-feature-item .w25a6-icon {
  font-size: 2.4rem;
  margin-bottom: 6px;
  background: var(--w25a6-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.w25a6-feature-item h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--w25a6-text);
}

.w25a6-feature-item p {
  font-size: 1.2rem;
  color: var(--w25a6-text-muted);
  line-height: 1.5rem;
}

/* ---------- Steps ---------- */
.w25a6-steps {
  display: grid;
  gap: 10px;
}

.w25a6-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--w25a6-bg-soft);
  border: 1px solid var(--w25a6-border);
  border-radius: var(--w25a6-radius-sm);
  padding: 12px;
}

.w25a6-step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--w25a6-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w25a6-step-body h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.w25a6-step-body p {
  font-size: 1.25rem;
  color: var(--w25a6-text-muted);
  line-height: 1.55rem;
}

/* ---------- RTP table ---------- */
.w25a6-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
  background: var(--w25a6-bg-soft);
  border-radius: var(--w25a6-radius-sm);
  overflow: hidden;
}

.w25a6-rtp-table th,
.w25a6-rtp-table td {
  padding: 9px 10px;
  text-align: left;
  border-bottom: 1px solid var(--w25a6-border);
}

.w25a6-rtp-table th {
  background: var(--w25a6-primary);
  color: #fff;
  font-weight: 700;
}

.w25a6-rtp-table td:last-child {
  color: var(--w25a6-mint);
  font-weight: 700;
}

/* ---------- Testimonial ---------- */
.w25a6-testimonials {
  display: grid;
  gap: 10px;
}

.w25a6-testimonial {
  background: var(--w25a6-bg-soft);
  border-left: 3px solid var(--w25a6-mint);
  border-radius: var(--w25a6-radius-sm);
  padding: 12px;
}

.w25a6-testimonial p {
  font-size: 1.3rem;
  color: var(--w25a6-text);
  font-style: italic;
  margin-bottom: 6px;
}

.w25a6-testimonial cite {
  font-size: 1.2rem;
  color: var(--w25a6-accent);
  font-weight: 700;
}

/* ---------- Payment ---------- */
.w25a6-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.w25a6-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--w25a6-bg-soft);
  border: 1px solid var(--w25a6-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 1.25rem;
  color: var(--w25a6-text);
  font-weight: 600;
}

.w25a6-pay-chip i {
  color: var(--w25a6-mint);
}

/* ---------- CTA ---------- */
.w25a6-cta {
  background: var(--w25a6-gradient);
  border-radius: var(--w25a6-radius);
  padding: 18px;
  text-align: center;
  margin: 14px 0;
  box-shadow: 0 8px 22px rgba(148, 0, 211, 0.4);
}

.w25a6-cta h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.w25a6-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.w25a6-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--w25a6-violet);
  font-weight: 800;
  font-size: 1.5rem;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
}

.w25a6-cta-btn:hover {
  background: var(--w25a6-mint);
  color: #141d2e;
}

.w25a6-promo-link {
  color: var(--w25a6-accent);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
}

/* ---------- Winners ---------- */
.w25a6-winners {
  display: grid;
  gap: 6px;
}

.w25a6-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--w25a6-bg-soft);
  border: 1px solid var(--w25a6-border);
  border-radius: var(--w25a6-radius-sm);
  padding: 8px 12px;
  font-size: 1.25rem;
}

.w25a6-winner span:first-child {
  color: var(--w25a6-text);
  font-weight: 600;
}

.w25a6-winner span:last-child {
  color: var(--w25a6-mint);
  font-weight: 800;
}

/* ---------- FAQ ---------- */
.w25a6-faq-item {
  background: var(--w25a6-bg-soft);
  border: 1px solid var(--w25a6-border);
  border-radius: var(--w25a6-radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.w25a6-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--w25a6-text);
  cursor: pointer;
}

.w25a6-faq-q i {
  color: var(--w25a6-accent);
  transition: transform 0.2s ease;
}

.w25a6-faq-a {
  padding: 0 12px 12px;
  font-size: 1.28rem;
  color: var(--w25a6-text-muted);
  line-height: 1.6rem;
  display: none;
}

.w25a6-faq-item.w25a6-open .w25a6-faq-a {
  display: block;
}

.w25a6-faq-item.w25a6-open .w25a6-faq-q i {
  transform: rotate(180deg);
}

/* ---------- Footer ---------- */
.w25a6-footer {
  background: var(--w25a6-bg-deep);
  border-top: 1px solid var(--w25a6-border);
  padding: 24px 14px 100px;
  margin-top: 20px;
}

.w25a6-footer-brand {
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--w25a6-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.w25a6-footer p {
  color: var(--w25a6-text-muted);
  font-size: 1.28rem;
  line-height: 1.6rem;
  margin-bottom: 14px;
}

.w25a6-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.w25a6-footer-links a {
  font-size: 1.25rem;
  color: var(--w25a6-text-muted);
  padding: 4px 0;
}

.w25a6-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.w25a6-footer-promo button {
  flex: 1 1 45%;
  background: var(--w25a6-gradient);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.w25a6-copyright {
  border-top: 1px solid var(--w25a6-border);
  padding-top: 12px;
  font-size: 1.18rem;
  color: var(--w25a6-text-muted);
  text-align: center;
}

/* ---------- Bottom nav (mobile only) ---------- */
.w25a6-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: linear-gradient(180deg, rgba(33, 48, 77, 0.98), rgba(20, 29, 46, 1));
  border-top: 1px solid var(--w25a6-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.45);
}

.w25a6-bottom-nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--w25a6-text-muted);
  font-size: 1rem;
  font-weight: 600;
  min-height: 60px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.w25a6-bottom-nav-btn i,
.w25a6-bottom-nav-btn span.material-icons-outlined {
  font-size: 22px;
}

.w25a6-bottom-nav-btn.active {
  color: var(--w25a6-accent);
}

.w25a6-bottom-nav-btn.active::before {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: var(--w25a6-gradient);
}

.w25a6-bottom-nav-btn:active {
  transform: scale(0.92);
}

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  body {
    max-width: 430px;
    border-left: 1px solid rgba(218, 112, 214, 0.1);
    border-right: 1px solid rgba(218, 112, 214, 0.1);
    min-height: 100vh;
  }

  .w25a6-bottom-nav {
    display: none;
  }

  .w25a6-footer {
    padding-bottom: 30px;
  }
}

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