/* casino link - core stylesheet
   Color palette: #FF6347 tomato / #FFB347 orange / #DAA520 goldenrod / #262626 dark
   All custom classes use the wa46b- prefix to avoid collisions. */

:root {
  --wa46b-primary: #FF6347;
  --wa46b-secondary: #FFB347;
  --wa46b-accent: #DAA520;
  --wa46b-dark: #262626;
  --wa46b-darker: #1c1c1c;
  --wa46b-light: #fff7ed;
  --wa46b-muted: #b8b8b8;
  --wa46b-card: #303030;
  --wa46b-border: rgba(255, 179, 71, 0.22);
  --wa46b-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  --wa46b-radius: 12px;
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--wa46b-dark);
  color: var(--wa46b-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--wa46b-secondary); text-decoration: none; }

.wa46b-wrapper { max-width: 430px; margin: 0 auto; position: relative; }

/* ===== Header ===== */
.wa46b-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--wa46b-dark) 0%, var(--wa46b-darker) 100%);
  border-bottom: 2px solid var(--wa46b-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.wa46b-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  min-height: 56px;
}

.wa46b-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--wa46b-light);
  font-weight: 700;
  font-size: 1.6rem;
}

.wa46b-logo img { width: 30px; height: 30px; border-radius: 6px; }

.wa46b-logo span {
  background: linear-gradient(90deg, var(--wa46b-primary), var(--wa46b-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.wa46b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 36px;
}

.wa46b-btn:active { transform: scale(0.95); }

.wa46b-btn-primary {
  background: linear-gradient(135deg, var(--wa46b-primary), #ff8a65);
  color: #fff;
  box-shadow: 0 3px 8px rgba(255, 99, 71, 0.5);
}

.wa46b-btn-secondary {
  background: linear-gradient(135deg, var(--wa46b-accent), var(--wa46b-secondary));
  color: var(--wa46b-dark);
  box-shadow: 0 3px 8px rgba(218, 165, 32, 0.5);
}

.wa46b-menu-btn {
  background: transparent;
  border: 1px solid var(--wa46b-secondary);
  color: var(--wa46b-secondary);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  margin-left: 0.4rem;
}

/* ===== Mobile menu ===== */
.wa46b-mobile-menu {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: var(--wa46b-darker);
  border-bottom: 2px solid var(--wa46b-primary);
  padding: 0.6rem 1rem 1rem;
  z-index: 9999;
  max-height: 70vh;
  overflow-y: auto;
}

.wa46b-menu-open { display: block; }

.wa46b-mobile-menu a {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--wa46b-light);
  border-bottom: 1px solid rgba(255, 179, 71, 0.15);
  font-size: 1.4rem;
}

.wa46b-mobile-menu a:hover { background: rgba(255, 99, 71, 0.12); }

/* ===== Main content ===== */
main { padding-top: 70px; }

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

.wa46b-section { padding: 2rem 1rem; }

.wa46b-section-title {
  font-size: 2rem;
  color: var(--wa46b-secondary);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}

.wa46b-section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--wa46b-primary), var(--wa46b-accent));
  border-radius: 2px;
}

.wa46b-section-sub {
  font-size: 1.5rem;
  color: var(--wa46b-light);
  margin: 1.2rem 0 0.6rem;
  font-weight: 600;
}

.wa46b-section p { margin-bottom: 1rem; color: #e8e8e8; }

/* ===== Carousel ===== */
.wa46b-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 1rem;
  box-shadow: var(--wa46b-shadow);
}

.wa46b-slide {
  display: none;
  position: relative;
}

.wa46b-slide-active { display: block; }

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

.wa46b-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(38, 38, 38, 0.95));
  color: #fff;
}

.wa46b-slide-caption h2 {
  font-size: 1.7rem;
  color: var(--wa46b-secondary);
  margin-bottom: 0.4rem;
}

