/**
 * blocked.sbs - Main Stylesheet
 * Prefix: pg32-
 * Color Palette: #AFEEEE, #9966CC, #1A1A1A, #EEEEEE, #E91E63, #FFCCCB
 */

/* === CSS Variables === */
:root {
  --pg32-primary: #9966CC;
  --pg32-secondary: #AFEEEE;
  --pg32-bg: #1A1A1A;
  --pg32-bg-light: #242424;
  --pg32-bg-card: #2A2A2A;
  --pg32-text: #EEEEEE;
  --pg32-text-muted: #B0B0B0;
  --pg32-accent: #E91E63;
  --pg32-highlight: #AFEEEE;
  --pg32-warm: #FFCCCB;
  --pg32-gradient-primary: linear-gradient(135deg, #9966CC 0%, #E91E63 100%);
  --pg32-gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #242424 100%);
  --pg32-radius: 12px;
  --pg32-radius-sm: 8px;
  --pg32-radius-lg: 16px;
  --pg32-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --pg32-shadow-accent: 0 4px 15px rgba(153, 102, 204, 0.3);
  --pg32-transition: all 0.3s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans Bengali', sans-serif;
  background-color: var(--pg32-bg);
  color: var(--pg32-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
}

a {
  color: var(--pg32-highlight);
  text-decoration: none;
  transition: var(--pg32-transition);
}

a:hover {
  color: var(--pg32-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Header === */
.pg32-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 56px;
  background: var(--pg32-bg-light);
  border-bottom: 1px solid rgba(153, 102, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.pg32-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

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

.pg32-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pg32-btn-register,
.pg32-btn-login {
  padding: 0.5rem 1.2rem;
  border-radius: var(--pg32-radius-sm);
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--pg32-transition);
  white-space: nowrap;
}

.pg32-btn-register {
  background: var(--pg32-gradient-primary);
  color: #fff;
}

.pg32-btn-register:hover {
  transform: scale(1.05);
  box-shadow: var(--pg32-shadow-accent);
}

.pg32-btn-login {
  background: transparent;
  color: var(--pg32-highlight);
  border: 1px solid var(--pg32-highlight);
}

.pg32-btn-login:hover {
  background: rgba(175, 238, 238, 0.1);
}

.pg32-menu-toggle {
  background: none;
  border: none;
  color: var(--pg32-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* === Mobile Menu Overlay === */
.pg32-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: var(--pg32-transition);
}

.pg32-overlay-active {
  opacity: 1;
  visibility: visible;
}

/* === Mobile Menu === */
.pg32-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--pg32-bg-light);
  z-index: 9999;
  padding: 2rem 1.6rem;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(153, 102, 204, 0.2);
}

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

.pg32-menu-close {
  background: none;
  border: none;
  color: var(--pg32-text);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}

.pg32-menu-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pg32-primary);
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}

.pg32-menu-links {
  list-style: none;
}

.pg32-menu-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pg32-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 0.5rem;
  color: var(--pg32-text);
  font-size: 1.4rem;
  transition: var(--pg32-transition);
}

.pg32-menu-links a:hover {
  color: var(--pg32-primary);
  padding-left: 1rem;
}

.pg32-menu-links .material-icons,
.pg32-menu-links .pg32-menu-icon {
  font-size: 2rem;
  color: var(--pg32-highlight);
}

/* === Main Content === */
.pg32-main {
  padding-top: 56px;
  min-height: 100vh;
}

/* === Carousel === */
.pg32-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-top: 0;
}

.pg32-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--pg32-transition);
  cursor: pointer;
}

.pg32-slide-active {
  opacity: 1;
}

.pg32-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg32-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.pg32-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--pg32-transition);
  border: none;
}

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

/* === Section Titles === */
.pg32-section {
  padding: 2rem 1.2rem;
}

.pg32-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  color: var(--pg32-text);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pg32-section-title::before {
  content: '';
  width: 4px;
  height: 2rem;
  background: var(--pg32-gradient-primary);
  border-radius: 2px;
}

/* === Game Grid === */
.pg32-game-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pg32-primary);
  margin: 1.5rem 0 1rem;
  padding-left: 0.4rem;
  border-left: 3px solid var(--pg32-accent);
}

.pg32-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pg32-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--pg32-transition);
  text-align: center;
}

.pg32-game-item:hover {
  transform: translateY(-3px);
}

.pg32-game-item img {
  width: 64px;
  height: 64px;
  border-radius: var(--pg32-radius-sm);
  margin-bottom: 0.4rem;
  border: 2px solid transparent;
  transition: var(--pg32-transition);
}

.pg32-game-item:hover img {
  border-color: var(--pg32-primary);
  box-shadow: var(--pg32-shadow-accent);
}

.pg32-game-item span {
  font-size: 1.1rem;
  color: var(--pg32-text-muted);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === Content Modules === */
.pg32-card {
  background: var(--pg32-bg-card);
  border-radius: var(--pg32-radius);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(153, 102, 204, 0.1);
}

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

.pg32-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pg32-highlight);
  margin-bottom: 0.8rem;
}

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

/* === Promo Buttons === */
.pg32-promo-btn {
  display: inline-block;
  background: var(--pg32-gradient-primary);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: var(--pg32-radius-sm);
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--pg32-transition);
  text-align: center;
  margin: 0.5rem 0;
}

