/**
 * cv998.click - Main Stylesheet
 * Prefix: pgf2-
 * Color palette: #004D40 (deep teal) | #48D1CC (medium turquoise) | #2D2D2D (dark charcoal)
 */

/* CSS Variables */
:root {
  --pgf2-primary: #004D40;
  --pgf2-accent: #48D1CC;
  --pgf2-dark: #2D2D2D;
  --pgf2-bg: #0a1a17;
  --pgf2-card-bg: #0d2922;
  --pgf2-text: #e0f2f1;
  --pgf2-text-muted: #80cbc4;
  --pgf2-border: #1a3d36;
  --pgf2-gold: #ffd54f;
  --pgf2-hover: #00695c;
  --pgf2-gradient: linear-gradient(135deg, #004D40 0%, #00695c 50%, #00897b 100%);
  --pgf2-radius: 10px;
  --pgf2-shadow: 0 4px 16px rgba(0, 77, 64, 0.3);
  font-size: 62.5%;
}

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

body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background: var(--pgf2-bg);
  color: var(--pgf2-text);
  line-height: 1.5rem;
  font-size: 1.6rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--pgf2-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Header */
.pgf2-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 56px;
  background: var(--pgf2-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 1000;
  border-bottom: 2px solid var(--pgf2-accent);
  transition: background 0.3s ease;
}
.pgf2-header-scrolled {
  background: #00332b;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.pgf2-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pgf2-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.pgf2-site-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pgf2-accent);
  letter-spacing: 0.5px;
}
.pgf2-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pgf2-btn-register, .pgf2-btn-login {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pgf2-btn-register {
  background: var(--pgf2-gold);
  color: #1a1a1a;
}
.pgf2-btn-login {
  background: transparent;
  color: var(--pgf2-accent);
  border: 1.5px solid var(--pgf2-accent);
}
.pgf2-btn-register:hover, .pgf2-btn-login:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(72, 209, 204, 0.4);
}
.pgf2-menu-btn {
  background: none;
  border: none;
  color: var(--pgf2-accent);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.pgf2-mobile-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateX(-100%);
  width: 100%;
  max-width: 430px;
  height: 100vh;
  background: var(--pgf2-dark);
  z-index: 9999;
  transition: transform 0.3s ease;
  visibility: hidden;
  padding: 20px;
  overflow-y: auto;
}
.pgf2-mobile-menu.pgf2-menu-open {
  transform: translateX(-50%) translateX(0);
  visibility: visible;
}
.pgf2-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}
.pgf2-menu-close {
  background: none;
  border: none;
  color: var(--pgf2-accent);
  font-size: 2.4rem;
  cursor: pointer;
  float: right;
  margin-bottom: 16px;
}
.pgf2-menu-links {
  clear: both;
  padding-top: 20px;
}
.pgf2-menu-links a {
  display: block;
  padding: 12px 0;
  font-size: 1.6rem;
  color: var(--pgf2-text);
  border-bottom: 1px solid var(--pgf2-border);
  transition: color 0.2s;
}
.pgf2-menu-links a:hover {
  color: var(--pgf2-accent);
  text-decoration: none;
}

/* Main Content */
.pgf2-main {
  padding-top: 60px;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .pgf2-main { padding-bottom: 80px; }
}

/* Carousel */
.pgf2-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}
.pgf2-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.pgf2-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.pgf2-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.pgf2-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.pgf2-dot-active {
  background: var(--pgf2-gold);
  width: 20px;
  border-radius: 4px;
}

/* Section Titles */
.pgf2-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pgf2-accent);
  margin: 20px 14px 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pgf2-border);
}
.pgf2-section-title i {
  margin-right: 6px;
}

/* Game Grid */
.pgf2-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 10px;
  margin-bottom: 16px;
}
.pgf2-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 8px;
  padding: 6px 4px;
  background: var(--pgf2-card-bg);
}
.pgf2-game-item:hover {
  transform: scale(1.05);
  background: var(--pgf2-hover);
}
.pgf2-game-item img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin: 0 auto 4px;
  object-fit: cover;
  border: 1.5px solid var(--pgf2-border);
}
.pgf2-game-name {
  font-size: 1.1rem;
  color: var(--pgf2-text);
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80px;
  margin: 0 auto;
}

/* Content Cards */
.pgf2-card {
  background: var(--pgf2-card-bg);
  border-radius: var(--pgf2-radius);
  padding: 16px;
  margin: 12px 14px;
  border: 1px solid var(--pgf2-border);
}
.pgf2-card h2 {
  font-size: 1.8rem;
  color: var(--pgf2-accent);
  margin-bottom: 10px;
}
.pgf2-card h3 {
  font-size: 1.6rem;
  color: var(--pgf2-gold);
  margin-bottom: 8px;
}
.pgf2-card p {
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: var(--pgf2-text);
  margin-bottom: 8px;
}

/* Promo Link Styles */
.pgf2-promo-link {
  color: var(--pgf2-gold);
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
}
.pgf2-promo-link:hover {
  color: #ffe082;
  text-decoration: underline;
}
.pgf2-promo-btn {
  display: inline-block;
  background: var(--pgf2-gradient);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  margin: 8px 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pgf2-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(72, 209, 204, 0.3);
  text-decoration: none;
  color: #fff;
}

