/* ============================================================
 * dddph.click - design.css
 * All custom classes use the "v751-" prefix.
 * Palette: #D3D3D3 | #708090 | #A9A9A9 | #34495E | #FFEBCD | #CCCCCC
 * Dark colors = backgrounds, light colors = text.
 * Mobile-first; root font 62.5% so 1rem = 10px.
 * ============================================================ */

:root {
  --v751-bg: #34495E;
  --v751-bg-deep: #2b3a4a;
  --v751-bg-soft: #3e5266;
  --v751-slate: #708090;
  --v751-gray: #A9A9A9;
  --v751-light: #D3D3D3;
  --v751-cream: #FFEBCD;
  --v751-line: #CCCCCC;
  --v751-text: #FFEBCD;
  --v751-muted: #CCCCCC;
  --v751-primary: #FFEBCD;
  --v751-accent: #708090;
  --v751-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  --v751-radius: 10px;
  --v751-radius-lg: 16px;
  --v751-max: 430px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #34495E 0%, #2b3a4a 60%, #34495E 100%);
  color: var(--v751-text);
  line-height: 1.5;
  font-size: 1.5rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--v751-cream);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: #fff; text-decoration: underline; }

h1, h2, h3, h4 { color: #fff; line-height: 1.25; margin: 0 0 0.6em; font-weight: 700; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.4rem; }
p { margin: 0 0 1em; }

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

.v751-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

main { padding-bottom: 90px; }

/* ---------- Header ---------- */
.v751-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #34495E, #2b3a4a);
  border-bottom: 1px solid rgba(255, 235, 205, 0.18);
  box-shadow: var(--v751-shadow);
}
.v751-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.v751-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}
.v751-brand img { width: 30px; height: 30px; border-radius: 6px; }
.v751-brand .v751-brand-accent { color: var(--v751-cream); }

.v751-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.v751-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  min-height: 38px;
  text-decoration: none;
}
.v751-btn:hover { transform: translateY(-1px); text-decoration: none; }
.v751-btn-primary { background: var(--v751-cream); color: #34495E; }
.v751-btn-primary:hover { background: #fff; color: #2b3a4a; }
.v751-btn-ghost {
  background: transparent;
  color: var(--v751-cream);
  border: 1px solid rgba(255, 235, 205, 0.55);
}
.v751-btn-ghost:hover { background: rgba(255, 235, 205, 0.12); color: #fff; }

.v751-menu-toggle {
  background: transparent;
  border: 1px solid rgba(255, 235, 205, 0.4);
  border-radius: 8px;
  color: var(--v751-cream);
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile slide menu ---------- */
.v751-mobile-menu {
  position: fixed;
  top: 0;
  right: -85%;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: #2b3a4a;
  z-index: 9999;
  padding: 4.5rem 1.2rem 2rem;
  overflow-y: auto;
  transition: right 0.28s ease;
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.4);
}
.v751-mobile-menu.v751-menu-open { right: 0; }
.v751-mobile-menu h3 {
  color: var(--v751-cream);
  font-size: 1.4rem;
  margin: 1.2rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 235, 205, 0.18);
  padding-bottom: 0.3rem;
}
.v751-mobile-menu a {
  display: block;
  padding: 0.7rem 0.4rem;
  color: var(--v751-line);
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.v751-mobile-menu a:hover { color: #fff; background: rgba(255, 235, 205, 0.06); }
.v751-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: var(--v751-cream);
  font-size: 2.2rem;
  cursor: pointer;
}
.v751-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.v751-menu-overlay.v751-menu-open { opacity: 1; pointer-events: auto; }

/* ---------- Carousel ---------- */
.v751-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--v751-radius-lg);
  margin: 1rem 0;
  box-shadow: var(--v751-shadow);
}
.v751-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.v751-slide {
  min-width: 100%;
  position: relative;
}
.v751-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.78);
}
.v751-slide-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
}
.v751-slide-caption h3 { font-size: 1.8rem; margin: 0 0 0.3rem; }
.v751-slide-caption p { font-size: 1.25rem; margin: 0; color: var(--v751-cream); }
.v751-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: 0;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v751-carousel-arrow:hover { background: rgba(0, 0, 0, 0.7); }
.v751-carousel-arrow.v751-prev { left: 8px; }
.v751-carousel-arrow.v751-next { right: 8px; }
.v751-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.v751-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  cursor: pointer;
  padding: 0;
}
.v751-carousel-dot.v751-dot-active { background: var(--v751-cream); }

