/**
 * pkoko.click - Main Stylesheet
 * Prefix: ga57-
 * Color palette: #EEEEEE, #FA8072, #8B7355, #FF91A4, #FFDEAD, #333333
 * Font: Hind Siliguri
 */

/* === CSS Variables === */
:root {
  --ga57-primary: #FA8072;
  --ga57-bg: #333333;
  --ga57-bg-light: #3d3d3d;
  --ga57-text: #EEEEEE;
  --ga57-accent: #FF91A4;
  --ga57-highlight: #FFDEAD;
  --ga57-border: #8B7355;
  --ga57-brown: #8B7355;
  --ga57-coral: #FA8072;
  --ga57-pink: #FF91A4;
  --ga57-cream: #FFDEAD;
  --ga57-dark: #333333;
  --ga57-font: 'Hind Siliguri', sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ga57-font);
  background: var(--ga57-bg);
  color: var(--ga57-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(--ga57-accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === Header === */
.ga57-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 52px;
  background: linear-gradient(135deg, #2a2a2a 0%, var(--ga57-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(139,115,85,0.3);
}
.ga57-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ga57-cream);
  cursor: pointer;
}
.ga57-logo img { width: 28px; height: 28px; border-radius: 6px; }
.ga57-logo span { background: linear-gradient(90deg, var(--ga57-cream), var(--ga57-coral)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ga57-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.ga57-btn-register {
  background: linear-gradient(135deg, var(--ga57-coral), var(--ga57-pink));
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--ga57-font);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ga57-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 12px rgba(250,128,114,0.4); }
.ga57-btn-login {
  background: transparent;
  color: var(--ga57-cream);
  border: 1px solid var(--ga57-brown);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--ga57-font);
  transition: border-color 0.2s;
}
.ga57-btn-login:hover { border-color: var(--ga57-coral); }
.ga57-hamburger {
  background: none;
  border: none;
  color: var(--ga57-cream);
  font-size: 2rem;
  cursor: pointer;
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
}

/* === Mobile Menu === */
.ga57-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.ga57-menu-overlay.ga57-active { opacity: 1; visibility: visible; }
.ga57-mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #2a2a2a, var(--ga57-bg));
  z-index: 9999;
  transition: left 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.ga57-mobile-menu.ga57-active { left: 0; }
.ga57-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.ga57-menu-title { font-size: 2rem; font-weight: 700; color: var(--ga57-cream); }
.ga57-menu-close { background: none; border: none; color: var(--ga57-cream); font-size: 2.2rem; cursor: pointer; }
.ga57-menu-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139,115,85,0.2);
  color: var(--ga57-text);
  font-size: 1.4rem;
  transition: color 0.2s;
}
.ga57-menu-nav a:hover { color: var(--ga57-coral); }
.ga57-menu-nav a i { font-size: 1.8rem; width: 24px; text-align: center; }

/* === Carousel === */
.ga57-carousel {
  position: relative;
  width: 100%;
  margin-top: 52px;
  overflow: hidden;
  border-radius: 0 0 1.2rem 1.2rem;
}
.ga57-carousel-inner { position: relative; width: 100%; aspect-ratio: 16/9; }
.ga57-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  cursor: pointer;
}
.ga57-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.ga57-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(51,51,51,0.6);
  color: var(--ga57-cream);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ga57-carousel-btn.ga57-prev { left: 0.8rem; }
.ga57-carousel-btn.ga57-next { right: 0.8rem; }
.ga57-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}
.ga57-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(238,238,238,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.ga57-carousel-dot.ga57-dot-active { background: var(--ga57-coral); width: 20px; border-radius: 4px; }

/* === Main Content === */
.ga57-main { padding: 1rem; padding-bottom: 2rem; }
@media (max-width: 768px) { .ga57-main { padding-bottom: 80px; } }

/* === Section Titles === */
.ga57-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ga57-cream);
  margin: 1.5rem 0 1rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--ga57-coral);
  line-height: 2.2rem;
}
.ga57-section-title i { margin-right: 0.5rem; color: var(--ga57-coral); }

