/* Arena Plus Login - Core Stylesheet */
/* All classes use g06b- prefix for namespace isolation */

/* CSS Variables */
:root {
  --g06b-primary: #BA55D3;
  --g06b-secondary: #DA70D6;
  --g06b-accent: #FFC0CB;
  --g06b-bg: #273746;
  --g06b-bg-dark: #1a2632;
  --g06b-bg-card: #2c3e50;
  --g06b-text: #F5F5F5;
  --g06b-text-muted: #bdc3c7;
  --g06b-border: #3d566e;
  --g06b-gradient: linear-gradient(135deg, #BA55D3, #DA70D6);
  --g06b-shadow: 0 4px 15px rgba(0,0,0,0.3);
  --g06b-radius: 10px;
  --g06b-radius-sm: 6px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--g06b-bg);
  color: var(--g06b-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--g06b-accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--g06b-secondary); }
img { max-width: 100%; height: auto; display: block; }

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

/* Header */
.g06b-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(180deg, #1a2632 0%, #273746 100%);
  border-bottom: 2px solid var(--g06b-primary);
  padding: 0.8rem 1rem;
}
.g06b-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.g06b-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.g06b-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.g06b-logo-area span {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--g06b-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.g06b-header-btns {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.g06b-btn-register {
  background: var(--g06b-gradient);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.g06b-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(186,85,211,0.5);
}
.g06b-btn-login {
  background: transparent;
  color: var(--g06b-accent);
  border: 1.5px solid var(--g06b-accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.g06b-btn-login:hover {
  background: rgba(255,192,203,0.15);
}
.g06b-menu-toggle {
  background: none;
  border: none;
  color: var(--g06b-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Overlay */
.g06b-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.g06b-overlay-active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Slide Menu */
.g06b-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--g06b-bg-dark);
  z-index: 9999;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.g06b-menu-active {
  right: 0;
}
.g06b-mobile-menu .g06b-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--g06b-border);
}
.g06b-mobile-menu .g06b-menu-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--g06b-primary);
}
.g06b-mobile-menu .g06b-menu-close {
  background: none;
  border: none;
  color: var(--g06b-text);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.g06b-mobile-menu ul {
  list-style: none;
}
.g06b-mobile-menu ul li {
  border-bottom: 1px solid var(--g06b-border);
}
.g06b-mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0.5rem;
  color: var(--g06b-text);
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.2s;
}
.g06b-mobile-menu ul li a:hover {
  color: var(--g06b-primary);
  padding-left: 1rem;
}
.g06b-mobile-menu ul li a .material-icons {
  font-size: 20px;
  color: var(--g06b-secondary);
}

/* Carousel */
.g06b-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--g06b-radius);
  margin-top: 1rem;
}
.g06b-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.g06b-slide-active {
  display: block;
  animation: g06b-fadeIn 0.5s ease;
}
.g06b-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--g06b-radius);
}
.g06b-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 0;
}
.g06b-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g06b-border);
  cursor: pointer;
  transition: all 0.3s;
}
.g06b-dot-active {
  background: var(--g06b-primary);
  transform: scale(1.3);
}

@keyframes g06b-fadeIn {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Main Content */
.g06b-main {
  padding-top: 6rem;
  min-height: 60vh;
}
@media (max-width: 768px) {
  .g06b-main {
    padding-bottom: 8rem;
  }
}

/* Section Titles */
.g06b-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g06b-text);
  margin: 2rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--g06b-primary);
  line-height: 1.3;
}
.g06b-section-subtitle {
  font-size: 1.4rem;
  color: var(--g06b-text-muted);
  margin-bottom: 1rem;
  padding-left: 1rem;
}

/* Game Grid */
.g06b-game-section { margin-bottom: 2rem; }
.g06b-game-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--g06b-primary);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--g06b-border);
}
.g06b-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.g06b-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: var(--g06b-radius-sm);
  overflow: hidden;
}
.g06b-game-item:hover {
  transform: translateY(-3px);
}
.g06b-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--g06b-radius-sm);
  border: 1.5px solid var(--g06b-border);
  transition: border-color 0.2s;
}
.g06b-game-item:hover img {
  border-color: var(--g06b-primary);
}
.g06b-game-item span {
  display: block;
  font-size: 1.1rem;
  color: var(--g06b-text-muted);
  margin-top: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.2rem;
}

