/* layout-634c.css - Main stylesheet for 4999 bdt */
/* All classes prefixed with vc85- to avoid conflicts */

:root {
  --vc85-primary: #8B7355;
  --vc85-bg-dark: #141414;
  --vc85-bg-card: #1a1a2e;
  --vc85-bg-section: #16213e;
  --vc85-accent: #4B0082;
  --vc85-gold: #C9A84C;
  --vc85-slate: #36454F;
  --vc85-gray: #808080;
  --vc85-text: #E8E8E8;
  --vc85-text-muted: #A0A0A0;
  --vc85-danger: #FF4757;
  --vc85-success: #2ED573;
  --vc85-radius: 0.8rem;
  --vc85-radius-sm: 0.5rem;
  --vc85-shadow: 0 2px 12px rgba(0,0,0,0.4);
  --vc85-transition: all 0.3s ease;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background-color: var(--vc85-bg-dark);
  color: var(--vc85-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--vc85-gold);
  text-decoration: none;
  transition: var(--vc85-transition);
}

a:hover {
  color: var(--vc85-primary);
  text-decoration: underline;
}

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

/* ========== HEADER ========== */
.vc85-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 5.6rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(139,115,85,0.3);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.vc85-logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vc85-logo-area img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.6rem;
}

.vc85-logo-area span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vc85-gold);
  letter-spacing: 0.05rem;
}

.vc85-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vc85-btn-register,
.vc85-btn-login {
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: var(--vc85-radius-sm);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--vc85-transition);
  outline: none;
}

.vc85-btn-register {
  background: linear-gradient(135deg, var(--vc85-gold), var(--vc85-primary));
  color: #fff;
}

.vc85-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}

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

.vc85-btn-login:hover {
  background: rgba(201,168,76,0.1);
}

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

/* ========== MOBILE MENU ========== */
.vc85-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a2e, #0f0f23);
  z-index: 9999;
  transition: right 0.35s ease;
  padding: 2rem 0;
  overflow-y: auto;
  border-left: 1px solid rgba(139,115,85,0.2);
}

.vc85-menu-active {
  right: 0 !important;
}

.vc85-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vc85-overlay-active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.vc85-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(139,115,85,0.2);
}

.vc85-menu-header span {
  font-size: 1.6rem;
  color: var(--vc85-gold);
  font-weight: 700;
}

.vc85-menu-close {
  background: none;
  border: none;
  color: var(--vc85-text-muted);
  font-size: 2rem;
  cursor: pointer;
}

.vc85-menu-nav {
  list-style: none;
  padding: 1rem 0;
}

.vc85-menu-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vc85-menu-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  color: var(--vc85-text);
  font-size: 1.4rem;
  transition: var(--vc85-transition);
}

.vc85-menu-nav a:hover {
  background: rgba(139,115,85,0.1);
  color: var(--vc85-gold);
  text-decoration: none;
}

.vc85-menu-nav .material-icons,
.vc85-menu-nav .fas,
.vc85-menu-nav .bi {
  font-size: 2rem;
  color: var(--vc85-primary);
}

/* ========== CAROUSEL ========== */
.vc85-carousel {
  position: relative;
  width: 100%;
  margin-top: 5.6rem;
  overflow: hidden;
  aspect-ratio: 430/200;
}

.vc85-carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.vc85-slide-active {
  display: block !important;
}

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

.vc85-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

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

.vc85-dot-active {
  background: var(--vc85-gold) !important;
  transform: scale(1.2);
}

/* ========== MAIN CONTENT ========== */
.vc85-main {
  padding: 1.2rem;
  padding-bottom: 2rem;
}

.vc85-section {
  margin-bottom: 2rem;
}

.vc85-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vc85-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--vc85-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vc85-section-title .material-icons,
.vc85-section-title .fas,
.vc85-section-title .bi {
  font-size: 2rem;
  color: var(--vc85-primary);
}

/* ========== GAME GRID ========== */
.vc85-game-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vc85-text);
  margin: 1.5rem 0 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--vc85-gold);
}

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

.vc85-game-item {
  text-align: center;
  cursor: pointer;
  transition: var(--vc85-transition);
  border-radius: var(--vc85-radius-sm);
  padding: 0.5rem 0.3rem;
  background: rgba(255,255,255,0.03);
}

