/* Playtime Gaming Theme - All classes use wd723- prefix */
/* Color Palette: #2C3E50 | #CD5C5C | #FFC0CB | #FF69B4 */

:root {
  --wd723-primary: #CD5C5C;
  --wd723-secondary: #FF69B4;
  --wd723-accent: #FFC0CB;
  --wd723-bg: #2C3E50;
  --wd723-bg-light: #34495E;
  --wd723-text: #FFC0CB;
  --wd723-text-light: #FFFFFF;
  --wd723-text-dark: #2C3E50;
  --wd723-border: rgba(255,192,203,0.2);
  --wd723-shadow: 0 2px 12px rgba(0,0,0,0.3);
  --wd723-radius: 8px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--wd723-bg);
  color: var(--wd723-text-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--wd723-secondary); text-decoration: none; }
a:hover { color: var(--wd723-primary); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.wd723-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.wd723-wrapper { padding: 1.2rem 0; }
.wd723-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* Header */
.wd723-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--wd723-bg) 0%, var(--wd723-bg-light) 100%);
  border-bottom: 2px solid var(--wd723-primary);
  max-width: 430px; margin: 0 auto;
}
.wd723-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; height: 52px;
}
.wd723-logo-area { display: flex; align-items: center; gap: 0.6rem; }
.wd723-logo-area img { width: 28px; height: 28px; border-radius: 4px; }
.wd723-logo-text {
  font-size: 1.5rem; font-weight: 700; color: var(--wd723-text-light);
  background: linear-gradient(90deg, var(--wd723-primary), var(--wd723-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wd723-header-btns { display: flex; gap: 0.6rem; align-items: center; }
.wd723-btn-register {
  background: linear-gradient(135deg, var(--wd723-primary), var(--wd723-secondary));
  color: #fff; border: none; padding: 0.5rem 1.2rem; border-radius: 20px;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wd723-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 8px rgba(205,92,92,0.5); }
.wd723-btn-login {
  background: transparent; color: var(--wd723-accent); border: 1.5px solid var(--wd723-secondary);
  padding: 0.5rem 1.2rem; border-radius: 20px; font-size: 1.2rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.wd723-btn-login:hover { background: rgba(255,105,180,0.15); }
.wd723-menu-toggle {
  background: none; border: none; color: var(--wd723-text-light);
  font-size: 2.2rem; cursor: pointer; padding: 0 0.4rem; display: none;
}

/* Mobile Menu */
.wd723-mobile-menu {
  display: none; position: fixed; top: 52px; left: 0; right: 0;
  z-index: 9999; background: var(--wd723-bg);
  border-bottom: 2px solid var(--wd723-primary);
  max-width: 430px; margin: 0 auto;
  padding: 1rem 0; box-shadow: var(--wd723-shadow);
}
.wd723-mobile-menu.wd723-menu-active { display: block; }
.wd723-mobile-menu a {
  display: block; padding: 1rem 1.6rem; color: var(--wd723-text-light);
  font-size: 1.4rem; border-bottom: 1px solid var(--wd723-border);
  transition: background 0.2s;
}
.wd723-mobile-menu a:hover { background: var(--wd723-bg-light); color: var(--wd723-secondary); }

/* Carousel */
.wd723-carousel { position: relative; width: 100%; overflow: hidden; margin-top: 52px; }
.wd723-carousel-slide { display: none; width: 100%; cursor: pointer; }
.wd723-carousel-slide img { width: 100%; height: auto; border-radius: 0; }
.wd723-carousel-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.wd723-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.3s;
}
.wd723-carousel-dot.wd723-dot-active { background: var(--wd723-primary); }

/* Sections */
.wd723-section { padding: 2rem 1.2rem; }
.wd723-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--wd723-text-light);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--wd723-primary);
}
.wd723-section-title i { margin-right: 0.5rem; color: var(--wd723-primary); }

/* Game Cards */
.wd723-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.wd723-game-item {
  text-align: center; cursor: pointer;
  transition: transform 0.2s;
  padding: 0.5rem; border-radius: var(--wd723-radius);
}
.wd723-game-item:hover { transform: scale(1.05); background: rgba(205,92,92,0.1); }
.wd723-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: var(--wd723-radius);
  margin-bottom: 0.4rem; border: 2px solid var(--wd723-border);
}
.wd723-game-name {
  font-size: 1.1rem; color: var(--wd723-text-light);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.wd723-category-title {
  font-size: 1.5rem; font-weight: 600; color: var(--wd723-primary);
  margin: 1.5rem 0 0.8rem; display: flex; align-items: center; gap: 0.5rem;
}

/* Promo Buttons */
.wd723-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--wd723-primary), var(--wd723-secondary));
  color: #fff; padding: 0.8rem 2rem; border-radius: 25px;
  font-size: 1.4rem; font-weight: 700; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center; text-decoration: none;
}
.wd723-promo-btn:hover {
  transform: scale(1.05); color: #fff;
  box-shadow: 0 4px 15px rgba(205,92,92,0.4);
}
.wd723-promo-text {
  color: var(--wd723-secondary); font-weight: 600; cursor: pointer;
  text-decoration: underline; transition: color 0.2s;
}
.wd723-promo-text:hover { color: var(--wd723-primary); }