/* Content Cards */
.g06b-card {
  background: var(--g06b-bg-card);
  border-radius: var(--g06b-radius);
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid var(--g06b-border);
  box-shadow: var(--g06b-shadow);
}
.g06b-card h3 {
  font-size: 1.5rem;
  color: var(--g06b-primary);
  margin-bottom: 0.8rem;
}
.g06b-card p {
  font-size: 1.3rem;
  color: var(--g06b-text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.g06b-card ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.g06b-card ul li {
  font-size: 1.3rem;
  color: var(--g06b-text-muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

/* Promo CTA */
.g06b-cta {
  display: inline-block;
  background: var(--g06b-gradient);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}
.g06b-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(186,85,211,0.5);
}
.g06b-text-link {
  color: var(--g06b-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.g06b-text-link:hover {
  color: var(--g06b-secondary);
}

/* H1 */
.g06b-h1 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin: 1.5rem 0;
  background: var(--g06b-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  padding: 0 0.5rem;
}

/* Footer */
.g06b-footer {
  background: var(--g06b-bg-dark);
  padding: 2rem 1.2rem;
  margin-top: 2rem;
  border-top: 2px solid var(--g06b-primary);
}
.g06b-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}
.g06b-footer-brand p {
  font-size: 1.2rem;
  color: var(--g06b-text-muted);
  line-height: 1.5;
  max-width: 350px;
  margin: 0 auto;
}
.g06b-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 0;
}
.g06b-footer-links a {
  background: var(--g06b-bg-card);
  color: var(--g06b-text);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 1.1rem;
  border: 1px solid var(--g06b-border);
  transition: all 0.2s;
}
.g06b-footer-links a:hover {
  border-color: var(--g06b-primary);
  color: var(--g06b-primary);
}
.g06b-footer-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.2rem 0;
}
.g06b-footer-promo button {
  background: var(--g06b-gradient);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}
.g06b-footer-promo button:hover {
  transform: scale(1.05);
}
.g06b-footer-copy {
  text-align: center;
  font-size: 1.1rem;
  color: var(--g06b-text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--g06b-border);
}

/* Bottom Navigation */
.g06b-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(180deg, #2c3e50 0%, #1a2632 100%);
  border-top: 2px solid var(--g06b-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 0.3rem;
}
.g06b-bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--g06b-text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 60px;
  min-height: 56px;
  transition: all 0.2s;
  gap: 0.2rem;
}
.g06b-bottom-nav button:hover,
.g06b-bottom-nav button:focus {
  color: var(--g06b-primary);
  transform: scale(1.1);
}
.g06b-bottom-nav button .g06b-nav-icon {
  font-size: 22px;
  line-height: 1;
}
.g06b-bottom-nav button .g06b-nav-label {
  font-size: 1rem;
  white-space: nowrap;
}
.g06b-bottom-nav .g06b-nav-active {
  color: var(--g06b-primary);
}
.g06b-bottom-nav .g06b-nav-active .g06b-nav-icon {
  filter: drop-shadow(0 0 4px rgba(186,85,211,0.6));
}

/* Responsive: hide bottom nav on desktop */
@media (min-width: 769px) {
  .g06b-bottom-nav { display: none; }
}
@media (max-width: 768px) {
  .g06b-main { padding-bottom: 8rem; }
}

/* Help page styles */
.g06b-help-content {
  padding: 1rem 0;
}
.g06b-help-content h2 {
  font-size: 1.6rem;
  color: var(--g06b-primary);
  margin: 1.5rem 0 0.8rem;
}
.g06b-help-content p {
  font-size: 1.3rem;
  color: var(--g06b-text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.g06b-help-content ol,
.g06b-help-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.g06b-help-content li {
  font-size: 1.3rem;
  color: var(--g06b-text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Testimonial component */
.g06b-testimonial {
  background: var(--g06b-bg-card);
  border-radius: var(--g06b-radius);
  padding: 1.2rem;
  margin: 0.8rem 0;
  border-left: 3px solid var(--g06b-primary);
}
.g06b-testimonial p {
  font-size: 1.2rem;
  color: var(--g06b-text-muted);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.g06b-testimonial strong {
  color: var(--g06b-accent);
  font-size: 1.2rem;
}

/* Winner showcase */
.g06b-winner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--g06b-bg-card);
  border-radius: var(--g06b-radius-sm);
  padding: 0.8rem;
  margin: 0.5rem 0;
}
.g06b-winner img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--g06b-primary);
}
.g06b-winner-info span {
  display: block;
  font-size: 1.1rem;
  color: var(--g06b-text-muted);
}
.g06b-winner-info strong {
  color: var(--g06b-accent);
  font-size: 1.3rem;
}

/* Payment methods */
.g06b-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}
.g06b-payment-item {
  background: var(--g06b-bg-card);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  color: var(--g06b-text-muted);
  border: 1px solid var(--g06b-border);
}

/* App download CTA */
.g06b-app-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(186,85,211,0.2), rgba(218,112,214,0.15));
  border-radius: var(--g06b-radius);
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid var(--g06b-primary);
}

/* FAQ accordion styles */
.g06b-faq-item {
  background: var(--g06b-bg-card);
  border-radius: var(--g06b-radius-sm);
  margin: 0.5rem 0;
  overflow: hidden;
  border: 1px solid var(--g06b-border);
}
.g06b-faq-item h3 {
  font-size: 1.3rem;
  color: var(--g06b-text);
  padding: 1rem;
  cursor: default;
}
.g06b-faq-item p {
  font-size: 1.2rem;
  color: var(--g06b-text-muted);
  padding: 0 1rem 1rem;
  line-height: 1.5;
}

/* Badge / highlight */
.g06b-badge {
  display: inline-block;
  background: var(--g06b-gradient);
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
}

/* RTP table */
.g06b-rtp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.g06b-rtp-table th,
.g06b-rtp-table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--g06b-border);
}
.g06b-rtp-table th {
  color: var(--g06b-primary);
  font-weight: 700;
}
.g06b-rtp-table td {
  color: var(--g06b-text-muted);
}