.vc85-game-item:hover {
  background: rgba(139,115,85,0.15);
  transform: translateY(-2px);
}

.vc85-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--vc85-radius-sm);
  margin-bottom: 0.3rem;
  border: 1px solid rgba(139,115,85,0.2);
}

.vc85-game-item span {
  font-size: 1rem;
  color: var(--vc85-text-muted);
  display: block;
  line-height: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========== CARDS & MODULES ========== */
.vc85-card {
  background: var(--vc85-bg-card);
  border-radius: var(--vc85-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(139,115,85,0.15);
  box-shadow: var(--vc85-shadow);
}

.vc85-card p {
  font-size: 1.3rem;
  line-height: 2rem;
  color: var(--vc85-text-muted);
}

.vc85-card h3 {
  font-size: 1.5rem;
  color: var(--vc85-gold);
  margin-bottom: 0.8rem;
}

.vc85-promo-text {
  color: var(--vc85-gold);
  font-weight: 700;
  cursor: pointer;
  font-size: 1.3rem;
}

.vc85-promo-text:hover {
  text-decoration: underline;
}

.vc85-promo-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--vc85-gold), var(--vc85-primary));
  color: #fff;
  border: none;
  border-radius: var(--vc85-radius);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--vc85-transition);
  text-align: center;
}

.vc85-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.vc85-promo-btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 2px solid var(--vc85-gold);
  color: var(--vc85-gold);
  border-radius: var(--vc85-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--vc85-transition);
  background: transparent;
}

.vc85-promo-btn-outline:hover {
  background: rgba(201,168,76,0.1);
}

/* ========== FEATURE LIST ========== */
.vc85-feature-list {
  list-style: none;
  padding: 0;
}

.vc85-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1.3rem;
  color: var(--vc85-text-muted);
  line-height: 2rem;
}

.vc85-feature-list .material-icons,
.vc85-feature-list .fas {
  color: var(--vc85-gold);
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ========== RTP TABLE ========== */
.vc85-rtp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.vc85-rtp-item {
  background: rgba(139,115,85,0.08);
  border-radius: var(--vc85-radius-sm);
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(139,115,85,0.15);
}

.vc85-rtp-item .vc85-rtp-name {
  font-size: 1.2rem;
  color: var(--vc85-text);
  margin-bottom: 0.4rem;
}

.vc85-rtp-item .vc85-rtp-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vc85-success);
}

/* ========== WINNERS SHOWCASE ========== */
.vc85-winners-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vc85-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(139,115,85,0.06);
  padding: 0.8rem 1.2rem;
  border-radius: var(--vc85-radius-sm);
  border: 1px solid rgba(139,115,85,0.1);
}

.vc85-winner-item .vc85-winner-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vc85-winner-item .vc85-winner-avatar {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--vc85-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}

.vc85-winner-item .vc85-winner-name {
  font-size: 1.2rem;
  color: var(--vc85-text);
}

.vc85-winner-item .vc85-winner-game {
  font-size: 1rem;
  color: var(--vc85-text-muted);
}

.vc85-winner-item .vc85-winner-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vc85-success);
}

/* ========== TESTIMONIALS ========== */
.vc85-testimonial {
  background: rgba(139,115,85,0.06);
  border-radius: var(--vc85-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--vc85-gold);
}

.vc85-testimonial-text {
  font-size: 1.3rem;
  color: var(--vc85-text-muted);
  line-height: 2rem;
  font-style: italic;
}

.vc85-testimonial-author {
  font-size: 1.1rem;
  color: var(--vc85-gold);
  margin-top: 0.6rem;
  font-weight: 600;
}