/* ---------- Sections ---------- */
.v751-section { padding: 1.6rem 0; }
.v751-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.8rem;
}
.v751-section-head h2 {
  font-size: 1.7rem;
  margin: 0;
  color: #fff;
  position: relative;
  padding-left: 12px;
}
.v751-section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--v751-cream);
  border-radius: 2px;
}
.v751-section-head .v751-link-more {
  font-size: 1.2rem;
  color: var(--v751-cream);
}
.v751-lead { font-size: 1.45rem; color: var(--v751-muted); }
.v751-lead strong { color: #fff; }

/* ---------- Game grid ---------- */
.v751-filter-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.4rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.v751-filter-row::-webkit-scrollbar { display: none; }
.v751-filter-chip {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.06);
  color: var(--v751-line);
  border: 1px solid rgba(255, 235, 205, 0.25);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  white-space: nowrap;
}
.v751-filter-chip.v751-chip-active {
  background: var(--v751-cream);
  color: #34495E;
  border-color: var(--v751-cream);
}

.v751-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.v751-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 235, 205, 0.12);
  border-radius: var(--v751-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}
.v751-card:hover {
  transform: translateY(-2px);
  border-color: var(--v751-cream);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.v751-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #2b3a4a;
}
.v751-card-name {
  padding: 0.5rem 0.6rem;
  font-size: 1.15rem;
  color: var(--v751-line);
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Feature / highlight tiles ---------- */
.v751-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.v751-tile {
  background: linear-gradient(135deg, #3e5266, #2b3a4a);
  border: 1px solid rgba(255, 235, 205, 0.15);
  border-radius: var(--v751-radius);
  padding: 1rem;
  text-align: center;
}
.v751-tile .v751-tile-icon {
  font-size: 2.2rem;
  color: var(--v751-cream);
  margin-bottom: 0.4rem;
}
.v751-tile h4 { margin: 0 0 0.3rem; color: #fff; font-size: 1.3rem; }
.v751-tile p { margin: 0; font-size: 1.2rem; color: var(--v751-muted); }

/* ---------- Promo banner CTA ---------- */
.v751-cta {
  background: linear-gradient(135deg, #708090, #34495E);
  border: 1px solid rgba(255, 235, 205, 0.3);
  border-radius: var(--v751-radius-lg);
  padding: 1.4rem;
  text-align: center;
  margin: 1.6rem 0;
}
.v751-cta h3 { color: #fff; margin-top: 0; }
.v751-cta p { color: var(--v751-cream); margin-bottom: 1rem; }
.v751-cta .v751-btn { font-size: 1.5rem; padding: 0.9rem 1.6rem; }

/* ---------- Testimonials ---------- */
.v751-testimonials {
  display: grid;
  gap: 0.8rem;
}
.v751-testimonial {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--v751-cream);
  border-radius: 8px;
  padding: 0.9rem 1rem;
}
.v751-testimonial p { margin: 0 0 0.4rem; color: var(--v751-line); font-style: italic; }
.v751-testimonial .v751-author { font-size: 1.2rem; color: var(--v751-cream); font-weight: 700; }

/* ---------- Payments ---------- */
.v751-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.v751-pay-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 235, 205, 0.2);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 1.2rem;
  color: var(--v751-line);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- Winners ---------- */
.v751-winners {
  display: grid;
  gap: 0.6rem;
}
.v751-winner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 1.25rem;
}
.v751-winner-name { color: var(--v751-cream); font-weight: 700; }
.v751-winner-game { color: var(--v751-muted); font-size: 1.15rem; }
.v751-winner-amount { color: #fff; font-weight: 800; }

/* ---------- FAQ ---------- */
.v751-faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 235, 205, 0.12);
  border-radius: var(--v751-radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.v751-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}
.v751-faq-q .v751-faq-icon { color: var(--v751-cream); transition: transform 0.2s ease; }
.v751-faq-item.v751-open .v751-faq-icon { transform: rotate(45deg); }
.v751-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  color: var(--v751-line);
  padding: 0 1rem;
  font-size: 1.3rem;
}
.v751-faq-item.v751-open .v751-faq-a {
  max-height: 360px;
  padding: 0 1rem 0.9rem;
}

/* ---------- Achievements ---------- */
.v751-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  text-align: center;
}
.v751-stat-num { color: var(--v751-cream); font-size: 1.8rem; font-weight: 800; }
.v751-stat-label { color: var(--v751-muted); font-size: 1.1rem; }

