/**
 * pktk.click - Theme Stylesheet
 * Prefix: gc32-
 * Color Palette: #1A1A2E | #E6E6FA | #AFEEEE | #BA55D3 | #FFDFBA
 * Mobile-first, max-width: 430px
 */

/* CSS Variables */
:root {
  --gc32-bg: #1A1A2E;
  --gc32-bg-light: #222240;
  --gc32-bg-card: #2A2A4A;
  --gc32-text: #E6E6FA;
  --gc32-text-muted: #A0A0C0;
  --gc32-accent: #AFEEEE;
  --gc32-primary: #BA55D3;
  --gc32-primary-dark: #9A30B8;
  --gc32-warm: #FFDFBA;
  --gc32-warm-dark: #E8C090;
  --gc32-border: #3A3A5A;
  --gc32-radius: 1.2rem;
  --gc32-radius-sm: 0.8rem;
  --gc32-shadow: 0 4px 12px rgba(0,0,0,0.3);
  --gc32-shadow-lg: 0 8px 24px rgba(0,0,0,0.4);
  --gc32-font: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  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: var(--gc32-font);
  background: var(--gc32-bg);
  color: var(--gc32-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(--gc32-accent); text-decoration: none; }
a:hover { color: var(--gc32-warm); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

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

/* Header */
.gc32-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 5.6rem;
  background: linear-gradient(135deg, var(--gc32-bg-light), var(--gc32-bg));
  border-bottom: 1px solid var(--gc32-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; z-index: 1000;
  backdrop-filter: blur(10px);
}
.gc32-logo-area { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; }
.gc32-logo-area img { width: 3.2rem; height: 3.2rem; border-radius: 0.6rem; }
.gc32-logo-area span { font-size: 1.8rem; font-weight: 700; color: var(--gc32-primary); }
.gc32-header-actions { display: flex; align-items: center; gap: 0.8rem; }
.gc32-header-btn {
  padding: 0.6rem 1.4rem; border-radius: var(--gc32-radius-sm);
  font-size: 1.2rem; font-weight: 600; cursor: pointer; border: none;
  transition: all 0.25s ease; min-height: 3.6rem;
}
.gc32-btn-register {
  background: linear-gradient(135deg, var(--gc32-primary), var(--gc32-primary-dark));
  color: #fff;
}
.gc32-btn-register:hover { transform: scale(1.05); box-shadow: 0 0 12px rgba(186,85,211,0.5); }
.gc32-btn-login {
  background: transparent; color: var(--gc32-accent);
  border: 1.5px solid var(--gc32-accent);
}
.gc32-btn-login:hover { background: var(--gc32-accent); color: var(--gc32-bg); }
.gc32-menu-toggle {
  background: none; border: none; color: var(--gc32-text);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.gc32-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: all 0.3s ease;
}
.gc32-overlay-active { opacity: 1; visibility: visible; }
.gc32-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: var(--gc32-bg-light); z-index: 9999;
  transition: right 0.3s ease; padding: 2rem 1.6rem;
  overflow-y: auto;
}
.gc32-menu-active { right: 0; }
.gc32-menu-header { display: flex; justify-content: flex-end; margin-bottom: 2rem; }
.gc32-menu-close {
  background: none; border: none; color: var(--gc32-text);
  font-size: 2.4rem; cursor: pointer;
}
.gc32-menu-nav a {
  display: block; padding: 1.2rem 0; color: var(--gc32-text);
  font-size: 1.5rem; border-bottom: 1px solid var(--gc32-border);
  transition: color 0.2s;
}
.gc32-menu-nav a:hover { color: var(--gc32-primary); }

/* Main Content */
.gc32-main { padding-top: 5.6rem; min-height: 100vh; }

/* Carousel */
.gc32-carousel { position: relative; width: 100%; overflow: hidden; border-radius: 0; }
.gc32-carousel-inner { position: relative; width: 100%; aspect-ratio: 16/9; }
.gc32-carousel-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.5s ease; cursor: pointer;
}
.gc32-slide-active { opacity: 1; }
.gc32-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.gc32-carousel-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem;
}
.gc32-carousel-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.3s; border: none;
}
.gc32-dot-active { background: var(--gc32-primary); transform: scale(1.3); }

/* Section Title */
.gc32-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--gc32-warm);
  padding: 1.6rem 1.2rem 0.8rem; border-left: 4px solid var(--gc32-primary);
  margin: 1.2rem 0 0;
}
.gc32-section-title i { margin-right: 0.6rem; color: var(--gc32-primary); }

