/* swerte77 login - core base styles
   Prefix: v742- | Palette: #9932CC #FF69B4 #2E4057 #FFC0CB #DDA0DD
   Mobile-first. Root font 62.5% => 1rem = 10px.
*/

:root {
  --v742-primary: #9932CC;
  --v742-pink: #FF69B4;
  --v742-bg-dark: #2E4057;
  --v742-cream: #FFC0CB;
  --v742-lilac: #DDA0DD;
  --v742-text: #ffffff;
  --v742-text-muted: #e9d6f0;
  --v742-bg-deep: #1d2937;
  --v742-gold: #ffd166;
  --v742-radius: 1.2rem;
  --v742-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.35);
}

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

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

html, body {
  background: linear-gradient(160deg, var(--v742-bg-deep) 0%, var(--v742-bg-dark) 60%, #3a2a52 100%);
  color: var(--v742-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  line-height: 1.5rem;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--v742-cream); text-decoration: none; }
a:hover { color: var(--v742-pink); }

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

main { padding-bottom: 80px; }

/* ============ Header ============ */
.v742-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--v742-primary), var(--v742-pink));
  box-shadow: var(--v742-shadow);
}
.v742-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  max-width: 430px;
  margin: 0 auto;
}
.v742-brand { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.v742-brand img { width: 2.8rem; height: 2.8rem; border-radius: 50%; }
.v742-brand-name { font-weight: 800; font-size: 1.45rem; color: #fff; letter-spacing: 0.02em; }
.v742-brand-name span { color: var(--v742-gold); }

.v742-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.v742-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 3.6rem;
}
.v742-btn:active { transform: scale(0.96); }
.v742-btn-login { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.v742-btn-register { background: var(--v742-gold); color: #2E4057; box-shadow: 0 0.3rem 0 rgba(0,0,0,0.25); }
.v742-btn-register:hover { color: #2E4057; }

.v742-icon-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ============ Mobile Menu ============ */
.v742-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--v742-bg-deep);
  z-index: 9999;
  padding: 6rem 1.2rem 2rem;
  max-height: 100vh;
  overflow-y: auto;
  box-shadow: var(--v742-shadow);
}
.v742-mobile-menu.v742-menu-open { display: block; animation: v742slide 0.25s ease; }
@keyframes v742slide { from { transform: translateY(-12px); opacity: 0.4; } to { transform: translateY(0); opacity: 1; } }
.v742-mobile-menu a {
  display: block;
  padding: 1rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
}
.v742-mobile-menu a:hover { background: rgba(153,50,204,0.25); color: var(--v742-cream); padding-left: 1.2rem; }
.v742-menu-close { position: absolute; top: 1.2rem; right: 1.2rem; background: transparent; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* ============ Carousel ============ */
.v742-carousel { position: relative; margin: 1rem 0; border-radius: var(--v742-radius); overflow: hidden; box-shadow: var(--v742-shadow); }
.v742-slide { display: none; cursor: pointer; position: relative; }
.v742-slide img { width: 100%; height: auto; min-height: 16rem; object-fit: cover; }
.v742-slide.v742-slide-active { display: block; animation: v742fade 0.6s ease; }
@keyframes v742fade { from { opacity: 0.3; } to { opacity: 1; } }
.v742-slide-cap {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(46,64,87,0.7);
  padding: 0.6rem 1rem; border-radius: 0.8rem;
  font-size: 1.2rem; font-weight: 700; color: #fff;
}
.v742-dots { position: absolute; bottom: 0.8rem; right: 1rem; display: flex; gap: 0.4rem; }
.v742-dot { width: 0.7rem; height: 0.7rem; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; }
.v742-dot.v742-dot-active { background: var(--v742-gold); width: 1.8rem; border-radius: 0.4rem; }

/* ============ Sections ============ */
.v742-section { margin: 1.6rem 0; }
.v742-section-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  padding-left: 0.8rem;
  border-left: 0.4rem solid var(--v742-gold);
  color: #fff;
}
.v742-section-title span { color: var(--v742-lilac); }
.v742-lead { font-size: 1.25rem; color: var(--v742-text-muted); margin-bottom: 0.8rem; }

.v742-h1 {
  font-size: 1.9rem;
  line-height: 2.4rem;
  font-weight: 800;
  margin: 1rem 0;
  color: #fff;
}
.v742-h1 span { color: var(--v742-pink); }
.v742-h2 { font-size: 1.5rem; font-weight: 700; margin: 1.2rem 0 0.6rem; color: var(--v742-cream); }
.v742-h3 { font-size: 1.3rem; font-weight: 700; margin: 0.8rem 0 0.4rem; color: var(--v742-lilac); }

.v742-p { font-size: 1.22rem; color: var(--v742-text-muted); margin-bottom: 0.7rem; }

/* ============ Game Grid ============ */
.v742-cat-head {
  display: flex; align-items: center; gap: 0.6rem;
  margin: 1.2rem 0 0.8rem;
  font-size: 1.4rem; font-weight: 800; color: #fff;
}
.v742-cat-head i { color: var(--v742-gold); }

.v742-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.v742-game-card {
  background: rgba(255,255,255,0.06);
  border-radius: 0.8rem;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid rgba(255,255,255,0.08);
}
.v742-game-card:hover { transform: translateY(-0.3rem); box-shadow: var(--v742-shadow); border-color: var(--v742-pink); }
.v742-game-card img { width: 100%; height: auto; border-radius: 0.6rem; }
.v742-game-card .v742-game-name {
  font-size: 1rem;
  color: #fff;
  margin-top: 0.3rem;
  font-weight: 600;
  line-height: 1.2rem;
  min-height: 2.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============ Cards / Info blocks ============ */
.v742-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--v742-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.v742-card-accent { border-left: 0.4rem solid var(--v742-pink); }

.v742-cta-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1rem 0; }
.v742-cta-row .v742-btn { flex: 1; min-width: 12rem; }

.v742-link-text {
  color: var(--v742-gold);
  font-weight: 700;
  border-bottom: 1px dashed var(--v742-gold);
  cursor: pointer;
}
.v742-link-text:hover { color: var(--v742-pink); border-bottom-color: var(--v742-pink); }

/* Lists */
.v742-list { list-style: none; padding-left: 0; }
.v742-list li { padding: 0.4rem 0 0.4rem 1.8rem; position: relative; font-size: 1.2rem; color: var(--v742-text-muted); }
.v742-list li::before { content: "\f005"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--v742-gold); position: absolute; left: 0; top: 0.4rem; font-size: 1rem; }

/* RTP table */
.v742-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.15rem; margin-top: 0.5rem; }
.v742-rtp-table th, .v742-rtp-table td { padding: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: left; }
.v742-rtp-table th { color: var(--v742-gold); font-weight: 700; }
.v742-rtp-table td:last-child { color: var(--v742-pink); font-weight: 700; }

