/* theme-9ad8.css - Jillitt Gaming Platform Stylesheet */
/* All classes use pg9a- prefix, variables use --pg9a- prefix */

:root {
  --pg9a-primary: #E91E63;
  --pg9a-gold: #B8860B;
  --pg9a-cream: #FFF8DC;
  --pg9a-bg: #2E4057;
  --pg9a-pink: #FFB3BA;
  --pg9a-bg-dark: #1a2a3a;
  --pg9a-bg-card: #364d66;
  --pg9a-text: #FFF8DC;
  --pg9a-text-light: #FFB3BA;
  --pg9a-border: rgba(232,30,99,0.25);
  --pg9a-shadow: 0 2px 12px rgba(0,0,0,0.3);
  --pg9a-radius: 8px;
  --pg9a-radius-sm: 4px;
  --pg9a-header-h: 56px;
  --pg9a-bnav-h: 60px;
  font-size: 62.5%;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--pg9a-bg);
  color: var(--pg9a-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--pg9a-pink); text-decoration: none; }
a:hover { color: var(--pg9a-primary); }
img { max-width: 100%; height: auto; display: block; }

/* === HEADER === */
.pg9a-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--pg9a-header-h);
  background: var(--pg9a-bg-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  border-bottom: 2px solid var(--pg9a-primary);
}

.pg9a-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.pg9a-logo img { width: 28px; height: 28px; border-radius: 50%; }

.pg9a-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pg9a-primary);
  letter-spacing: 0.5px;
}

.pg9a-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pg9a-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  border-radius: var(--pg9a-radius-sm);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.pg9a-btn-register {
  background: var(--pg9a-primary);
  color: #fff;
}
.pg9a-btn-register:hover { background: #c2185b; }

.pg9a-btn-login {
  background: transparent;
  color: var(--pg9a-gold);
  border: 1.5px solid var(--pg9a-gold);
}
.pg9a-btn-login:hover { background: var(--pg9a-gold); color: #fff; }

.pg9a-menu-toggle {
  background: none;
  border: none;
  color: var(--pg9a-cream);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

/* === MOBILE MENU === */
.pg9a-mobile-menu {
  display: none;
  position: fixed;
  top: var(--pg9a-header-h);
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--pg9a-bg-dark);
  border-bottom: 2px solid var(--pg9a-primary);
  z-index: 9999;
  padding: 1rem 0;
  animation: pg9a-slideDown 0.25s ease;
}

@keyframes pg9a-slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pg9a-mobile-menu a {
  display: block;
  padding: 1rem 1.6rem;
  font-size: 1.4rem;
  color: var(--pg9a-cream);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.pg9a-mobile-menu a:hover { background: var(--pg9a-bg-card); color: var(--pg9a-primary); }

/* === MAIN CONTENT === */
.pg9a-main {
  padding-top: calc(var(--pg9a-header-h) + 0.8rem);
  padding-bottom: 2rem;
  min-height: 100vh;
}

/* === CAROUSEL === */
.pg9a-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--pg9a-radius);
  margin-bottom: 1.2rem;
}

.pg9a-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.pg9a-carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--pg9a-radius);
}

.pg9a-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.pg9a-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}

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

/* === SECTIONS === */
.pg9a-section {
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.pg9a-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pg9a-primary);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--pg9a-gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* === GAME GRID === */
.pg9a-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.pg9a-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.pg9a-game-item:hover { transform: scale(1.05); }

.pg9a-game-item img {
  width: 56px;
  height: 56px;
  border-radius: var(--pg9a-radius-sm);
  margin: 0 auto 0.3rem;
  border: 1.5px solid var(--pg9a-border);
}

.pg9a-game-name {
  font-size: 1.05rem;
  color: var(--pg9a-cream);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === CONTENT BLOCKS === */
.pg9a-card {
  background: var(--pg9a-bg-card);
  border-radius: var(--pg9a-radius);
  padding: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid var(--pg9a-border);
}

.pg9a-card h2 {
  font-size: 1.7rem;
  color: var(--pg9a-primary);
  margin-bottom: 0.6rem;
}

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

.pg9a-card p {
  font-size: 1.3rem;
  color: var(--pg9a-cream);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.pg9a-promo-text {
  color: var(--pg9a-primary);
  font-weight: 600;
  cursor: pointer;
}
.pg9a-promo-text:hover { text-decoration: underline; }

/* === PROMO BUTTONS === */
.pg9a-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pg9a-primary), #c2185b);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 0.5rem 0;
}

.pg9a-promo-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(233,30,99,0.4);
}

/* === FOOTER === */
.pg9a-footer {
  background: var(--pg9a-bg-dark);
  padding: 2rem 1.2rem 1rem;
  border-top: 2px solid var(--pg9a-primary);
}

