/* pjok kelas 2 - Theme Stylesheet */
/* All classes prefixed with v68e- for namespace isolation */
/* CSS variables use --v68e- prefix */

/* === ROOT VARIABLES === */
:root {
  --v68e-primary: #FFC0CB;
  --v68e-secondary: #F8F9FA;
  --v68e-accent: #FF8A80;
  --v68e-highlight: #BAE1FF;
  --v68e-dark: #141414;
  --v68e-sienna: #A0522D;
  --v68e-bg: #141414;
  --v68e-text: #F8F9FA;
  --v68e-text-muted: #aab0b8;
  --v68e-border: rgba(255,192,203,0.15);
  --v68e-card-bg: #1e1e2a;
  --v68e-card-bg-alt: #252535;
  --v68e-gradient-warm: linear-gradient(135deg, #FF8A80 0%, #FFC0CB 50%, #BAE1FF 100%);
  --v68e-gradient-dark: linear-gradient(180deg, #141414 0%, #1e1e2a 100%);
  --v68e-radius: 1.2rem;
  --v68e-radius-sm: 0.8rem;
  --v68e-shadow: 0 4px 20px rgba(255,138,128,0.15);
  --v68e-shadow-lg: 0 8px 32px rgba(0,0,0,0.3);
  --v68e-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 62.5%;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Hind Siliguri', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--v68e-bg);
  color: var(--v68e-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* === HEADER === */
.v68e-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 52px; max-width: 430px; margin: 0 auto;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem;
  border-bottom: 1px solid var(--v68e-border);
}
.v68e-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.5rem; font-weight: 700; color: var(--v68e-primary);
  white-space: nowrap;
}
.v68e-logo img { width: 28px; height: 28px; border-radius: 0.5rem; }
.v68e-header-actions {
  display: flex; align-items: center; gap: 0.6rem;
}
.v68e-btn-register {
  background: var(--v68e-gradient-warm);
  color: var(--v68e-dark); font-weight: 700; font-size: 1.2rem;
  padding: 0.5rem 1.4rem; border-radius: 2rem;
  transition: var(--v68e-transition);
}
.v68e-btn-register:active { transform: scale(0.95); }
.v68e-btn-login {
  background: transparent; color: var(--v68e-primary);
  font-weight: 600; font-size: 1.2rem;
  padding: 0.5rem 1.2rem; border-radius: 2rem;
  border: 1px solid var(--v68e-primary);
  transition: var(--v68e-transition);
}
.v68e-btn-login:active { background: rgba(255,192,203,0.1); }
.v68e-hamburger {
  background: none; color: var(--v68e-primary); font-size: 2rem;
  padding: 0.4rem; display: flex; align-items: center;
}

/* === MOBILE MENU (SLIDE FROM RIGHT) === */
.v68e-menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
}
.v68e-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 9999;
  width: 280px; max-width: 80vw;
  background: var(--v68e-card-bg);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem 1.6rem; overflow-y: auto;
}
.v68e-mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--v68e-border);
}
.v68e-mobile-menu-header span {
  font-size: 1.6rem; font-weight: 700; color: var(--v68e-primary);
}
.v68e-menu-close {
  background: none; color: var(--v68e-text); font-size: 2rem;
  padding: 0.2rem;
}
.v68e-menu-section { margin-bottom: 1.6rem; }
.v68e-menu-section-title {
  font-size: 1.1rem; font-weight: 700; color: var(--v68e-accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}
.v68e-menu-link {
  display: block; padding: 0.7rem 0; font-size: 1.3rem;
  color: var(--v68e-text); transition: var(--v68e-transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v68e-menu-link:hover, .v68e-menu-link:active { color: var(--v68e-primary); padding-left: 0.5rem; }
.v68e-menu-promo-btn {
  display: block; width: 100%; margin-top: 1.2rem;
  background: var(--v68e-gradient-warm); color: var(--v68e-dark);
  font-weight: 700; font-size: 1.3rem; padding: 1rem;
  border-radius: var(--v68e-radius); text-align: center;
  transition: var(--v68e-transition);
}
.v68e-menu-promo-btn:active { transform: scale(0.97); }

/* === CAROUSEL === */
.v68e-carousel {
  position: relative; width: 100%; margin-top: 52px;
  overflow: hidden; border-radius: 0 0 var(--v68e-radius) var(--v68e-radius);
}
.v68e-carousel-track {
  display: flex; transition: transform 0.5s ease;
}
.v68e-carousel-slide {
  min-width: 100%; position: relative;
}
.v68e-carousel-slide img {
  width: 100%; height: 200px; object-fit: cover;
}
.v68e-carousel-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 0.6rem;
}
.v68e-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: var(--v68e-transition);
}
.v68e-dot-active { background: var(--v68e-accent); transform: scale(1.3); }

/* === MAIN CONTENT === */
.v68e-main {
  padding: 1.6rem; padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .v68e-main { padding-bottom: 8rem; }
}

/* === SECTION TITLES === */
.v68e-section-title {
  font-size: 1.8rem; font-weight: 800; margin-bottom: 1.2rem;
  color: var(--v68e-primary); position: relative;
  padding-left: 1.2rem;
}
.v68e-section-title::before {
  content: ''; position: absolute; left: 0; top: 0.2rem;
  width: 4px; height: 80%; border-radius: 2px;
  background: var(--v68e-accent);
}

/* === GAME GRID === */
.v68e-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem; margin-bottom: 2rem;
}
.v68e-game-item {
  text-align: center; cursor: pointer;
  transition: var(--v68e-transition);
  border-radius: var(--v68e-radius-sm);
  padding: 0.5rem;
}
.v68e-game-item:active { transform: scale(0.93); }
.v68e-game-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--v68e-radius-sm);
  border: 2px solid transparent;
  transition: var(--v68e-transition);
  margin-bottom: 0.4rem;
}
.v68e-game-item:hover img, .v68e-game-item:active img {
  border-color: var(--v68e-accent);
  box-shadow: 0 0 12px rgba(255,138,128,0.3);
}
.v68e-game-name {
  font-size: 1.05rem; color: var(--v68e-text);
  line-height: 1.2; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
  max-width: 100%;
}