/* Cards */
.wd723-card {
  background: var(--wd723-bg-light); border-radius: var(--wd723-radius);
  padding: 1.5rem; margin-bottom: 1.2rem; border: 1px solid var(--wd723-border);
  box-shadow: var(--wd723-shadow);
}
.wd723-card-title {
  font-size: 1.5rem; font-weight: 600; color: var(--wd723-primary);
  margin-bottom: 0.8rem;
}

/* Content Styles */
.wd723-content-text { line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.wd723-list { list-style: none; padding: 0; }
.wd723-list li {
  padding: 0.6rem 0; border-bottom: 1px solid var(--wd723-border);
  display: flex; align-items: center; gap: 0.6rem;
}
.wd723-list li i { color: var(--wd723-primary); font-size: 1.4rem; }
.wd723-highlight {
  background: linear-gradient(135deg, rgba(205,92,92,0.2), rgba(255,105,180,0.2));
  border-left: 3px solid var(--wd723-primary);
  padding: 1rem 1.2rem; margin: 1rem 0; border-radius: 0 var(--wd723-radius) var(--wd723-radius) 0;
}

/* FAQ Section */
.wd723-faq-item { margin-bottom: 1rem; }
.wd723-faq-q {
  font-weight: 600; color: var(--wd723-primary); font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.wd723-faq-a { color: rgba(255,255,255,0.85); padding-left: 1rem; line-height: 1.6; }

/* Testimonials */
.wd723-testimonial {
  background: var(--wd723-bg-light); border-radius: var(--wd723-radius);
  padding: 1.2rem; margin-bottom: 0.8rem; border: 1px solid var(--wd723-border);
}
.wd723-testimonial-name { color: var(--wd723-secondary); font-weight: 600; font-size: 1.2rem; }
.wd723-testimonial-text { color: rgba(255,255,255,0.85); font-size: 1.2rem; margin-top: 0.4rem; }
.wd723-testimonial-stars { color: #FFD700; font-size: 1.1rem; margin-top: 0.3rem; }

/* Winners */
.wd723-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0; border-bottom: 1px solid var(--wd723-border);
}
.wd723-winner-name { color: var(--wd723-accent); font-weight: 600; font-size: 1.2rem; }
.wd723-winner-game { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.wd723-winner-amount { color: var(--wd723-secondary); font-weight: 700; font-size: 1.3rem; }

/* Payment Methods */
.wd723-payment-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.wd723-payment-item {
  background: var(--wd723-bg-light); border-radius: var(--wd723-radius);
  padding: 0.8rem 1.2rem; border: 1px solid var(--wd723-border);
  font-size: 1.2rem; color: var(--wd723-text-light); text-align: center;
}

/* Footer */
.wd723-footer {
  background: var(--wd723-bg); padding: 2rem 1.2rem 8rem;
  border-top: 2px solid var(--wd723-primary); text-align: center;
}
.wd723-footer-brand {
  font-size: 1.2rem; color: rgba(255,255,255,0.6); line-height: 1.6;
  margin-bottom: 1.5rem;
}
.wd723-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.5rem; }
.wd723-footer-links a {
  color: var(--wd723-accent); font-size: 1.1rem; padding: 0.4rem 0.6rem;
  transition: color 0.2s;
}
.wd723-footer-links a:hover { color: var(--wd723-secondary); }
.wd723-footer-copy {
  font-size: 1rem; color: rgba(255,255,255,0.4); margin-top: 1rem;
}

/* Bottom Navigation */
.wd723-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, var(--wd723-bg-light), var(--wd723-bg));
  border-top: 2px solid var(--wd723-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; max-width: 430px; margin: 0 auto;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
}
.wd723-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px; background: none; border: none;
  color: rgba(255,192,203,0.6); cursor: pointer; transition: all 0.2s;
  padding: 0.4rem; gap: 0.2rem;
}
.wd723-bottom-nav-btn:hover,
.wd723-bottom-nav-btn.wd723-nav-active {
  color: var(--wd723-secondary);
}
.wd723-bottom-nav-btn:hover { transform: scale(1.1); }
.wd723-bottom-nav-btn i,
.wd723-bottom-nav-btn .material-icons,
.wd723-bottom-nav-btn ion-icon,
.wd723-bottom-nav-btn bi {
  font-size: 22px;
}
.wd723-bottom-nav-btn span { font-size: 1rem; }

/* CTA Banner */
.wd723-cta-banner {
  background: linear-gradient(135deg, var(--wd723-primary), var(--wd723-secondary));
  padding: 1.5rem; text-align: center; border-radius: var(--wd723-radius);
  margin: 1.5rem 0;
}
.wd723-cta-banner h3 { color: #fff; font-size: 1.6rem; margin-bottom: 0.8rem; }
.wd723-cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin-bottom: 1rem; }

/* RTP Table */
.wd723-rtp-table { width: 100%; border-collapse: collapse; margin: 0.8rem 0; }
.wd723-rtp-table th {
  background: var(--wd723-primary); color: #fff; padding: 0.6rem 0.8rem;
  font-size: 1.1rem; text-align: left;
}
.wd723-rtp-table td {
  padding: 0.6rem 0.8rem; font-size: 1.1rem;
  border-bottom: 1px solid var(--wd723-border);
  color: rgba(255,255,255,0.85);
}
.wd723-rtp-table tr:hover td { background: rgba(205,92,92,0.1); }

/* Responsive */
@media (min-width: 769px) {
  .wd723-bottom-nav { display: none; }
  .wd723-footer { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}
