/* ph22 link - style.css
   Mobile-first gaming website stylesheet.
   All custom classes use the "w85dd-" prefix to isolate the namespace.
   Palette: mint accent #98FB98 over deep navy #0E1621.
*/

:root {
  --w85dd-primary: #98FB98;
  --w85dd-primary-strong: #5fe0a0;
  --w85dd-bg: #0E1621;
  --w85dd-bg-alt: #14213a;
  --w85dd-bg-soft: #1b2c4d;
  --w85dd-text: #e8f4ff;
  --w85dd-text-muted: #9fb2cf;
  --w85dd-border: rgba(152, 251, 152, 0.18);
  --w85dd-gold: #ffd166;
  --w85dd-danger: #ff6b6b;
  --w85dd-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.45);
  --w85dd-radius: 1.2rem;
  --w85dd-radius-sm: 0.8rem;
  --w85dd-maxw: 430px;
}

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #16304e 0%, var(--w85dd-bg) 55%);
  color: var(--w85dd-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--w85dd-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.w85dd-container {
  width: 100%;
  max-width: var(--w85dd-maxw);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.w85dd-wrapper {
  width: 100%;
  max-width: var(--w85dd-maxw);
  margin: 0 auto;
  padding-bottom: 9rem;
}

/* ===== Header ===== */
.w85dd-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14, 22, 33, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--w85dd-border);
}
.w85dd-header-inner {
  max-width: var(--w85dd-maxw);
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.w85dd-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}
.w85dd-brand img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; }
.w85dd-brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--w85dd-primary);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.w85dd-brand-tag {
  font-size: 1.05rem;
  color: var(--w85dd-text-muted);
  font-weight: 500;
}
.w85dd-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.w85dd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.6rem;
  padding: 0 1.3rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.w85dd-btn:active { transform: scale(0.95); }
.w85dd-btn-primary {
  background: linear-gradient(135deg, var(--w85dd-primary) 0%, var(--w85dd-primary-strong) 100%);
  color: #07140e;
  box-shadow: 0 0.4rem 1.2rem rgba(152, 251, 152, 0.35);
}
.w85dd-btn-ghost {
  background: transparent;
  color: var(--w85dd-primary);
  border: 1.5px solid var(--w85dd-primary);
}
.w85dd-btn-sm { min-height: 3rem; padding: 0 0.9rem; font-size: 1.2rem; }

.w85dd-menu-btn {
  background: transparent;
  border: none;
  color: var(--w85dd-text);
  font-size: 2rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===== Mobile slide-down menu ===== */
.w85dd-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--w85dd-bg);
  border-bottom: 1px solid var(--w85dd-border);
  transform: translateY(-100%);
  transition: transform 0.28s ease;
  padding: 6rem 1.2rem 1.6rem;
  max-height: 80vh;
  overflow-y: auto;
}
.w85dd-mobile-menu.w85dd-menu-open { transform: translateY(0); }
.w85dd-mobile-menu a {
  display: block;
  padding: 1.1rem 1rem;
  border-radius: 0.8rem;
  color: var(--w85dd-text);
  font-size: 1.35rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.w85dd-mobile-menu a:hover { background: var(--w85dd-bg-soft); text-decoration: none; }
.w85dd-menu-heading {
  color: var(--w85dd-primary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 0.4rem 0.4rem;
}

.w85dd-no-scroll { overflow: hidden; }

/* ===== Hero / Carousel ===== */
.w85dd-main { padding-top: 6.2rem; }
.w85dd-hero { margin: 1.4rem 0 1.6rem; }
.w85dd-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--w85dd-radius);
  box-shadow: var(--w85dd-shadow);
  border: 1px solid var(--w85dd-border);
}
.w85dd-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.w85dd-carousel-slide {
  flex: 0 0 100%;
  position: relative;
}
.w85dd-carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.w85dd-carousel-cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(14, 22, 33, 0.72);
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid var(--w85dd-border);
}
.w85dd-carousel-cap strong { color: var(--w85dd-primary); font-size: 1.4rem; }
.w85dd-carousel-cap p { color: var(--w85dd-text-muted); font-size: 1.15rem; margin-top: 0.2rem; }
.w85dd-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 22, 33, 0.7);
  color: var(--w85dd-primary);
  border: 1px solid var(--w85dd-border);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}