/* === CONTENT CARDS === */
.v68e-card {
  background: var(--v68e-card-bg);
  border-radius: var(--v68e-radius);
  padding: 1.6rem; margin-bottom: 1.6rem;
  border: 1px solid var(--v68e-border);
  box-shadow: var(--v68e-shadow);
}
.v68e-card h2 {
  font-size: 1.6rem; font-weight: 700; color: var(--v68e-primary);
  margin-bottom: 1rem;
}
.v68e-card h3 {
  font-size: 1.4rem; font-weight: 600; color: var(--v68e-highlight);
  margin-bottom: 0.8rem;
}
.v68e-card p {
  font-size: 1.3rem; line-height: 1.6; color: var(--v68e-text-muted);
  margin-bottom: 0.8rem;
}
.v68e-card ul { padding-left: 1.2rem; }
.v68e-card li {
  font-size: 1.3rem; line-height: 1.6; color: var(--v68e-text-muted);
  margin-bottom: 0.4rem; list-style: disc;
}

/* === PROMO BUTTONS === */
.v68e-promo-btn {
  display: inline-block;
  background: var(--v68e-gradient-warm);
  color: var(--v68e-dark); font-weight: 700;
  font-size: 1.3rem; padding: 0.8rem 2rem;
  border-radius: 2rem; text-align: center;
  transition: var(--v68e-transition);
  cursor: pointer; border: none;
}
.v68e-promo-btn:active { transform: scale(0.95); }
.v68e-promo-btn-outline {
  display: inline-block;
  background: transparent; color: var(--v68e-accent);
  font-weight: 600; font-size: 1.2rem;
  padding: 0.6rem 1.6rem; border-radius: 2rem;
  border: 1px solid var(--v68e-accent);
  transition: var(--v68e-transition);
  cursor: pointer;
}
.v68e-promo-btn-outline:active { background: rgba(255,138,128,0.1); }
.v68e-promo-text {
  color: var(--v68e-accent); font-weight: 600;
  cursor: pointer; transition: var(--v68e-transition);
  border-bottom: 1px dashed var(--v68e-accent);
}
.v68e-promo-text:hover { color: var(--v68e-primary); }

