/* playtime-apps.click core stylesheet
   Class prefix: w6a19-
   Mobile-first HTML5 casino/gaming layout.
   Color palette: #212F3D | #FF0000 | #C71585 | #F5F5F5 | #F08080 | #B03060
   Root font-size 62.5% => 1rem = 10px. */

:root {
  --w6a19-primary: #212F3D;
  --w6a19-bg: #212F3D;
  --w6a19-bg-alt: #1a2530;
  --w6a19-text: #F5F5F5;
  --w6a19-text-dim: #c7d0d8;
  --w6a19-accent: #FF0000;
  --w6a19-accent-2: #C71585;
  --w6a19-coral: #F08080;
  --w6a19-rose: #B03060;
  --w6a19-gold: #FFD36E;
  --w6a19-card: #2a3a4a;
  --w6a19-border: rgba(245,245,245,0.12);
}

* { box-sizing: border-box; }

html { font-size: 62.5%; }

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

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

a { color: var(--w6a19-coral); text-decoration: none; }
a:hover { color: var(--w6a19-gold); }

/* ---------- Layout containers ---------- */
.w6a19-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.w6a19-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.w6a19-main {
  flex: 1 1 auto;
  padding-top: 6rem;
}

/* ---------- Header / top navigation ---------- */
.w6a19-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1a2530 0%, #212F3D 55%, #2c1a2a 100%);
  border-bottom: 2px solid var(--w6a19-accent);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.w6a19-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.6rem 1.0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.w6a19-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.w6a19-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--w6a19-coral);
}

.w6a19-brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #F08080, #FFD36E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.w6a19-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  min-height: 36px;
  text-decoration: none;
  line-height: 1;
}

.w6a19-btn:active { transform: scale(0.96); }

