/**
 * 7999.click - Core Stylesheet
 * Prefix: pg36-
 * Color Palette: #B2DFDB | #FFC0CB | #2E4057 | #E9ECEF | #006400 | #C71585
 */

/* CSS Variables */
:root {
  --pg36-primary: #C71585;
  --pg36-secondary: #006400;
  --pg36-accent: #FFC0CB;
  --pg36-bg-dark: #2E4057;
  --pg36-bg-light: #E9ECEF;
  --pg36-text-light: #E9ECEF;
  --pg36-text-dark: #2E4057;
  --pg36-teal: #B2DFDB;
  --pg36-gold: #FFD700;
  --pg36-white: #FFFFFF;
  --pg36-radius: 0.8rem;
  --pg36-radius-sm: 0.5rem;
  --pg36-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background: var(--pg36-bg-dark);
  color: var(--pg36-text-light);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}
a { text-decoration: none; color: var(--pg36-accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ==================== HEADER ==================== */
.pg36-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(135deg, var(--pg36-bg-dark) 0%, #1a2a3a 100%);
  border-bottom: 2px solid var(--pg36-primary);
  z-index: 1000;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pg36-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pg36-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.pg36-site-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pg36-gold);
  letter-spacing: 1px;
}
.pg36-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pg36-btn-register {
  background: linear-gradient(135deg, var(--pg36-primary), #e91e8c);
  color: var(--pg36-white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--pg36-radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pg36-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 12px rgba(199,21,133,0.5); }
.pg36-btn-login {
  background: transparent;
  color: var(--pg36-teal);
  border: 1.5px solid var(--pg36-teal);
  padding: 0.45rem 0.9rem;
  border-radius: var(--pg36-radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.pg36-btn-login:hover { background: rgba(178,223,219,0.15); }
.pg36-menu-btn {
  background: none;
  border: none;
  color: var(--pg36-teal);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
}

/* ==================== MOBILE MENU ==================== */
.pg36-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.pg36-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  max-width: 300px;
  height: 100%;
  background: var(--pg36-bg-dark);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  padding: 2rem 1.5rem;
  border-right: 2px solid var(--pg36-primary);
}
.pg36-mobile-menu-close {
  background: none;
  border: none;
  color: var(--pg36-accent);
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.pg36-mobile-menu h3 {
  color: var(--pg36-gold);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pg36-mobile-menu ul li {
  margin-bottom: 0.8rem;
}
.pg36-mobile-menu ul li a {
  color: var(--pg36-text-light);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  transition: color 0.2s;
}
.pg36-mobile-menu ul li a:hover {
  color: var(--pg36-gold);
}

/* ==================== MAIN CONTENT ==================== */
.pg36-main {
  padding-top: 5.5rem;
  padding-bottom: 1rem;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .pg36-main { padding-bottom: 8rem; }
}

/* ==================== CAROUSEL ==================== */
.pg36-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--pg36-radius) var(--pg36-radius);
}
.pg36-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.pg36-carousel-slide img {
  width: 100%;
  height: auto;
  min-height: 160px;
  object-fit: cover;
}
.pg36-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.pg36-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.pg36-carousel-dot-active {
  background: var(--pg36-gold);
  width: 20px;
  border-radius: 4px;
}

/* ==================== SECTIONS ==================== */
.pg36-section {
  padding: 1.5rem 1rem;
}
.pg36-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pg36-gold);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--pg36-primary);
}
.pg36-section-title i {
  margin-right: 0.5rem;
}
.pg36-h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pg36-white);
  text-align: center;
  margin: 1.5rem 0;
  line-height: 2.2rem;
}

/* ==================== GAME GRID ==================== */
.pg36-category-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pg36-teal);
  margin: 1.2rem 0 0.8rem;
  padding: 0.4rem 0.8rem;
  background: rgba(178,223,219,0.1);
  border-radius: var(--pg36-radius-sm);
  display: inline-block;
}
.pg36-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 0.5rem 0;
}
.pg36-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: var(--pg36-radius-sm);
  padding: 0.4rem;
  background: rgba(255,255,255,0.04);
}
.pg36-game-card:hover { transform: scale(1.05); }
.pg36-game-card img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin-bottom: 0.3rem;
  object-fit: cover;
}
.pg36-game-card span {
  font-size: 1rem;
  color: var(--pg36-text-light);
  text-align: center;
  line-height: 1.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ==================== CONTENT BLOCKS ==================== */
.pg36-content-block {
  background: rgba(255,255,255,0.05);
  border-radius: var(--pg36-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.pg36-content-block h2 {
  font-size: 1.5rem;
  color: var(--pg36-gold);
  margin-bottom: 0.8rem;
}
.pg36-content-block h3 {
  font-size: 1.3rem;
  color: var(--pg36-teal);
  margin: 0.8rem 0 0.5rem;
}
.pg36-content-block p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: var(--pg36-text-light);
  margin-bottom: 0.6rem;
}
.pg36-content-block ul {
  padding-left: 1.2rem;
}
.pg36-content-block ul li {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: var(--pg36-text-light);
  margin-bottom: 0.3rem;
  list-style: disc;
}

/* ==================== PROMO BUTTONS ==================== */
.pg36-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pg36-primary), #e91e8c);
  color: var(--pg36-white);
  padding: 0.8rem 1.5rem;
  border-radius: var(--pg36-radius);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 0.5rem 0;
  min-width: 200px;
}
.pg36-promo-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(199,21,133,0.4);
}
.pg36-promo-btn-green {
  background: linear-gradient(135deg, var(--pg36-secondary), #008000);
}
.pg36-promo-text {
  color: var(--pg36-primary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1.2rem;
}

/* ==================== TESTIMONIALS ==================== */
.pg36-testimonial {
  background: rgba(178,223,219,0.08);
  border-radius: var(--pg36-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--pg36-teal);
}
.pg36-testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pg36-gold);
  margin-bottom: 0.3rem;
}
.pg36-testimonial-text {
  font-size: 1.15rem;
  color: var(--pg36-text-light);
  line-height: 1.5rem;
}