/* Bottom Navigation */
.pgf2-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: var(--pgf2-dark);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 2px solid var(--pgf2-accent);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
}
.pgf2-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--pgf2-text-muted);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  padding: 4px;
}
.pgf2-bottom-nav-btn i,
.pgf2-bottom-nav-btn span.material-symbols-outlined,
.pgf2-bottom-nav-btn ion-icon {
  font-size: 22px;
  margin-bottom: 2px;
}
.pgf2-bottom-nav-btn span {
  font-size: 1rem;
}
.pgf2-bottom-nav-btn:hover,
.pgf2-nav-active {
  color: var(--pgf2-accent);
  transform: scale(1.1);
}
.pgf2-nav-active {
  position: relative;
}
.pgf2-nav-active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--pgf2-accent);
  border-radius: 2px;
}

/* Footer */
.pgf2-footer {
  background: var(--pgf2-dark);
  padding: 20px 14px 80px;
  border-top: 1px solid var(--pgf2-border);
}
.pgf2-footer-brand {
  font-size: 1.4rem;
  color: var(--pgf2-text-muted);
  margin-bottom: 14px;
  line-height: 1.6rem;
}
.pgf2-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.pgf2-footer-links a {
  font-size: 1.3rem;
  padding: 4px 10px;
  background: var(--pgf2-card-bg);
  border-radius: 6px;
  color: var(--pgf2-accent);
  border: 1px solid var(--pgf2-border);
  transition: background 0.2s;
}
.pgf2-footer-links a:hover {
  background: var(--pgf2-hover);
  text-decoration: none;
}
.pgf2-footer-copy {
  font-size: 1.2rem;
  color: #607d8b;
  text-align: center;
}

/* Winners showcase */
.pgf2-winners {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 8px 14px;
}
.pgf2-winner-card {
  flex: 0 0 120px;
  background: var(--pgf2-card-bg);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--pgf2-border);
}
.pgf2-winner-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 6px;
  border: 2px solid var(--pgf2-gold);
}
.pgf2-winner-name {
  font-size: 1.2rem;
  color: var(--pgf2-accent);
  margin-bottom: 2px;
}
.pgf2-winner-amount {
  font-size: 1.3rem;
  color: var(--pgf2-gold);
  font-weight: 700;
}

/* Payment methods */
.pgf2-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
}
.pgf2-payment-item {
  background: var(--pgf2-card-bg);
  border: 1px solid var(--pgf2-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 1.3rem;
  color: var(--pgf2-text);
}

/* Testimonials */
.pgf2-testimonial {
  background: var(--pgf2-card-bg);
  border-radius: 8px;
  padding: 12px;
  margin: 8px 14px;
  border-left: 3px solid var(--pgf2-gold);
}
.pgf2-testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--pgf2-text);
  margin-bottom: 6px;
}
.pgf2-testimonial-author {
  font-size: 1.2rem;
  color: var(--pgf2-accent);
  font-weight: 600;
}

/* Features list */
.pgf2-feature-list {
  padding: 0 14px;
}
.pgf2-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.pgf2-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--pgf2-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pgf2-gold);
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 1px solid var(--pgf2-border);
}
.pgf2-feature-text h3 {
  font-size: 1.4rem;
  color: var(--pgf2-accent);
  margin-bottom: 2px;
}
.pgf2-feature-text p {
  font-size: 1.2rem;
  color: var(--pgf2-text-muted);
  line-height: 1.4rem;
}

/* CTA section */
.pgf2-cta {
  background: var(--pgf2-gradient);
  padding: 20px 14px;
  text-align: center;
  margin: 16px 0;
  border-radius: 0;
}
.pgf2-cta h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 8px;
}
.pgf2-cta p {
  font-size: 1.4rem;
  color: #b2dfdb;
  margin-bottom: 14px;
}

/* RTP table */
.pgf2-rtp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0;
}
.pgf2-rtp-table th,
.pgf2-rtp-table td {
  padding: 6px 8px;
  font-size: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--pgf2-border);
}
.pgf2-rtp-table th {
  color: var(--pgf2-accent);
  font-weight: 600;
}
.pgf2-rtp-table td {
  color: var(--pgf2-text);
}

/* Help page specific */
.pgf2-help-section {
  padding: 10px 14px;
}
.pgf2-help-section h2 {
  font-size: 1.8rem;
  color: var(--pgf2-accent);
  margin-bottom: 10px;
}
.pgf2-help-section p {
  font-size: 1.4rem;
  line-height: 1.7rem;
  margin-bottom: 10px;
}
.pgf2-faq-item {
  background: var(--pgf2-card-bg);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--pgf2-border);
}
.pgf2-faq-q {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pgf2-gold);
  margin-bottom: 4px;
}
.pgf2-faq-a {
  font-size: 1.3rem;
  color: var(--pgf2-text);
  line-height: 1.5rem;
}

/* Internal link */
.pgf2-internal-link {
  color: var(--pgf2-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Desktop styles */
@media (min-width: 769px) {
  .pgf2-bottom-nav { display: none; }
  .pgf2-footer { padding-bottom: 20px; }
  .pgf2-main { padding-bottom: 0; }
}

/* Utility */
.pgf2-text-center { text-align: center; }
.pgf2-mt-10 { margin-top: 10px; }
.pgf2-mb-10 { margin-bottom: 10px; }
.pgf2-hidden { display: none; }