.w85dd-carousel-arrow.prev { left: 0.6rem; }
.w85dd-carousel-arrow.next { right: 0.6rem; }
.w85dd-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 0;
}
.w85dd-carousel-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
}
.w85dd-carousel-dot.w85dd-dot-active { background: var(--w85dd-primary); }

/* ===== Section / titles ===== */
.w85dd-section { margin: 2.2rem 0; }
.w85dd-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.w85dd-h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--w85dd-text);
}
.w85dd-h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--w85dd-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.3;
}
.w85dd-h3 { font-size: 1.45rem; font-weight: 700; color: var(--w85dd-text); margin: 1rem 0 0.5rem; }
.w85dd-lead { color: var(--w85dd-text-muted); font-size: 1.25rem; }
.w85dd-more-link { font-size: 1.15rem; font-weight: 600; }

/* ===== CTA banner ===== */
.w85dd-cta {
  background: linear-gradient(135deg, #143a2c 0%, #1b2c4d 100%);
  border: 1px solid var(--w85dd-border);
  border-radius: var(--w85dd-radius);
  padding: 1.4rem;
  text-align: center;
  margin: 1.6rem 0;
}
.w85dd-cta h3 { font-size: 1.6rem; color: var(--w85dd-primary); margin-bottom: 0.4rem; }
.w85dd-cta p { color: var(--w85dd-text-muted); margin-bottom: 1rem; font-size: 1.2rem; }
.w85dd-promo-text {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--w85dd-primary);
  text-decoration: underline;
}

/* ===== Game grid ===== */
.w85dd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.w85dd-game-card {
  background: var(--w85dd-bg-alt);
  border: 1px solid var(--w85dd-border);
  border-radius: var(--w85dd-radius-sm);
  padding: 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.w85dd-game-card:hover {
  transform: translateY(-0.2rem);
  border-color: var(--w85dd-primary);
  box-shadow: 0 0.4rem 1rem rgba(152, 251, 152, 0.18);
  text-decoration: none;
}
.w85dd-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.6rem;
  margin-bottom: 0.4rem;
}
.w85dd-game-name {
  font-size: 1.05rem;
  color: var(--w85dd-text);
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
}
.w85dd-game-badge {
  display: inline-block;
  background: var(--w85dd-gold);
  color: #2a1f00;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.1rem 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.3rem;
}

/* ===== Cards / feature list ===== */
.w85dd-card {
  background: var(--w85dd-bg-alt);
  border: 1px solid var(--w85dd-border);
  border-radius: var(--w85dd-radius-sm);
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.9rem;
}
.w85dd-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.w85dd-feature-row:last-child { border-bottom: none; }
.w85dd-feature-icon {
  font-size: 1.8rem;
  color: var(--w85dd-primary);
  min-width: 2.4rem;
}
.w85dd-feature-title { font-size: 1.25rem; font-weight: 700; color: var(--w85dd-text); }
.w85dd-feature-desc { color: var(--w85dd-text-muted); font-size: 1.15rem; }

