/*!
 * playtime-gaming.click core stylesheet
 * Class prefix: wd0fb-
 * Palette: #8B4513 | #A0522D | #FF8C00 | #2C2C2C | #FDF5E6
 * Mobile-first, max-width 430px.
 */

:root {
  --wd0fb-primary: #8B4513;
  --wd0fb-secondary: #A0522D;
  --wd0fb-accent: #FF8C00;
  --wd0fb-bg: #2C2C2C;
  --wd0fb-bg-soft: #3a2a22;
  --wd0fb-text: #FDF5E6;
  --wd0fb-text-dim: #e9d9bf;
  --wd0fb-line: rgba(253, 245, 230, 0.12);
  --wd0fb-gold: #FFD27A;
  --wd0fb-radius: 14px;
  --wd0fb-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--wd0fb-bg);
  color: var(--wd0fb-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a { color: var(--wd0fb-gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 2.1rem; margin: 0 0 0.6rem; font-weight: 700; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.9rem; color: var(--wd0fb-gold); }
h3 { font-size: 1.65rem; color: var(--wd0fb-accent); }
p { margin: 0 0 1rem; line-height: 2.3rem; }

.wd0fb-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ===== Header ===== */
.wd0fb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #3a1f12 0%, #2C2C2C 100%);
  border-bottom: 2px solid var(--wd0fb-primary);
  box-shadow: var(--wd0fb-shadow);
}
.wd0fb-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  min-height: 56px;
}
.wd0fb-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--wd0fb-text);
  font-weight: 800;
  font-size: 1.55rem;
}
.wd0fb-brand img { width: 28px; height: 28px; border-radius: 6px; }
.wd0fb-brand span b { color: var(--wd0fb-accent); }

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

.wd0fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
  min-height: 40px;
}
.wd0fb-btn:active { transform: scale(0.95); }
.wd0fb-btn-login {
  background: transparent;
  color: var(--wd0fb-text);
  border: 1.5px solid var(--wd0fb-secondary);
}
.wd0fb-btn-register {
  background: linear-gradient(135deg, var(--wd0fb-accent), var(--wd0fb-primary));
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 140, 0, 0.4);
}

.wd0fb-menu-btn {
  background: transparent;
  border: none;
  color: var(--wd0fb-text);
  font-size: 1.9rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
}

/* ===== Mobile menu ===== */
.wd0fb-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #241a14;
  border-top: 1px solid var(--wd0fb-line);
}
.wd0fb-menu-open { max-height: 480px; }
.wd0fb-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
}
.wd0fb-mobile-menu li { border-bottom: 1px solid var(--wd0fb-line); }
.wd0fb-mobile-menu a {
  display: block;
  padding: 0.95rem 0.4rem;
  color: var(--wd0fb-text);
  font-weight: 600;
}
.wd0fb-mobile-menu a:hover { color: var(--wd0fb-accent); text-decoration: none; }

/* ===== Page wrapper ===== */
.wd0fb-wrapper {
  padding-top: 70px;
  padding-bottom: 80px;
  max-width: 430px;
  margin: 0 auto;
}

/* ===== Hero carousel ===== */
.wd0fb-carousel {
  position: relative;
  margin: 1rem 0;
  border-radius: var(--wd0fb-radius);
  overflow: hidden;
  box-shadow: var(--wd0fb-shadow);
}
.wd0fb-carousel-track { position: relative; }
.wd0fb-carousel-slide {
  display: none;
  cursor: pointer;
  position: relative;
}
.wd0fb-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.wd0fb-slide-active { display: block; }
.wd0fb-carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: var(--wd0fb-text);
  font-weight: 700;
  font-size: 1.4rem;
}
.wd0fb-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.wd0fb-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(253, 245, 230, 0.5);
  cursor: pointer;
}
.wd0fb-dot-active { background: var(--wd0fb-accent); }

.wd0fb-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: var(--wd0fb-text);
  border: none;
  padding: 0.5rem 0.7rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}
.wd0fb-carousel-arrow.prev { left: 8px; }
.wd0fb-carousel-arrow.next { right: 8px; }

/* ===== Sections ===== */
.wd0fb-section {
  margin: 1.4rem 0;
  padding: 1rem;
  background: linear-gradient(180deg, #34241c 0%, #2a1d16 100%);
  border: 1px solid var(--wd0fb-line);
  border-radius: var(--wd0fb-radius);
}
.wd0fb-section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.wd0fb-section-title i { color: var(--wd0fb-accent); font-size: 1.7rem; }

/* ===== Game grid ===== */
.wd0fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.wd0fb-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #3a2a20;
  border: 1px solid var(--wd0fb-line);
  border-radius: 12px;
  padding: 0.5rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wd0fb-game:hover, .wd0fb-game:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
  text-decoration: none;
}
.wd0fb-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}
.wd0fb-game-name {
  margin-top: 0.4rem;
  font-size: 1.15rem;
  color: var(--wd0fb-text-dim);
  text-align: center;
  font-weight: 600;
  line-height: 1.4rem;
  min-height: 2.8rem;
}