/* === HERO SECTION === */
.v68e-hero {
  text-align: center; padding: 2rem 0;
}
.v68e-hero h1 {
  font-size: 2rem; font-weight: 800;
  background: var(--v68e-gradient-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1rem;
}
.v68e-hero p {
  font-size: 1.3rem; color: var(--v68e-text-muted);
  line-height: 1.6; margin-bottom: 1.6rem;
}

/* === WINNER SHOWCASE === */
.v68e-winners {
  background: var(--v68e-card-bg-alt);
  border-radius: var(--v68e-radius);
  padding: 1.2rem; margin-bottom: 1.6rem;
  border: 1px solid var(--v68e-border);
}
.v68e-winner-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.v68e-winner-item:last-child { border-bottom: none; }
.v68e-winner-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--v68e-gradient-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--v68e-dark);
}
.v68e-winner-info { flex: 1; }
.v68e-winner-name { font-size: 1.2rem; font-weight: 600; color: var(--v68e-text); }
.v68e-winner-game { font-size: 1rem; color: var(--v68e-text-muted); }
.v68e-winner-amount {
  font-size: 1.3rem; font-weight: 700; color: var(--v68e-accent);
}

/* === TESTIMONIALS === */
.v68e-testimonial {
  background: var(--v68e-card-bg);
  border-radius: var(--v68e-radius);
  padding: 1.2rem; margin-bottom: 1rem;
  border-left: 3px solid var(--v68e-accent);
}
.v68e-testimonial-text {
  font-size: 1.2rem; font-style: italic; color: var(--v68e-text-muted);
  margin-bottom: 0.6rem; line-height: 1.5;
}
.v68e-testimonial-author {
  font-size: 1.1rem; font-weight: 600; color: var(--v68e-highlight);
}
.v68e-testimonial-stars { color: #FFD700; font-size: 1rem; }

/* === FAQ === */
.v68e-faq-item {
  background: var(--v68e-card-bg);
  border-radius: var(--v68e-radius-sm);
  margin-bottom: 0.8rem; overflow: hidden;
  border: 1px solid var(--v68e-border);
}
.v68e-faq-q {
  padding: 1rem 1.2rem; font-weight: 600;
  color: var(--v68e-primary); font-size: 1.3rem;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center;
}
.v68e-faq-a {
  padding: 0 1.2rem 1rem; font-size: 1.2rem;
  color: var(--v68e-text-muted); line-height: 1.5;
}

/* === PAYMENT GRID === */
.v68e-payment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem; margin: 1rem 0;
}
.v68e-payment-item {
  background: var(--v68e-card-bg-alt);
  border-radius: var(--v68e-radius-sm);
  padding: 0.8rem; text-align: center;
  font-size: 1.1rem; color: var(--v68e-text-muted);
  border: 1px solid var(--v68e-border);
}

/* === PARTNERS === */
.v68e-partners {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; padding: 1.2rem 0;
}
.v68e-partner {
  background: var(--v68e-card-bg-alt);
  border-radius: var(--v68e-radius-sm);
  padding: 0.6rem 1.2rem; font-size: 1.1rem;
  color: var(--v68e-text-muted); font-weight: 600;
  border: 1px solid var(--v68e-border);
}

/* === FEATURES GRID === */
.v68e-features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem; margin: 1rem 0;
}
.v68e-feature-item {
  background: var(--v68e-card-bg-alt);
  border-radius: var(--v68e-radius-sm);
  padding: 1rem; text-align: center;
  border: 1px solid var(--v68e-border);
  transition: var(--v68e-transition);
}
.v68e-feature-item:active { border-color: var(--v68e-accent); }
.v68e-feature-icon {
  font-size: 2rem; margin-bottom: 0.4rem;
  color: var(--v68e-accent);
}
.v68e-feature-label {
  font-size: 1.1rem; font-weight: 600; color: var(--v68e-text);
}