/* === H1 Title === */
.ga57-h1-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--ga57-cream);
  margin: 1.5rem 0;
  line-height: 2.6rem;
}

/* === Game Grid === */
.ga57-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.ga57-game-item {
  text-align: center;
  cursor: pointer;
  border-radius: 0.8rem;
  overflow: hidden;
  background: var(--ga57-bg-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ga57-game-item:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(250,128,114,0.2); }
.ga57-game-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.ga57-game-item p {
  font-size: 1.1rem;
  padding: 0.4rem 0.2rem;
  color: var(--ga57-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4rem;
}

/* === Content Cards === */
.ga57-card {
  background: var(--ga57-bg-light);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(139,115,85,0.15);
}
.ga57-card h2 {
  font-size: 1.6rem;
  color: var(--ga57-cream);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ga57-card h3 {
  font-size: 1.4rem;
  color: var(--ga57-coral);
  margin: 0.8rem 0 0.4rem;
}
.ga57-card p {
  font-size: 1.3rem;
  line-height: 2rem;
  color: rgba(238,238,238,0.85);
  margin-bottom: 0.5rem;
}

/* === Promo Buttons === */
.ga57-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--ga57-coral), var(--ga57-pink));
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--ga57-font);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.ga57-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(250,128,114,0.4); }
.ga57-promo-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ga57-coral);
  padding: 0.7rem 1.8rem;
  border-radius: 2.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--ga57-coral);
  font-family: var(--ga57-font);
  transition: background 0.2s, color 0.2s;
}
.ga57-promo-btn-outline:hover { background: var(--ga57-coral); color: #fff; }
.ga57-promo-text { color: var(--ga57-coral); font-weight: 600; cursor: pointer; }
.ga57-promo-text:hover { text-decoration: underline; }

/* === Partners === */
.ga57-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}
.ga57-partner-item {
  background: var(--ga57-bg-light);
  border: 1px solid rgba(139,115,85,0.2);
  border-radius: 0.6rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  color: var(--ga57-brown);
  font-weight: 600;
}

/* === Winners Table === */
.ga57-winners-table { width: 100%; border-collapse: collapse; }
.ga57-winners-table th {
  background: rgba(139,115,85,0.2);
  color: var(--ga57-cream);
  font-size: 1.2rem;
  padding: 0.6rem;
  text-align: left;
  font-weight: 600;
}
.ga57-winners-table td {
  padding: 0.5rem 0.6rem;
  font-size: 1.2rem;
  color: var(--ga57-text);
  border-bottom: 1px solid rgba(139,115,85,0.1);
}
.ga57-winners-table tr:hover td { background: rgba(250,128,114,0.05); }