.pg9a-footer-desc {
  font-size: 1.2rem;
  color: var(--pg9a-text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

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

.pg9a-footer-links a {
  font-size: 1.1rem;
  color: var(--pg9a-cream);
  padding: 0.3rem 0.6rem;
  background: var(--pg9a-bg-card);
  border-radius: var(--pg9a-radius-sm);
  transition: background 0.15s;
}
.pg9a-footer-links a:hover { background: var(--pg9a-primary); color: #fff; }

.pg9a-footer-partners {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pg9a-footer-partners img {
  height: 28px;
  opacity: 0.6;
  filter: grayscale(40%);
}

.pg9a-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* === BOTTOM NAV === */
.pg9a-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--pg9a-bnav-h);
  background: var(--pg9a-bg-dark);
  border-top: 2px solid var(--pg9a-primary);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.4rem;
}

.pg9a-bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--pg9a-cream);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.3rem;
  border-radius: var(--pg9a-radius-sm);
}

.pg9a-bnav-item:hover, .pg9a-bnav-item:active {
  color: var(--pg9a-primary);
  background: rgba(233,30,99,0.1);
  transform: scale(1.08);
}

.pg9a-bnav-item .pg9a-bnav-icon { font-size: 22px; margin-bottom: 2px; }
.pg9a-bnav-item .pg9a-bnav-label { font-size: 1rem; font-weight: 500; }

/* === WINNERS TICKER === */
.pg9a-winners {
  background: var(--pg9a-bg-card);
  border-radius: var(--pg9a-radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--pg9a-gold);
}

.pg9a-winners h3 {
  font-size: 1.4rem;
  color: var(--pg9a-gold);
  margin-bottom: 0.5rem;
}

.pg9a-winner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1.2rem;
}

.pg9a-winner-name { color: var(--pg9a-pink); font-weight: 600; }
.pg9a-winner-game { color: var(--pg9a-cream); }
.pg9a-winner-amount { color: var(--pg9a-gold); font-weight: 700; }

/* === TESTIMONIALS === */
.pg9a-testimonial {
  background: var(--pg9a-bg-card);
  border-radius: var(--pg9a-radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--pg9a-primary);
}

.pg9a-testimonial-text {
  font-size: 1.2rem;
  color: var(--pg9a-cream);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.pg9a-testimonial-author {
  font-size: 1.1rem;
  color: var(--pg9a-gold);
  font-weight: 600;
}

/* === PAYMENT ICONS === */
.pg9a-payment-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}

.pg9a-payment-item {
  background: var(--pg9a-bg-card);
  padding: 0.6rem 1rem;
  border-radius: var(--pg9a-radius-sm);
  font-size: 1.2rem;
  color: var(--pg9a-cream);
  border: 1px solid var(--pg9a-border);
}

/* === CTA DOWNLOAD === */
.pg9a-cta-box {
  background: linear-gradient(135deg, var(--pg9a-bg-card), var(--pg9a-bg-dark));
  border-radius: var(--pg9a-radius);
  padding: 1.4rem;
  text-align: center;
  border: 1.5px solid var(--pg9a-gold);
  margin-bottom: 1rem;
}

.pg9a-cta-box h3 {
  font-size: 1.6rem;
  color: var(--pg9a-gold);
  margin-bottom: 0.5rem;
}

.pg9a-cta-box p {
  font-size: 1.2rem;
  color: var(--pg9a-cream);
  margin-bottom: 0.8rem;
}

/* === RTP TABLE === */
.pg9a-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.pg9a-rtp-table th {
  background: var(--pg9a-primary);
  color: #fff;
  padding: 0.5rem 0.8rem;
  text-align: left;
  font-weight: 600;
}

.pg9a-rtp-table td {
  padding: 0.4rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--pg9a-cream);
}

.pg9a-rtp-table tr:nth-child(even) { background: rgba(255,255,255,0.03); }

/* === RESPONSIVE === */
@media (min-width: 769px) {
  .pg9a-bottom-nav { display: none !important; }
}

@media (max-width: 768px) {
  .pg9a-bottom-nav { display: flex; }
  .pg9a-main { padding-bottom: calc(var(--pg9a-bnav-h) + 1rem); }
  .pg9a-footer { padding-bottom: calc(var(--pg9a-bnav-h) + 1.5rem); }
}

/* === UTILITY === */
.pg9a-text-center { text-align: center; }
.pg9a-mt-1 { margin-top: 0.8rem; }
.pg9a-mb-1 { margin-bottom: 0.8rem; }
.pg9a-hidden { display: none; }

/* === FAQ === */
.pg9a-faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--pg9a-border);
  padding-bottom: 0.8rem;
}

.pg9a-faq-q {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pg9a-primary);
  margin-bottom: 0.4rem;
}

.pg9a-faq-a {
  font-size: 1.25rem;
  color: var(--pg9a-cream);
  line-height: 1.5;
}