.wa46b-dots {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.wa46b-dot {
  width: 8px; height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.wa46b-dot-active { background: var(--wa46b-primary); }

/* ===== Hero / CTA ===== */
.wa46b-hero {
  background: linear-gradient(135deg, rgba(255, 99, 71, 0.25), rgba(218, 165, 32, 0.18));
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 14px;
  margin: 1rem;
  border: 1px solid var(--wa46b-border);
}

.wa46b-hero h1 {
  font-size: 2.2rem;
  color: var(--wa46b-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.wa46b-hero p { margin-bottom: 1.2rem; color: var(--wa46b-light); }

.wa46b-cta-row {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Filter tabs ===== */
.wa46b-filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.6rem 1rem;
  scrollbar-width: none;
}

.wa46b-filter-tabs::-webkit-scrollbar { display: none; }

.wa46b-filter-tab {
  flex: 0 0 auto;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  background: var(--wa46b-card);
  color: var(--wa46b-light);
  font-size: 1.3rem;
  font-weight: 600;
  border: 1px solid var(--wa46b-border);
  cursor: pointer;
}

.wa46b-filter-tab-active {
  background: linear-gradient(135deg, var(--wa46b-primary), var(--wa46b-accent));
  color: #fff;
  border-color: transparent;
}

/* ===== Game grid ===== */
.wa46b-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 0 1rem;
}

.wa46b-game-card {
  background: var(--wa46b-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--wa46b-border);
  cursor: pointer;
  transition: transform 0.2s ease;
  display: block;
  text-align: center;
}

.wa46b-game-card:active { transform: scale(0.96); }

.wa46b-game-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.wa46b-game-card .wa46b-game-name {
  font-size: 1.1rem;
  color: var(--wa46b-light);
  padding: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Info cards / Features ===== */
.wa46b-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: 0 1rem;
}

.wa46b-card {
  background: var(--wa46b-card);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--wa46b-border);
}

.wa46b-card h3 {
  color: var(--wa46b-secondary);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.wa46b-card .wa46b-card-icon {
  font-size: 2.2rem;
  color: var(--wa46b-primary);
  margin-bottom: 0.4rem;
}

.wa46b-card p { font-size: 1.2rem; color: #ddd; }

/* ===== Steps list ===== */
.wa46b-steps { counter-reset: step; padding-left: 0; list-style: none; }

.wa46b-steps li {
  position: relative;
  padding: 0.6rem 0 0.6rem 3.4rem;
  margin-bottom: 0.6rem;
  background: var(--wa46b-card);
  border-radius: 10px;
  border-left: 3px solid var(--wa46b-primary);
  counter-increment: step;
  font-size: 1.3rem;
  color: #eee;
}

.wa46b-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.8rem; top: 0.6rem;
  width: 2rem; height: 2rem;
  background: linear-gradient(135deg, var(--wa46b-primary), var(--wa46b-accent));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== FAQ ===== */
.wa46b-faq-item {
  background: var(--wa46b-card);
  border: 1px solid var(--wa46b-border);
  border-radius: 10px;
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.wa46b-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  color: var(--wa46b-light);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa46b-faq-a {
  display: none;
  padding: 0 1.2rem 1rem;
  color: #ddd;
  font-size: 1.3rem;
}

.wa46b-faq-open .wa46b-faq-a { display: block; }

/* ===== RTP table ===== */
.wa46b-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  background: var(--wa46b-card);
  border-radius: 10px;
  overflow: hidden;
}

.wa46b-rtp-table th,
.wa46b-rtp-table td {
  padding: 0.7rem;
  border-bottom: 1px solid var(--wa46b-border);
  text-align: left;
}

.wa46b-rtp-table th {
  background: rgba(255, 99, 71, 0.18);
  color: var(--wa46b-secondary);
  font-weight: 700;
}

/* ===== Testimonial ===== */
.wa46b-testimonial {
  background: var(--wa46b-card);
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--wa46b-secondary);
  margin-bottom: 0.7rem;
}

.wa46b-testimonial .wa46b-author {
  color: var(--wa46b-secondary);
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 0.4rem;
}

.wa46b-stars { color: var(--wa46b-accent); font-size: 1.4rem; }

/* ===== Payment icons ===== */
.wa46b-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 0 1rem;
}

.wa46b-payment {
  background: var(--wa46b-card);
  border-radius: 8px;
  padding: 0.8rem 0.4rem;
  text-align: center;
  border: 1px solid var(--wa46b-border);
}

.wa46b-payment .material-icons,
.wa46b-payment i { font-size: 2rem; color: var(--wa46b-secondary); }

.wa46b-payment span { display: block; font-size: 1rem; margin-top: 0.3rem; color: #ddd; }

/* ===== Footer ===== */
.wa46b-footer {
  background: var(--wa46b-darker);
  padding: 2rem 1rem;
  border-top: 2px solid var(--wa46b-primary);
  margin-top: 1.5rem;
}

.wa46b-footer h3 { color: var(--wa46b-secondary); margin-bottom: 0.6rem; font-size: 1.5rem; }
.wa46b-footer p { color: #ccc; margin-bottom: 1rem; font-size: 1.3rem; }

.wa46b-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wa46b-footer-links a {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: var(--wa46b-card);
  border: 1px solid var(--wa46b-border);
  border-radius: 14px;
  color: var(--wa46b-light);
  font-size: 1.2rem;
}

.wa46b-footer-links a:hover { background: rgba(255, 99, 71, 0.18); color: var(--wa46b-secondary); }

.wa46b-footer-promo {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}

.wa46b-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #999;
  text-align: center;
}

/* ===== Mobile bottom navigation ===== */
.wa46b-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, var(--wa46b-darker), #000);
  border-top: 2px solid var(--wa46b-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.wa46b-bottom-nav-item {
  flex: 1;
  background: transparent;
  border: none;
  color: #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.wa46b-bottom-nav-item i,
.wa46b-bottom-nav-item .material-icons {
  font-size: 22px;
  margin-bottom: 2px;
}

.wa46b-bottom-nav-item:active { transform: scale(0.92); }

.wa46b-bottom-nav-item.wa46b-active { color: var(--wa46b-primary); }

@media (min-width: 769px) {
  .wa46b-bottom-nav { display: none; }
}

/* ===== Desktop layout (>=769px) ===== */
@media (min-width: 769px) {
  .wa46b-wrapper { max-width: 1200px; }
  .wa46b-header-inner { max-width: 1200px; }
  .wa46b-game-grid { grid-template-columns: repeat(5, 1fr); }
  .wa46b-cards { grid-template-columns: repeat(4, 1fr); }
  .wa46b-payment-grid { grid-template-columns: repeat(6, 1fr); }
  .wa46b-slide img { height: 360px; }
}

/* ===== Utility ===== */
.wa46b-text-link {
  color: var(--wa46b-secondary);
  font-weight: 700;
  border-bottom: 1px dashed var(--wa46b-accent);
  cursor: pointer;
}

.wa46b-badge {
  display: inline-block;
  background: var(--wa46b-primary);
  color: #fff;
  font-size: 1rem;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  margin-left: 0.4rem;
}

.wa46b-banner {
  background: linear-gradient(135deg, var(--wa46b-primary), var(--wa46b-accent));
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.wa46b-winners {
  background: var(--wa46b-card);
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wa46b-winners img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.wa46b-winners .wa46b-wname { color: var(--wa46b-secondary); font-weight: 700; font-size: 1.2rem; }
.wa46b-winners .wa46b-wamount { color: var(--wa46b-primary); font-weight: 700; }