.pg32-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--pg32-shadow-accent);
  color: #fff;
}

.pg32-promo-text {
  color: var(--pg32-accent);
  font-weight: 600;
  cursor: pointer;
  transition: var(--pg32-transition);
}

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

/* === FAQ Accordion === */
.pg32-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pg32-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--pg32-text);
  transition: var(--pg32-transition);
}

.pg32-faq-question:hover {
  color: var(--pg32-primary);
}

.pg32-faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  color: var(--pg32-primary);
}

.pg32-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--pg32-text-muted);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.pg32-rtp-table th {
  background: var(--pg32-bg-light);
  color: var(--pg32-primary);
  padding: 0.8rem;
  text-align: left;
  font-weight: 600;
}

.pg32-rtp-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--pg32-text-muted);
}

.pg32-rtp-table tr:hover td {
  background: rgba(153, 102, 204, 0.05);
}

/* === Testimonials === */
.pg32-testimonial {
  background: var(--pg32-bg-card);
  border-radius: var(--pg32-radius);
  padding: 1.4rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--pg32-primary);
}

.pg32-testimonial-author {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pg32-highlight);
  margin-bottom: 0.4rem;
}

.pg32-testimonial-text {
  font-size: 1.2rem;
  color: var(--pg32-text-muted);
  line-height: 1.5;
}

/* === Winners Showcase === */
.pg32-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pg32-winner-name {
  font-size: 1.2rem;
  color: var(--pg32-highlight);
}

.pg32-winner-game {
  font-size: 1.1rem;
  color: var(--pg32-text-muted);
}

.pg32-winner-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pg32-accent);
}

/* === Payment Methods === */
.pg32-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pg32-payment-item {
  background: var(--pg32-bg-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--pg32-radius-sm);
  font-size: 1.2rem;
  color: var(--pg32-text-muted);
  border: 1px solid rgba(153, 102, 204, 0.1);
}

/* === Footer === */
.pg32-footer {
  background: var(--pg32-bg-light);
  padding: 2.5rem 1.2rem 10rem;
  border-top: 1px solid rgba(153, 102, 204, 0.15);
  margin-top: 2rem;
}

.pg32-footer-brand {
  font-size: 1.3rem;
  color: var(--pg32-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

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

.pg32-footer-links a {
  font-size: 1.2rem;
  color: var(--pg32-text-muted);
}

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

.pg32-footer-copy {
  font-size: 1.1rem;
  color: var(--pg32-text-muted);
  opacity: 0.6;
  text-align: center;
  margin-top: 1rem;
}

/* === Bottom Navigation === */
.pg32-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: var(--pg32-bg-light);
  border-top: 1px solid rgba(153, 102, 204, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0 0.4rem;
}

.pg32-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--pg32-text-muted);
  cursor: pointer;
  transition: var(--pg32-transition);
  border-radius: var(--pg32-radius-sm);
  padding: 0.4rem;
}

.pg32-nav-btn:hover,
.pg32-nav-btn:focus {
  color: var(--pg32-primary);
  background: rgba(153, 102, 204, 0.08);
}

.pg32-nav-btn.pg32-nav-active {
  color: var(--pg32-primary);
}

.pg32-nav-btn.pg32-nav-active::after {
  content: '';
  display: block;
  width: 20px;
  height: 3px;
  background: var(--pg32-gradient-primary);
  border-radius: 2px;
  margin-top: 2px;
}

.pg32-nav-btn i,
.pg32-nav-btn .material-icons {
  font-size: 22px;
  margin-bottom: 2px;
}

.pg32-nav-btn span {
  font-size: 1rem;
  line-height: 1.2;
}

/* === Internal Link Style === */
.pg32-internal-link {
  color: var(--pg32-highlight);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.pg32-internal-link:hover {
  color: var(--pg32-primary);
  text-decoration-style: solid;
}

/* === Review/Safety Page Styles === */
.pg32-page-hero {
  padding: 2rem 1.2rem;
  text-align: center;
  background: var(--pg32-gradient-dark);
}

.pg32-page-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pg32-primary);
  margin-bottom: 0.8rem;
}

.pg32-page-hero p {
  font-size: 1.3rem;
  color: var(--pg32-text-muted);
  line-height: 1.6;
}

.pg32-content-block {
  padding: 1.5rem 1.2rem;
}

.pg32-content-block h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pg32-primary);
  margin-bottom: 1rem;
}

.pg32-content-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pg32-highlight);
  margin-bottom: 0.6rem;
}

.pg32-content-block p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--pg32-text-muted);
  margin-bottom: 0.8rem;
}

/* === Trust Badge === */
.pg32-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(153, 102, 204, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--pg32-radius-sm);
  font-size: 1.2rem;
  color: var(--pg32-primary);
  margin: 0.3rem;
}

/* === Responsive === */
@media (min-width: 769px) {
  .pg32-bottom-nav {
    display: none;
  }
}

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

/* === Utility Classes === */
.pg32-text-center {
  text-align: center;
}

.pg32-mt-1 {
  margin-top: 0.8rem;
}

.pg32-mt-2 {
  margin-top: 1.6rem;
}

.pg32-mb-1 {
  margin-bottom: 0.8rem;
}

.pg32-mb-2 {
  margin-bottom: 1.6rem;
}

.pg32-hidden {
  display: none;
}