/* Game Grid */
.gc32-game-section { padding: 0 1.2rem; margin-bottom: 1.6rem; }
.gc32-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; padding: 0.8rem 0;
}
.gc32-game-grid.gc32-grid-4 { grid-template-columns: repeat(4, 1fr); }
.gc32-game-item {
  text-align: center; cursor: pointer;
  transition: transform 0.2s; border-radius: var(--gc32-radius-sm);
  padding: 0.6rem; background: var(--gc32-bg-card);
}
.gc32-game-item:hover { transform: translateY(-3px); box-shadow: var(--gc32-shadow); }
.gc32-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: var(--gc32-radius-sm);
  object-fit: cover; margin-bottom: 0.4rem;
}
.gc32-game-name {
  font-size: 1.1rem; color: var(--gc32-text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  line-height: 1.3rem;
}

/* Content Blocks */
.gc32-content-block {
  padding: 1.6rem 1.2rem; margin: 1.2rem 0;
  background: var(--gc32-bg-card); border-radius: var(--gc32-radius);
}
.gc32-content-block h2 {
  font-size: 1.7rem; color: var(--gc32-warm); margin-bottom: 1rem;
}
.gc32-content-block h3 {
  font-size: 1.5rem; color: var(--gc32-accent); margin-bottom: 0.8rem;
}
.gc32-content-block p {
  font-size: 1.3rem; color: var(--gc32-text-muted); line-height: 1.8rem;
  margin-bottom: 0.8rem;
}

/* Promo Buttons */
.gc32-promo-btn {
  display: inline-block; padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gc32-primary), #D070E8);
  color: #fff; font-size: 1.4rem; font-weight: 700;
  border-radius: var(--gc32-radius); cursor: pointer;
  border: none; transition: all 0.3s; text-align: center;
  min-height: 4.4rem;
}
.gc32-promo-btn:hover {
  transform: scale(1.05); box-shadow: 0 0 16px rgba(186,85,211,0.6);
}
.gc32-promo-link {
  color: var(--gc32-primary); font-weight: 600; cursor: pointer;
  text-decoration: underline;
}
.gc32-promo-link:hover { color: var(--gc32-warm); }

/* Cards */
.gc32-card {
  background: var(--gc32-bg-card); border-radius: var(--gc32-radius);
  padding: 1.4rem; margin-bottom: 1.2rem; border: 1px solid var(--gc32-border);
}
.gc32-card-highlight { border-left: 4px solid var(--gc32-primary); }

/* Footer */
.gc32-footer {
  background: var(--gc32-bg-light); padding: 2rem 1.2rem;
  border-top: 1px solid var(--gc32-border); margin-top: 2rem;
}
.gc32-footer-brand { text-align: center; margin-bottom: 1.6rem; }
.gc32-footer-brand p { font-size: 1.2rem; color: var(--gc32-text-muted); line-height: 1.6rem; }
.gc32-footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.gc32-footer-links a {
  padding: 0.5rem 1rem; background: var(--gc32-bg-card);
  border-radius: var(--gc32-radius-sm); color: var(--gc32-text);
  font-size: 1.1rem; border: 1px solid var(--gc32-border);
  transition: all 0.2s;
}
.gc32-footer-links a:hover { border-color: var(--gc32-primary); color: var(--gc32-primary); }
.gc32-footer-copy {
  text-align: center; font-size: 1.1rem; color: var(--gc32-text-muted);
  padding-top: 1.2rem; border-top: 1px solid var(--gc32-border);
}

/* Bottom Navigation */
.gc32-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 6rem;
  background: linear-gradient(180deg, var(--gc32-bg-light), #16162A);
  border-top: 1px solid var(--gc32-border);
  display: flex; justify-content: space-around; align-items: center;
  z-index: 1000; padding: 0 0.4rem;
}
.gc32-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 6rem; min-height: 5.2rem;
  background: none; border: none; color: var(--gc32-text-muted);
  cursor: pointer; transition: all 0.25s; gap: 0.2rem;
  padding: 0.4rem; border-radius: var(--gc32-radius-sm);
}
.gc32-bottom-nav-btn i, .gc32-bottom-nav-btn .material-icons {
  font-size: 2.4rem; transition: color 0.2s;
}
.gc32-bottom-nav-btn span {
  font-size: 1rem; line-height: 1.2rem;
}
.gc32-bottom-nav-btn:hover, .gc32-nav-active {
  color: var(--gc32-primary);
}
.gc32-bottom-nav-btn:active { transform: scale(0.9); }
.gc32-nav-active i, .gc32-nav-active .material-icons {
  color: var(--gc32-primary);
}

/* Winner showcase */
.gc32-winner-list { display: flex; flex-direction: column; gap: 0.6rem; }
.gc32-winner-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0.8rem; background: rgba(186,85,211,0.1);
  border-radius: var(--gc32-radius-sm); font-size: 1.2rem;
}
.gc32-winner-amount { color: var(--gc32-warm); font-weight: 700; margin-left: auto; }

/* Payment icons row */
.gc32-payment-row {
  display: flex; justify-content: center; gap: 1.2rem;
  flex-wrap: wrap; padding: 0.8rem 0;
}
.gc32-payment-item {
  padding: 0.6rem 1.2rem; background: var(--gc32-bg-card);
  border-radius: var(--gc32-radius-sm); font-size: 1.2rem;
  color: var(--gc32-accent); border: 1px solid var(--gc32-border);
}

/* Testimonials */
.gc32-testimonial {
  background: var(--gc32-bg-card); border-radius: var(--gc32-radius);
  padding: 1.2rem; margin-bottom: 0.8rem; border-left: 3px solid var(--gc32-primary);
}
.gc32-testimonial-name { color: var(--gc32-warm); font-weight: 600; font-size: 1.2rem; }
.gc32-testimonial-text { font-size: 1.2rem; color: var(--gc32-text-muted); margin-top: 0.4rem; }

/* Utility */
.gc32-text-center { text-align: center; }
.gc32-mt-1 { margin-top: 0.8rem; }
.gc32-mt-2 { margin-top: 1.6rem; }
.gc32-mb-1 { margin-bottom: 0.8rem; }
.gc32-mb-2 { margin-bottom: 1.6rem; }
.gc32-hidden { display: none; }

/* Responsive - Desktop */
@media (min-width: 769px) {
  .gc32-bottom-nav { display: none; }
  .gc32-main { padding-bottom: 0; }
}
@media (max-width: 768px) {
  .gc32-main { padding-bottom: 80px; }
}