/* ===== RTP / stat table ===== */
.w85dd-stat-table { width: 100%; border-collapse: collapse; font-size: 1.15rem; }
.w85dd-stat-table th, .w85dd-stat-table td {
  padding: 0.7rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.w85dd-stat-table th { color: var(--w85dd-primary); font-weight: 700; }
.w85dd-stat-table td { color: var(--w85dd-text-muted); }
.w85dd-stat-table td.w85dd-strong { color: var(--w85dd-gold); font-weight: 700; }

/* ===== Testimonials ===== */
.w85dd-testi {
  background: var(--w85dd-bg-soft);
  border-left: 3px solid var(--w85dd-primary);
  border-radius: 0.6rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
}
.w85dd-testi p { color: var(--w85dd-text); font-style: italic; font-size: 1.15rem; }
.w85dd-testi cite { color: var(--w85dd-primary); font-size: 1.05rem; font-weight: 700; }

/* ===== Payment chips ===== */
.w85dd-chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.w85dd-chip {
  background: var(--w85dd-bg-soft);
  border: 1px solid var(--w85dd-border);
  border-radius: 2rem;
  padding: 0.5rem 0.9rem;
  font-size: 1.1rem;
  color: var(--w85dd-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== Winners ticker ===== */
.w85dd-winner {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
}
.w85dd-winner span:last-child { color: var(--w85dd-gold); font-weight: 700; }

/* ===== FAQ ===== */
.w85dd-faq { border: 1px solid var(--w85dd-border); border-radius: 0.8rem; overflow: hidden; margin-bottom: 0.7rem; }
.w85dd-faq summary {
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--w85dd-text);
  background: var(--w85dd-bg-alt);
  list-style: none;
}
.w85dd-faq summary::-webkit-details-marker { display: none; }
.w85dd-faq[open] summary { color: var(--w85dd-primary); }
.w85dd-faq-body { padding: 0.9rem 1rem; color: var(--w85dd-text-muted); font-size: 1.15rem; }

/* ===== Reveal animation ===== */
.w85dd-reveal { opacity: 0; transform: translateY(1.2rem); transition: opacity 0.5s ease, transform 0.5s ease; }
.w85dd-reveal.w85dd-revealed { opacity: 1; transform: translateY(0); }

/* ===== Footer ===== */
.w85dd-footer {
  background: #0a111c;
  border-top: 1px solid var(--w85dd-border);
  padding: 2rem 1.2rem 2.5rem;
  margin-top: 2rem;
}
.w85dd-footer p { color: var(--w85dd-text-muted); font-size: 1.15rem; margin-bottom: 0.8rem; }
.w85dd-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1.2rem;
}
.w85dd-footer-links a {
  background: var(--w85dd-bg-soft);
  border: 1px solid var(--w85dd-border);
  color: var(--w85dd-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.w85dd-footer-links a:hover { text-decoration: none; background: var(--w85dd-bg-alt); }
.w85dd-copy { color: var(--w85dd-text-muted); font-size: 1.05rem; }

/* ===== Mobile bottom nav ===== */
.w85dd-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 6rem;
  background: rgba(10, 17, 28, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--w85dd-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.3rem 0.2rem;
}
.w85dd-bottom-nav-btn {
  flex: 1;
  min-width: 6rem;
  min-height: 5.6rem;
  background: transparent;
  border: none;
  color: var(--w85dd-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 1.05rem;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}
.w85dd-bottom-nav-btn .material-icons,
.w85dd-bottom-nav-btn .fas,
.w85dd-bottom-nav-btn .far,
.w85dd-bottom-nav-btn ion-icon { font-size: 2.2rem; }
.w85dd-bottom-nav-btn ion-icon { font-size: 2.2rem; }
.w85dd-bottom-nav-btn span { font-size: 1.05rem; }
.w85dd-bottom-nav-btn:hover { color: var(--w85dd-primary); }
.w85dd-bottom-nav-btn:active { transform: scale(0.9); }
.w85dd-bottom-nav-btn.w85dd-active { color: var(--w85dd-primary); }
.w85dd-bottom-nav-btn.w85dd-nav-cta {
  color: #07140e;
  background: linear-gradient(135deg, var(--w85dd-primary) 0%, var(--w85dd-primary-strong) 100%);
  border-radius: 0.8rem;
  margin: 0.2rem;
}
.w85dd-bottom-nav-btn.w85dd-nav-cta span { font-weight: 800; }

/* ===== Responsive ===== */
@media (min-width: 769px) {
  .w85dd-bottom-nav { display: none; }
  body { background: var(--w85dd-bg); }
}
@media (max-width: 768px) {
  .w85dd-wrapper, .w85dd-main { padding-bottom: 8rem; }
}
@media (max-width: 430px) {
  .w85dd-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .w85dd-game-name { font-size: 1rem; }
  .w85dd-h1 { font-size: 2rem; }
  .w85dd-h2 { font-size: 1.6rem; }
  .w85dd-header-inner { padding: 0.7rem 1rem; }
  .w85dd-brand-name { font-size: 1.5rem; }
  .w85dd-btn { padding: 0 1rem; font-size: 1.2rem; }
}
@media (max-width: 360px) {
  .w85dd-grid { grid-template-columns: repeat(2, 1fr); }
}
