/**
 * OK Laro - Core Stylesheet
 * Prefix: v92e-
 * Mobile-first design, max-width 430px
 */

:root {
  --v92e-primary: #8470FF;
  --v92e-accent: #66CDAA;
  --v92e-bg: #2C2C2C;
  --v92e-bg-dark: #1a1a1a;
  --v92e-bg-card: #333333;
  --v92e-text: #DEE2E6;
  --v92e-text-muted: #999;
  --v92e-green: #90EE90;
  --v92e-forest: #228B22;
  --v92e-radius: 8px;
  --v92e-radius-lg: 12px;
  --v92e-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --v92e-transition: all 0.3s ease;
  font-size: 62.5%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--v92e-bg);
  color: var(--v92e-text);
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.v92e-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--v92e-bg-dark);
  z-index: 1000;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--v92e-transition);
  border-bottom: 1px solid rgba(132,112,255,0.15);
}

.v92e-header-scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  border-bottom-color: var(--v92e-primary);
}

.v92e-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.v92e-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.v92e-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v92e-primary);
  letter-spacing: 0.5px;
}

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

.v92e-btn-register,
.v92e-btn-login {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--v92e-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v92e-transition);
  min-height: 32px;
  min-width: 44px;
}

.v92e-btn-register {
  background: linear-gradient(135deg, var(--v92e-primary), #6a5acd);
  color: #fff;
}

.v92e-btn-register:active {
  transform: scale(0.95);
  background: linear-gradient(135deg, #6a5acd, var(--v92e-primary));
}

.v92e-btn-login {
  background: transparent;
  color: var(--v92e-accent);
  border: 1.5px solid var(--v92e-accent);
}

.v92e-btn-login:active {
  background: var(--v92e-accent);
  color: var(--v92e-bg-dark);
}

.v92e-menu-toggle {
  background: none;
  border: none;
  color: var(--v92e-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MOBILE MENU ===== */
.v92e-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.v92e-overlay-active {
  opacity: 1;
  pointer-events: auto;
}

.v92e-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--v92e-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.v92e-menu-active {
  right: 0;
}

.v92e-menu-close {
  background: none;
  border: none;
  color: var(--v92e-text);
  font-size: 2.2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v92e-menu-links {
  list-style: none;
  margin-top: 3rem;
}

.v92e-menu-links li {
  margin-bottom: 0.2rem;
}

.v92e-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  color: var(--v92e-text);
  text-decoration: none;
  font-size: 1.4rem;
  border-radius: var(--v92e-radius);
  transition: var(--v92e-transition);
  min-height: 44px;
}

.v92e-menu-links a:hover,
.v92e-menu-links a:active {
  background: rgba(132,112,255,0.15);
  color: var(--v92e-primary);
}

.v92e-menu-links a .material-icons {
  font-size: 2rem;
  color: var(--v92e-accent);
}

/* ===== SLIDER ===== */
.v92e-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--v92e-radius-lg);
  margin-top: 52px;
}

.v92e-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.v92e-slide {
  min-width: 100%;
  cursor: pointer;
}

.v92e-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--v92e-radius-lg);
}

.v92e-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 0;
}

.v92e-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--v92e-transition);
  min-width: 44px;
  min-height: 44px;
  position: relative;
}

.v92e-dot::after {
  content: '';
  position: absolute;
  inset: 50% 50% 50% 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.v92e-dot-active {
  background: transparent;
}

.v92e-dot-active::after {
  background: var(--v92e-primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== CONTAINER & LAYOUT ===== */
.v92e-container {
  padding: 0 1rem;
  max-width: 430px;
  margin: 0 auto;
}

.v92e-section {
  padding: 2rem 0;
}

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

.v92e-section-title .material-icons {
  font-size: 2.2rem;
  color: var(--v92e-accent);
}

/* ===== GAME GRID ===== */
.v92e-game-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v92e-accent);
  margin: 1.5rem 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v92e-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.v92e-game-item {
  text-align: center;
  cursor: pointer;
  transition: var(--v92e-transition);
  border-radius: var(--v92e-radius);
  padding: 0.4rem;
}

.v92e-game-item:active {
  transform: scale(0.93);
  background: rgba(132,112,255,0.1);
}

.v92e-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--v92e-radius);
  margin-bottom: 0.3rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.v92e-game-item span {
  display: block;
  font-size: 1rem;
  color: var(--v92e-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== CONTENT CARDS ===== */
.v92e-card {
  background: var(--v92e-bg-card);
  border-radius: var(--v92e-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(132,112,255,0.1);
}

.v92e-card h2 {
  font-size: 1.6rem;
  color: var(--v92e-primary);
  margin-bottom: 1rem;
}

.v92e-card h3 {
  font-size: 1.4rem;
  color: var(--v92e-accent);
  margin-bottom: 0.8rem;
}

.v92e-card p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--v92e-text);
  margin-bottom: 0.8rem;
}

/* ===== PROMO BUTTON ===== */
.v92e-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--v92e-primary), #6a5acd);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--v92e-radius);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--v92e-transition);
  min-height: 44px;
  text-decoration: none;
  width: 100%;
  max-width: 300px;
  margin: 0.5rem auto;
}