/* Testimonials */
.v742-testi { background: rgba(255,255,255,0.06); border-radius: 0.9rem; padding: 1rem; margin-bottom: 0.8rem; border-left: 0.35rem solid var(--v742-pink); }
.v742-testi p { font-size: 1.15rem; color: var(--v742-text-muted); font-style: italic; }
.v742-testi .v742-author { margin-top: 0.5rem; font-size: 1.05rem; color: var(--v742-gold); font-weight: 700; }

/* Payment chips */
.v742-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.v742-chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 0.5rem 0.9rem; border-radius: 1rem; font-size: 1.1rem; color: #fff; display: inline-flex; align-items: center; gap: 0.4rem; }

/* Winners */
.v742-winner { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px dashed rgba(255,255,255,0.1); font-size: 1.15rem; }
.v742-winner span:last-child { color: var(--v742-gold); font-weight: 700; }

/* ============ Footer ============ */
.v742-footer {
  background: var(--v742-bg-deep);
  padding: 1.6rem 1.2rem 2rem;
  margin-top: 1.6rem;
  border-top: 0.3rem solid var(--v742-primary);
}
.v742-footer h3 { color: var(--v742-cream); font-size: 1.3rem; margin-bottom: 0.6rem; }
.v742-footer p { font-size: 1.15rem; color: var(--v742-text-muted); margin-bottom: 0.8rem; }
.v742-footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin: 0.8rem 0; }
.v742-footer-links a { color: var(--v742-lilac); font-size: 1.1rem; }
.v742-footer-links a:hover { color: var(--v742-gold); }
.v742-copy { font-size: 1rem; color: rgba(255,255,255,0.5); margin-top: 1rem; text-align: center; }

/* ============ Bottom Nav ============ */
.v742-bnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(90deg, var(--v742-bg-deep), var(--v742-bg-dark));
  border-top: 0.2rem solid var(--v742-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -0.3rem 1rem rgba(0,0,0,0.4);
}
.v742-bnav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #cbb6dd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.4rem;
  min-width: 60px;
  min-height: 60px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s ease, transform 0.18s ease;
}
.v742-bnav-btn i, .v742-bnav-btn .material-icons-outlined, .v742-bnav-btn ion-icon {
  font-size: 2.2rem;
}
.v742-bnav-btn:active { transform: scale(0.92); color: var(--v742-gold); }
.v742-bnav-btn:hover { color: var(--v742-pink); }
.v742-bnav-active { color: var(--v742-gold); }
.v742-bnav-pulse { animation: v742pulse 2s ease-in-out infinite; }
@keyframes v742pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ============ Desktop ============ */
.v742-desktop-nav { display: none; }

@media (min-width: 769px) {
  .v742-bnav { display: none; }
  main { padding-bottom: 2rem; }
  .v742-container { max-width: 960px; }
  .v742-header-inner { max-width: 960px; }
  .v742-grid { grid-template-columns: repeat(6, 1fr); }
  .v742-desktop-nav { display: flex; gap: 1.4rem; align-items: center; }
  .v742-desktop-nav a { color: #fff; font-size: 1.15rem; font-weight: 600; }
  .v742-desktop-nav a:hover { color: var(--v742-gold); }
}

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