/* ===== Promo link styles ===== */
.wd0fb-promo-text {
  color: var(--wd0fb-gold);
  font-weight: 800;
  cursor: pointer;
}
.wd0fb-promo-text:hover { color: var(--wd0fb-accent); text-decoration: underline; }
.wd0fb-play-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--wd0fb-accent), var(--wd0fb-primary));
  color: #fff;
  font-weight: 800;
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 14px rgba(255, 140, 0, 0.4);
}

/* ===== Feature / info cards ===== */
.wd0fb-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.wd0fb-card {
  background: #3a2a20;
  border: 1px solid var(--wd0fb-line);
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
}
.wd0fb-card i { color: var(--wd0fb-accent); font-size: 2rem; }
.wd0fb-card h3 { margin: 0.4rem 0; font-size: 1.3rem; }
.wd0fb-card p { margin: 0; font-size: 1.2rem; color: var(--wd0fb-text-dim); line-height: 1.7rem; }

/* ===== RTP table ===== */
.wd0fb-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
}
.wd0fb-rtp-table th, .wd0fb-rtp-table td {
  padding: 0.6rem;
  border-bottom: 1px solid var(--wd0fb-line);
  text-align: left;
}
.wd0fb-rtp-table th { color: var(--wd0fb-gold); }
.wd0fb-rtp-bar {
  display: inline-block;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--wd0fb-primary), var(--wd0fb-accent));
}

/* ===== Testimonials ===== */
.wd0fb-testimonial {
  background: #3a2a20;
  border-left: 3px solid var(--wd0fb-accent);
  border-radius: 8px;
  padding: 0.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  color: var(--wd0fb-text-dim);
}
.wd0fb-testimonial b { color: var(--wd0fb-gold); display: block; margin-top: 0.3rem; }

/* ===== Payment / winners ===== */
.wd0fb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wd0fb-chip {
  background: #3a2a20;
  border: 1px solid var(--wd0fb-line);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 1.15rem;
  color: var(--wd0fb-text-dim);
}
.wd0fb-winner {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--wd0fb-line);
  font-size: 1.25rem;
}
.wd0fb-winner b { color: var(--wd0fb-accent); }

/* ===== FAQ ===== */
.wd0fb-faq-item {
  margin-bottom: 0.6rem;
  padding: 0.8rem;
  background: #3a2a20;
  border-radius: 10px;
  border: 1px solid var(--wd0fb-line);
}
.wd0fb-faq-item h3 { margin: 0 0 0.4rem; font-size: 1.35rem; }
.wd0fb-faq-item p { margin: 0; font-size: 1.2rem; color: var(--wd0fb-text-dim); line-height: 1.8rem; }

/* ===== Footer ===== */
.wd0fb-footer {
  background: #1f1611;
  border-top: 2px solid var(--wd0fb-primary);
  padding: 1.5rem 1.2rem 2rem;
  color: var(--wd0fb-text-dim);
  font-size: 1.25rem;
}
.wd0fb-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
.wd0fb-footer-links a { color: var(--wd0fb-text-dim); font-size: 1.2rem; }
.wd0fb-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.wd0fb-footer-promos button {
  flex: 1 1 45%;
  background: linear-gradient(135deg, var(--wd0fb-primary), var(--wd0fb-secondary));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.7rem;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
}
.wd0fb-copyright { margin-top: 1rem; text-align: center; font-size: 1.1rem; color: #c7b69d; }

/* ===== Bottom nav ===== */
.wd0fb-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: linear-gradient(180deg, #3a1f12 0%, #221610 100%);
  border-top: 2px solid var(--wd0fb-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
.wd0fb-bottomnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--wd0fb-text-dim);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, color 0.15s ease;
}
.wd0fb-bottomnav-btn:active { transform: scale(0.92); }
.wd0fb-bottomnav-btn i, .wd0fb-bottomnav-btn .material-icons-outlined {
  font-size: 22px;
}
.wd0fb-bottomnav-btn span {
  font-size: 1.05rem;
  margin-top: 2px;
}
.wd0fb-bottomnav-active { color: var(--wd0fb-accent); }

/* ===== Desktop ===== */
@media (min-width: 769px) {
  .wd0fb-bottomnav { display: none; }
  .wd0fb-wrapper, .wd0fb-header-inner, .wd0fb-container { max-width: 430px; }
  body { background: #1a1410; }
}

@media (max-width: 768px) {
  .wd0fb-wrapper { padding-bottom: 90px; }
}