.v92e-promo-btn:active {
  transform: scale(0.96);
  opacity: 0.9;
}

.v92e-promo-btn-outline {
  background: transparent;
  border: 2px solid var(--v92e-accent);
  color: var(--v92e-accent);
}

.v92e-promo-text {
  color: var(--v92e-green);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--v92e-transition);
}

.v92e-promo-text:hover {
  color: var(--v92e-primary);
  text-decoration: underline;
}

/* ===== BOTTOM NAVIGATION ===== */
.v92e-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--v92e-bg-dark);
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  border-top: 1px solid rgba(132,112,255,0.2);
  padding: 0 0.3rem;
}

.v92e-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--v92e-text-muted);
  cursor: pointer;
  transition: var(--v92e-transition);
  padding: 0.3rem;
  text-decoration: none;
  gap: 0.2rem;
}

.v92e-bottom-nav-btn:active {
  transform: scale(0.9);
}

.v92e-bottom-nav-btn i,
.v92e-bottom-nav-btn .material-icons {
  font-size: 22px;
  transition: var(--v92e-transition);
}

.v92e-bottom-nav-btn span {
  font-size: 1rem;
  white-space: nowrap;
}

.v92e-btn-active {
  color: var(--v92e-primary) !important;
}

.v92e-btn-active i,
.v92e-btn-active .material-icons {
  color: var(--v92e-primary);
}

/* ===== FOOTER ===== */
.v92e-footer {
  background: var(--v92e-bg-dark);
  padding: 2rem 1rem 6rem;
  border-top: 1px solid rgba(132,112,255,0.15);
}

.v92e-footer-desc {
  font-size: 1.2rem;
  color: var(--v92e-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.v92e-footer-links a {
  color: var(--v92e-accent);
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--v92e-transition);
  padding: 0.3rem 0;
}

.v92e-footer-links a:hover {
  color: var(--v92e-primary);
}

.v92e-footer-affiliate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.v92e-footer-affiliate button {
  flex: 1;
  min-width: 120px;
  padding: 0.7rem 1rem;
  background: rgba(132,112,255,0.15);
  border: 1px solid var(--v92e-primary);
  color: var(--v92e-primary);
  border-radius: var(--v92e-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v92e-transition);
  min-height: 44px;
}

.v92e-footer-affiliate button:active {
  background: var(--v92e-primary);
  color: #fff;
}

.v92e-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: var(--v92e-text-muted);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== UTILITY CLASSES ===== */
.v92e-text-center { text-align: center; }
.v92e-text-primary { color: var(--v92e-primary); }
.v92e-text-accent { color: var(--v92e-accent); }
.v92e-text-green { color: var(--v92e-green); }
.v92e-mt-1 { margin-top: 1rem; }
.v92e-mb-1 { margin-bottom: 1rem; }
.v92e-py-1 { padding: 1rem 0; }

.v92e-divider {
  border: none;
  height: 1px;
  background: rgba(132,112,255,0.15);
  margin: 1.5rem 0;
}

.v92e-badge {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
}

.v92e-badge-hot {
  background: rgba(255,69,0,0.2);
  color: #ff6347;
}

.v92e-badge-new {
  background: rgba(34,139,34,0.2);
  color: var(--v92e-green);
}

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

.v92e-rtp-table th,
.v92e-rtp-table td {
  padding: 0.6rem 0.4rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.v92e-rtp-table th {
  color: var(--v92e-accent);
  font-weight: 600;
}

.v92e-rtp-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.v92e-rtp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--v92e-accent), var(--v92e-green));
  border-radius: 3px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) {
  .v92e-bottom-nav {
    display: none;
  }
  .v92e-footer {
    padding-bottom: 2rem;
  }
}

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

/* ===== ANIMATIONS ===== */
@keyframes v92e_fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.v92e-animate-in {
  animation: v92e_fadeIn 0.4s ease forwards;
}