/* === Testimonials === */
.ga57-testimonial {
  background: rgba(139,115,85,0.1);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--ga57-coral);
}
.ga57-testimonial-name { font-weight: 700; color: var(--ga57-cream); font-size: 1.3rem; }
.ga57-testimonial-text { font-size: 1.2rem; color: rgba(238,238,238,0.8); margin-top: 0.4rem; line-height: 1.8rem; }
.ga57-testimonial-stars { color: #FFD700; font-size: 1.2rem; }

/* === Payment Grid === */
.ga57-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.ga57-payment-item {
  text-align: center;
  padding: 0.8rem 0.4rem;
  background: rgba(139,115,85,0.1);
  border-radius: 0.6rem;
  font-size: 1.2rem;
  color: var(--ga57-text);
}
.ga57-payment-item i { font-size: 2rem; color: var(--ga57-coral); display: block; margin-bottom: 0.3rem; }

/* === FAQ === */
.ga57-faq-item {
  border: 1px solid rgba(139,115,85,0.2);
  border-radius: 0.8rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.ga57-faq-q {
  padding: 0.8rem 1rem;
  font-weight: 600;
  color: var(--ga57-cream);
  font-size: 1.3rem;
  background: rgba(139,115,85,0.1);
  cursor: default;
}
.ga57-faq-a {
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  color: rgba(238,238,238,0.8);
  line-height: 1.8rem;
}

/* === App Download CTA === */
.ga57-app-cta {
  background: linear-gradient(135deg, rgba(250,128,114,0.15), rgba(255,145,164,0.1));
  border: 1px solid rgba(250,128,114,0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.ga57-app-cta h3 { font-size: 1.6rem; color: var(--ga57-cream); margin-bottom: 0.5rem; }
.ga57-app-cta p { font-size: 1.2rem; color: rgba(238,238,238,0.8); margin-bottom: 1rem; }

/* === Play Now Banner === */
.ga57-play-banner {
  background: linear-gradient(135deg, var(--ga57-coral), #e06050);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin: 1rem 0;
}
.ga57-play-banner h2 { font-size: 1.8rem; color: #fff; margin-bottom: 0.5rem; }
.ga57-play-banner p { font-size: 1.3rem; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.ga57-play-banner .ga57-promo-btn {
  background: #fff;
  color: var(--ga57-coral);
  font-size: 1.5rem;
  padding: 1rem 3rem;
}

/* === Footer === */
.ga57-footer {
  background: #2a2a2a;
  padding: 2rem 1rem 1rem;
  border-top: 1px solid rgba(139,115,85,0.2);
}
.ga57-footer-brand {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(238,238,238,0.6);
  line-height: 1.8rem;
  margin-bottom: 1rem;
}
.ga57-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.ga57-footer-links a {
  font-size: 1.2rem;
  color: var(--ga57-brown);
  transition: color 0.2s;
}
.ga57-footer-links a:hover { color: var(--ga57-coral); }
.ga57-footer-copy {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(238,238,238,0.4);
  padding-top: 1rem;
  border-top: 1px solid rgba(139,115,85,0.1);
}

/* === Bottom Navigation === */
.ga57-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: linear-gradient(180deg, #2a2a2a, #1f1f1f);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid rgba(139,115,85,0.3);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
}
.ga57-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(238,238,238,0.6);
  font-family: var(--ga57-font);
  transition: color 0.2s, transform 0.2s;
  padding: 0;
}
.ga57-bottom-nav-btn:hover,
.ga57-bottom-nav-btn.ga57-nav-active {
  color: var(--ga57-coral);
  transform: scale(1.08);
}
.ga57-bottom-nav-btn i { font-size: 2.2rem; margin-bottom: 0.2rem; }
.ga57-bottom-nav-btn span { font-size: 1rem; line-height: 1.2rem; }
@media (min-width: 769px) { .ga57-bottom-nav { display: none; } }

/* === Back to Top === */
.ga57-back-top {
  position: fixed;
  bottom: 72px;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--ga57-coral);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(250,128,114,0.3);
}
.ga57-back-top.ga57-visible { opacity: 1; visibility: visible; }

/* === Internal Links === */
.ga57-internal-link {
  color: var(--ga57-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ga57-internal-link:hover { color: var(--ga57-cream); }

/* === Utility Classes === */
.ga57-text-center { text-align: center; }
.ga57-mt-1 { margin-top: 1rem; }
.ga57-mb-1 { margin-bottom: 1rem; }
.ga57-mb-2 { margin-bottom: 2rem; }
.ga57-flex-center { display: flex; align-items: center; justify-content: center; }
.ga57-gap-1 { gap: 0.5rem; }

/* === Category Badge === */
.ga57-cat-badge {
  display: inline-block;
  background: rgba(250,128,114,0.15);
  color: var(--ga57-coral);
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-right: 0.3rem;
}

/* === Responsive Tweaks === */
@media (max-width: 360px) {
  .ga57-game-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .ga57-game-item p { font-size: 1rem; }
}
@media (min-width: 431px) {
  body { border-left: 1px solid rgba(139,115,85,0.2); border-right: 1px solid rgba(139,115,85,0.2); }
}