/* ========== PAYMENT METHODS ========== */
.vc85-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.vc85-payment-item {
  background: rgba(139,115,85,0.08);
  border-radius: var(--vc85-radius-sm);
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  color: var(--vc85-text);
  border: 1px solid rgba(139,115,85,0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========== APP DOWNLOAD CTA ========== */
.vc85-cta-box {
  background: linear-gradient(135deg, var(--vc85-accent), var(--vc85-bg-card));
  border-radius: var(--vc85-radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(139,115,85,0.2);
}

.vc85-cta-box h3 {
  font-size: 1.8rem;
  color: var(--vc85-gold);
  margin-bottom: 1rem;
}

.vc85-cta-box p {
  font-size: 1.3rem;
  color: var(--vc85-text-muted);
  margin-bottom: 1.5rem;
  line-height: 2rem;
}

.vc85-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.vc85-footer {
  background: linear-gradient(180deg, var(--vc85-bg-card), #0a0a1a);
  padding: 2rem 1.2rem;
  border-top: 1px solid rgba(139,115,85,0.2);
}

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

.vc85-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.vc85-footer-links a {
  padding: 0.6rem 1.2rem;
  background: rgba(139,115,85,0.1);
  border-radius: var(--vc85-radius-sm);
  font-size: 1.2rem;
  color: var(--vc85-text);
  border: 1px solid rgba(139,115,85,0.15);
  transition: var(--vc85-transition);
}

.vc85-footer-links a:hover {
  background: rgba(139,115,85,0.2);
  color: var(--vc85-gold);
  text-decoration: none;
}

.vc85-footer-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: var(--vc85-gray);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ========== BOTTOM NAVIGATION ========== */
.vc85-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 6rem;
  background: linear-gradient(180deg, #1a1a2e, #0f0f1a);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid rgba(139,115,85,0.25);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.5);
}

.vc85-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  min-height: 5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--vc85-transition);
  color: var(--vc85-text-muted);
  padding: 0.4rem;
  -webkit-tap-highlight-color: transparent;
}

.vc85-bottom-nav-btn .material-icons,
.vc85-bottom-nav-btn .fas,
.vc85-bottom-nav-btn .far,
.vc85-bottom-nav-btn .fad,
.vc85-bottom-nav-btn ion-icon,
.vc85-bottom-nav-btn .bi {
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
  transition: var(--vc85-transition);
}

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

.vc85-bottom-nav-btn:hover,
.vc85-bottom-nav-btn.vc85-nav-active {
  color: var(--vc85-gold);
}

.vc85-bottom-nav-btn:hover .material-icons,
.vc85-bottom-nav-btn:hover .fas,
.vc85-bottom-nav-btn:hover .far,
.vc85-bottom-nav-btn:hover ion-icon,
.vc85-bottom-nav-btn:hover .bi,
.vc85-bottom-nav-btn.vc85-nav-active .material-icons,
.vc85-bottom-nav-btn.vc85-nav-active .fas,
.vc85-bottom-nav-btn.vc85-nav-active .far,
.vc85-bottom-nav-btn.vc85-nav-active ion-icon,
.vc85-bottom-nav-btn.vc85-nav-active .bi {
  color: var(--vc85-gold);
  transform: scale(1.15);
}

.vc85-btn-pressed {
  transform: scale(0.92) !important;
  opacity: 0.8;
}

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

@media (max-width: 768px) {
  .vc85-main {
    padding-bottom: 8rem;
  }
  .vc85-footer {
    padding-bottom: 8rem;
  }
}

/* ========== HELP PAGE STYLES ========== */
.vc85-help-content {
  font-size: 1.3rem;
  line-height: 2rem;
  color: var(--vc85-text-muted);
}

.vc85-help-content h2 {
  font-size: 1.6rem;
  color: var(--vc85-gold);
  margin: 1.5rem 0 0.8rem;
}

.vc85-help-content h3 {
  font-size: 1.4rem;
  color: var(--vc85-primary);
  margin: 1.2rem 0 0.6rem;
}

.vc85-help-content p {
  margin-bottom: 1rem;
}

.vc85-help-content ol,
.vc85-help-content ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.vc85-help-content li {
  margin-bottom: 0.5rem;
}

/* FAQ accordion */
.vc85-faq-item {
  background: var(--vc85-bg-card);
  border-radius: var(--vc85-radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(139,115,85,0.12);
}

.vc85-faq-q {
  padding: 1.2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vc85-gold);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vc85-faq-a {
  padding: 0 1.2rem 1.2rem;
  font-size: 1.2rem;
  color: var(--vc85-text-muted);
  line-height: 1.8rem;
}

/* ========== UTILITIES ========== */
.vc85-text-center { text-align: center; }
.vc85-text-gold { color: var(--vc85-gold); }
.vc85-mt-1 { margin-top: 1rem; }
.vc85-mt-2 { margin-top: 2rem; }
.vc85-mb-1 { margin-bottom: 1rem; }
.vc85-mb-2 { margin-bottom: 2rem; }
.vc85-hidden { display: none; }