.w6a19-btn-primary {
  background: linear-gradient(90deg, #FF0000, #C71585);
  color: #fff;
  box-shadow: 0 3px 10px rgba(199,21,133,0.35);
}

.w6a19-btn-ghost {
  background: transparent;
  color: var(--w6a19-text);
  border: 1.5px solid var(--w6a19-coral);
}

.w6a19-btn-ghost:hover { background: rgba(240,128,128,0.12); color: var(--w6a19-text); }

.w6a19-btn-gold {
  background: linear-gradient(90deg, #FFD36E, #F08080);
  color: #212F3D;
}

.w6a19-btn-block {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.5rem;
}

/* ---------- Mobile menu ---------- */
.w6a19-menu-toggle {
  background: transparent;
  border: none;
  color: var(--w6a19-text);
  font-size: 2.0rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.w6a19-menu-toggle:hover { background: rgba(245,245,245,0.08); }

.w6a19-mobile-menu {
  position: fixed;
  top: 5.6rem; right: 0;
  width: 78%;
  max-width: 320px;
  background: var(--w6a19-bg-alt);
  border-left: 1px solid var(--w6a19-border);
  border-bottom: 1px solid var(--w6a19-border);
  box-shadow: -4px 0 18px rgba(0,0,0,0.5);
  transform: translateX(110%);
  transition: transform 0.28s ease;
  z-index: 9999;
  padding: 1.0rem 0.6rem;
  border-radius: 0 0 0 16px;
}

.w6a19-mobile-menu.w6a19-menu-open { transform: translateX(0); }

.w6a19-mobile-menu a {
  display: block;
  padding: 1.0rem 1.0rem;
  color: var(--w6a19-text);
  border-bottom: 1px dashed var(--w6a19-border);
  font-size: 1.35rem;
  font-weight: 600;
}

.w6a19-mobile-menu a:hover { color: var(--w6a19-coral); }

/* ---------- Carousel ---------- */
.w6a19-carousel {
  position: relative;
  margin: 1.0rem 0 1.4rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.w6a19-slide {
  display: none;
  position: relative;
  cursor: pointer;
}

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

.w6a19-slide img {
  width: 100%;
  height: auto;
  min-height: 160px;
  object-fit: cover;
}

.w6a19-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 1.0rem;
  background: linear-gradient(0deg, rgba(33,47,61,0.92) 0%, rgba(33,47,61,0) 100%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}

.w6a19-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

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

.w6a19-dot-active { background: var(--w6a19-accent); }

/* ---------- Section / headings ---------- */
.w6a19-section {
  margin: 1.8rem 0;
  padding: 1.4rem 1.2rem;
  background: var(--w6a19-card);
  border: 1px solid var(--w6a19-border);
  border-radius: 14px;
}

.w6a19-section h2 {
  font-size: 1.7rem;
  margin: 0 0 0.8rem;
  color: var(--w6a19-coral);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w6a19-section h3 {
  font-size: 1.4rem;
  margin: 1.0rem 0 0.5rem;
  color: var(--w6a19-gold);
}

.w6a19-section p {
  font-size: 1.28rem;
  color: var(--w6a19-text-dim);
  margin: 0.5rem 0;
}

.w6a19-hero-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 1.0rem 0 0.4rem;
  background: linear-gradient(90deg, #F08080, #FFD36E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.w6a19-hero-sub {
  font-size: 1.3rem;
  color: var(--w6a19-text-dim);
  margin-bottom: 1.0rem;
}

/* ---------- Game grid ---------- */
.w6a19-cat-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--w6a19-gold);
  margin: 1.6rem 0 0.8rem;
  border-left: 4px solid var(--w6a19-accent);
  padding-left: 0.8rem;
}

.w6a19-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.w6a19-game-card {
  background: linear-gradient(160deg, #2a3a4a, #1a2530);
  border: 1px solid var(--w6a19-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  text-align: center;
  padding: 0.5rem 0.4rem 0.7rem;
}

.w6a19-game-card:hover {
  transform: translateY(-3px);
  border-color: var(--w6a19-coral);
  box-shadow: 0 6px 14px rgba(199,21,133,0.25);
}

.w6a19-game-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.w6a19-game-card .w6a19-game-name {
  display: block;
  font-size: 1.1rem;
  color: var(--w6a19-text);
  margin-top: 0.4rem;
  font-weight: 600;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- Feature / highlight tiles ---------- */
.w6a19-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.w6a19-tile {
  background: linear-gradient(140deg, #2c1a2a, #212F3D);
  border: 1px solid var(--w6a19-border);
  border-radius: 12px;
  padding: 1.0rem;
  text-align: center;
}

.w6a19-tile .w6a19-tile-icon {
  font-size: 2.4rem;
  color: var(--w6a19-coral);
  margin-bottom: 0.4rem;
}

.w6a19-tile h3 {
  margin: 0.2rem 0;
  font-size: 1.3rem;
  color: var(--w6a19-gold);
}

.w6a19-tile p {
  margin: 0.3rem 0 0;
  font-size: 1.15rem;
  color: var(--w6a19-text-dim);
}

/* ---------- RTP / data bars ---------- */
.w6a19-rtp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--w6a19-border);
  font-size: 1.2rem;
}

.w6a19-rtp-bar {
  flex: 1;
  height: 8px;
  background: rgba(245,245,245,0.1);
  border-radius: 6px;
  overflow: hidden;
  margin: 0 0.6rem;
}

.w6a19-rtp-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #FF0000, #FFD36E);
}

/* ---------- Testimonials ---------- */
.w6a19-testimonial {
  background: var(--w6a19-bg-alt);
  border-left: 3px solid var(--w6a19-accent-2);
  border-radius: 8px;
  padding: 0.8rem 1.0rem;
  margin: 0.6rem 0;
  font-size: 1.2rem;
  color: var(--w6a19-text-dim);
}

.w6a19-testimonial strong { color: var(--w6a19-coral); }

/* ---------- Winners ---------- */
.w6a19-winners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  font-size: 1.15rem;
}

.w6a19-winner {
  background: var(--w6a19-bg-alt);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--w6a19-border);
}

.w6a19-winner span { color: var(--w6a19-gold); font-weight: 700; }

/* ---------- Payment icons ---------- */
.w6a19-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 1.2rem;
}

.w6a19-pay {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--w6a19-bg-alt);
  border: 1px solid var(--w6a19-border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  color: var(--w6a19-text);
}

/* ---------- Footer ---------- */
.w6a19-footer {
  background: var(--w6a19-bg-alt);
  border-top: 2px solid var(--w6a19-accent-2);
  padding: 1.6rem 1.2rem 2.4rem;
  margin-top: 2.0rem;
  font-size: 1.2rem;
  color: var(--w6a19-text-dim);
}

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

.w6a19-footer-links a {
  color: var(--w6a19-coral);
  font-size: 1.18rem;
}

.w6a19-footer .w6a19-footer-copy {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* ---------- Mobile bottom navigation ---------- */
.w6a19-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: linear-gradient(90deg, #1a2530 0%, #212F3D 60%, #2c1a2a 100%);
  border-top: 2px solid var(--w6a19-accent);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.5);
}

.w6a19-bottomnav-btn {
  flex: 1 1 0;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--w6a19-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.w6a19-bottomnav-btn .material-icons,
.w6a19-bottomnav-btn i,
.w6a19-bottomnav-btn ion-icon,
.w6a19-bottomnav-btn .bi {
  font-size: 22px;
}

.w6a19-bottomnav-btn:hover { color: var(--w6a19-coral); }
.w6a19-bottomnav-btn:active { transform: scale(0.93); }

.w6a19-bottomnav-active {
  color: var(--w6a19-gold) !important;
}

.w6a19-bottomnav-active::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--w6a19-accent);
  margin-top: 2px;
}

/* ---------- Responsive: tablets & desktop ---------- */
@media (min-width: 768px) {
  .w6a19-bottomnav { display: none; }
  .w6a19-container, .w6a19-header-inner { max-width: 760px; }
}

@media (min-width: 769px) {
  main.w6a19-main { padding-bottom: 0 !important; }
}

/* On mobile, leave space for fixed bottom navigation */
@media (max-width: 768px) {
  main.w6a19-main { padding-bottom: 80px; }
  .w6a19-footer { padding-bottom: 90px; }
}