/* === RTP TABLE === */
.v68e-rtp-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0;
}
.v68e-rtp-table th {
  background: var(--v68e-card-bg-alt);
  color: var(--v68e-primary); font-size: 1.1rem;
  padding: 0.6rem 0.8rem; text-align: left;
  font-weight: 600;
}
.v68e-rtp-table td {
  padding: 0.5rem 0.8rem; font-size: 1.1rem;
  color: var(--v68e-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.v68e-rtp-high { color: #4CAF50; font-weight: 600; }
.v68e-rtp-mid { color: #FFC107; font-weight: 600; }

/* === CTA SECTION === */
.v68e-cta {
  background: linear-gradient(135deg, rgba(255,138,128,0.15) 0%, rgba(255,192,203,0.1) 100%);
  border-radius: var(--v68e-radius);
  padding: 2rem; text-align: center;
  margin: 1.6rem 0; border: 1px solid var(--v68e-border);
}
.v68e-cta h3 {
  font-size: 1.6rem; color: var(--v68e-primary);
  margin-bottom: 0.8rem; font-weight: 700;
}
.v68e-cta p {
  font-size: 1.2rem; color: var(--v68e-text-muted);
  margin-bottom: 1.2rem;
}

/* === FOOTER === */
.v68e-footer {
  background: var(--v68e-card-bg);
  padding: 2rem 1.6rem 3rem;
  border-top: 1px solid var(--v68e-border);
}
.v68e-footer-brand {
  font-size: 1.3rem; color: var(--v68e-text-muted);
  line-height: 1.6; margin-bottom: 1.2rem;
}
.v68e-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.v68e-footer-link {
  font-size: 1.1rem; color: var(--v68e-highlight);
  padding: 0.3rem 0.6rem; transition: var(--v68e-transition);
}
.v68e-footer-link:hover { color: var(--v68e-primary); }
.v68e-footer-copy {
  font-size: 1rem; color: var(--v68e-text-muted);
  text-align: center; padding-top: 1rem;
  border-top: 1px solid var(--v68e-border);
}

/* === BOTTOM NAV === */
.v68e-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1000; max-width: 430px; margin: 0 auto;
  height: 60px;
  background: rgba(30,30,42,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-around;
  border-top: 1px solid var(--v68e-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.v68e-bottom-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.2rem;
  min-width: 60px; min-height: 48px;
  background: none; color: var(--v68e-text-muted);
  font-size: 1rem; transition: var(--v68e-transition);
  border-radius: 0.8rem; padding: 0.4rem;
}
.v68e-bottom-btn i, .v68e-bottom-btn .material-icons {
  font-size: 22px; transition: var(--v68e-transition);
}
.v68e-bottom-btn span {
  font-size: 0.95rem; font-weight: 500;
}
.v68e-bottom-btn:active {
  color: var(--v68e-accent); transform: scale(0.92);
}
.v68e-bottom-btn-active {
  color: var(--v68e-accent);
}
.v68e-bottom-btn-active i, .v68e-bottom-btn-active .material-icons {
  color: var(--v68e-accent);
}
@media (min-width: 769px) {
  .v68e-bottom-nav { display: none; }
}

/* === BACK TO TOP === */
.v68e-back-top {
  position: fixed; bottom: 72px; right: 1.2rem; z-index: 999;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--v68e-gradient-warm);
  color: var(--v68e-dark); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: var(--v68e-transition);
  box-shadow: var(--v68e-shadow);
}

/* === REVEAL ANIMATION === */
.v68e-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.v68e-revealed {
  opacity: 1; transform: translateY(0);
}

/* === DESKTOP STYLES === */
@media (min-width: 769px) {
  .v68e-main { padding-bottom: 2rem; }
  .v68e-game-grid { grid-template-columns: repeat(6, 1fr); }
}

/* === HELP PAGE STYLES === */
.v68e-help-section {
  margin-bottom: 1.6rem;
}
.v68e-help-section h2 {
  font-size: 1.6rem; font-weight: 700;
  color: var(--v68e-primary); margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--v68e-border);
}
.v68e-help-section p {
  font-size: 1.3rem; color: var(--v68e-text-muted);
  line-height: 1.6; margin-bottom: 0.6rem;
}
.v68e-step-list {
  counter-reset: v68e-step;
  padding-left: 0;
}
.v68e-step-list li {
  counter-increment: v68e-step;
  padding: 0.8rem 0 0.8rem 3rem;
  position: relative; font-size: 1.3rem;
  color: var(--v68e-text-muted); line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.v68e-step-list li::before {
  content: counter(v68e-step);
  position: absolute; left: 0; top: 0.7rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--v68e-gradient-warm);
  color: var(--v68e-dark); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* === TAG/BADGE === */
.v68e-tag {
  display: inline-block;
  background: rgba(255,138,128,0.15);
  color: var(--v68e-accent); font-size: 1rem;
  padding: 0.2rem 0.8rem; border-radius: 1rem;
  font-weight: 600;
}
.v68e-badge-hot {
  background: rgba(255,68,68,0.15);
  color: #FF4444;
}
.v68e-badge-new {
  background: rgba(76,175,80,0.15);
  color: #4CAF50;
}