/* ---------- Long-form SEO article ---------- */
.v751-article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 235, 205, 0.1);
  border-radius: var(--v751-radius-lg);
  padding: 1.2rem 1.3rem;
  color: var(--v751-line);
  font-size: 1.35rem;
}
.v751-article h2 { color: #fff; margin-top: 1.2rem; }
.v751-article h2:first-child { margin-top: 0; }
.v751-article h3 { color: var(--v751-cream); }
.v751-article ul { padding-left: 1.2rem; }
.v751-article li { margin-bottom: 0.4rem; }
.v751-article a { color: var(--v751-cream); text-decoration: underline; }

/* ---------- Footer ---------- */
.v751-footer {
  background: #2b3a4a;
  border-top: 1px solid rgba(255, 235, 205, 0.15);
  padding: 1.6rem 0 2rem;
  margin-top: 1.4rem;
}
.v751-footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.v751-footer-col h4 {
  color: var(--v751-cream);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.v751-footer-col a {
  display: block;
  font-size: 1.2rem;
  color: var(--v751-line);
  padding: 0.25rem 0;
}
.v751-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.v751-footer-promos .v751-btn { font-size: 1.15rem; padding: 0.5rem 0.9rem; }
.v751-footer-bottom {
  text-align: center;
  color: var(--v751-muted);
  font-size: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.9rem;
}

/* ---------- Bottom nav (mobile only) ---------- */
.v751-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  background: linear-gradient(180deg, #3e5266, #2b3a4a);
  border-top: 1px solid rgba(255, 235, 205, 0.25);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.35);
}
.v751-bottom-nav-btn {
  flex: 1 1 0;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: 0;
  color: var(--v751-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.18s ease, transform 0.18s ease;
}
.v751-bottom-nav-btn .v751-nav-icon { font-size: 22px; line-height: 1; }
.v751-bottom-nav-btn .material-icons.v751-nav-icon { font-size: 24px; }
.v751-bottom-nav-btn:hover { color: #fff; transform: translateY(-1px); }
.v751-bottom-nav-btn.v751-nav-active { color: var(--v751-cream); }
.v751-bottom-nav-btn.v751-nav-active .v751-nav-icon { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.v751-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.v751-reveal.v751-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Desktop / tablet ---------- */
@media (min-width: 769px) {
  body { background: linear-gradient(180deg, #34495E, #2b3a4a); }
  .v751-bottom-nav { display: none; }
  main { padding-bottom: 30px; }
  .v751-grid { grid-template-columns: repeat(5, 1fr); }
  .v751-tiles { grid-template-columns: repeat(4, 1fr); }
  .v751-footer-cols { grid-template-columns: repeat(4, 1fr); }
  .v751-slide img { height: 320px; }
  h1 { font-size: 2.6rem; }
}

/* ---------- Small phones ---------- */
@media (max-width: 359px) {
  .v751-grid { grid-template-columns: repeat(2, 1fr); }
  .v751-card-name { font-size: 1.05rem; }
}

/* ---------- Utility ---------- */
.v751-text-center { text-align: center; }
.v751-mt-1 { margin-top: 0.5rem; }
.v751-mt-2 { margin-top: 1rem; }
.v751-mt-3 { margin-top: 1.5rem; }
.v751-hidden { display: none !important; }
.v751-pill {
  display: inline-block;
  background: rgba(255, 235, 205, 0.18);
  color: var(--v751-cream);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