/* ==================== WINNER SHOWCASE ==================== */
.pg36-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  background: rgba(255,215,0,0.06);
  border-radius: var(--pg36-radius-sm);
  margin-bottom: 0.5rem;
}
.pg36-winner-name {
  font-size: 1.1rem;
  color: var(--pg36-teal);
  font-weight: 600;
}
.pg36-winner-amount {
  font-size: 1.2rem;
  color: var(--pg36-gold);
  font-weight: 700;
}
.pg36-winner-game {
  font-size: 1rem;
  color: var(--pg36-accent);
}

/* ==================== PAYMENT METHODS ==================== */
.pg36-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.pg36-payment-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--pg36-radius-sm);
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  color: var(--pg36-teal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==================== FOOTER ==================== */
.pg36-footer {
  background: linear-gradient(180deg, var(--pg36-bg-dark), #152030);
  padding: 2rem 1rem 1rem;
  text-align: center;
  border-top: 2px solid var(--pg36-primary);
}
.pg36-footer-brand {
  font-size: 1.2rem;
  color: var(--pg36-text-light);
  line-height: 1.6rem;
  margin-bottom: 1rem;
}
.pg36-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.pg36-footer-links a {
  color: var(--pg36-accent);
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  background: rgba(255,192,203,0.08);
  border-radius: var(--pg36-radius-sm);
  transition: background 0.2s;
}
.pg36-footer-links a:hover { background: rgba(255,192,203,0.2); }
.pg36-footer-copy {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.8rem;
}

/* ==================== BOTTOM NAV ==================== */
.pg36-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: linear-gradient(180deg, #1a2a3a, var(--pg36-bg-dark));
  border-top: 2px solid var(--pg36-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0 0.3rem;
}
.pg36-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--pg36-text-light);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  padding: 0.3rem;
  border-radius: 8px;
}
.pg36-bottom-nav-btn:hover { color: var(--pg36-gold); transform: scale(1.08); }
.pg36-bottom-nav-btn:active { transform: scale(0.95); }
.pg36-bottom-nav-btn i,
.pg36-bottom-nav-btn .material-icons {
  font-size: 22px;
  margin-bottom: 2px;
}
.pg36-bottom-nav-btn ion-icon {
  font-size: 24px;
  margin-bottom: 2px;
}
.pg36-bottom-nav-btn span {
  font-size: 1rem;
  line-height: 1.2rem;
}
.pg36-bottom-nav-btn.pg36-active {
  color: var(--pg36-gold);
  background: rgba(255,215,0,0.1);
}

@media (min-width: 769px) {
  .pg36-bottom-nav { display: none; }
  .pg36-main { padding-bottom: 1rem; }
}

/* ==================== UTILITY ==================== */
.pg36-text-center { text-align: center; }
.pg36-mt-1 { margin-top: 1rem; }
.pg36-mb-1 { margin-bottom: 1rem; }
.pg36-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg36-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1rem 0;
}
.pg36-highlight {
  color: var(--pg36-gold);
  font-weight: 600;
}

/* ==================== FAQ ==================== */
.pg36-faq-item {
  background: rgba(255,255,255,0.04);
  border-radius: var(--pg36-radius-sm);
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
}
.pg36-faq-q {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pg36-teal);
  margin-bottom: 0.4rem;
}
.pg36-faq-a {
  font-size: 1.15rem;
  color: var(--pg36-text-light);
  line-height: 1.5rem;
}

/* ==================== APP DOWNLOAD CTA ==================== */
.pg36-app-cta {
  background: linear-gradient(135deg, var(--pg36-secondary), #004d00);
  border-radius: var(--pg36-radius);
  padding: 1.2rem;
  text-align: center;
}
.pg36-app-cta h3 {
  color: var(--pg36-white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* ==================== FEATURES GRID ==================== */
.pg36-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.pg36-feature-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--pg36-radius-sm);
  padding: 1rem 0.8rem;
  text-align: center;
  transition: transform 0.2s;
}
.pg36-feature-card:hover { transform: translateY(-2px); }
.pg36-feature-card i {
  font-size: 2.4rem;
  color: var(--pg36-primary);
  margin-bottom: 0.5rem;
}
.pg36-feature-card h4 {
  font-size: 1.15rem;
  color: var(--pg36-gold);
  margin-bottom: 0.3rem;
}
.pg36-feature-card p {
  font-size: 1.05rem;
  color: var(--pg36-text-light);
  line-height: 1.4rem;
}
