/* 333ok app apk - Main Stylesheet */
/* Prefix: vce3- */
/* Colors: #0A0A0A bg, #2C3E50 dark blue, #C71585 magenta primary, #DCDCDC text, #ADB5BD medium gray, #95A5A6 muted */

:root {
  --vce3-bg: #0A0A0A;
  --vce3-dark: #2C3E50;
  --vce3-primary: #C71585;
  --vce3-text: #DCDCDC;
  --vce3-gray: #ADB5BD;
  --vce3-muted: #95A5A6;
  --vce3-primary-dark: #9E1068;
  --vce3-primary-light: #E91E9C;
  --vce3-card-bg: #1A1A2E;
  --vce3-card-border: #2A2A3E;
  --vce3-radius: 0.8rem;
  --vce3-radius-sm: 0.5rem;
  --vce3-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.4);
  --vce3-transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Hind Siliguri', sans-serif;
  background-color: var(--vce3-bg);
  color: var(--vce3-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--vce3-primary);
  text-decoration: none;
  transition: var(--vce3-transition);
}

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

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

/* ===== HEADER ===== */
.vce3-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(135deg, #0D0D1A 0%, #1A1A2E 100%);
  border-bottom: 0.1rem solid var(--vce3-primary);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--vce3-transition);
}

.vce3-header-scrolled {
  box-shadow: 0 0.4rem 1.2rem rgba(199,21,133,0.3);
}

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

.vce3-logo-area img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.4rem;
}

.vce3-logo-area span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vce3-primary);
  letter-spacing: 0.05rem;
}

.vce3-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vce3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--vce3-radius-sm);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--vce3-transition);
  min-height: 3.2rem;
  min-width: 4.4rem;
  font-family: inherit;
}

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

.vce3-btn-register:hover {
  background: linear-gradient(135deg, var(--vce3-primary-light), var(--vce3-primary));
  transform: scale(1.05);
}

.vce3-btn-login {
  background: transparent;
  color: var(--vce3-primary);
  border: 0.1rem solid var(--vce3-primary);
}

.vce3-btn-login:hover {
  background: rgba(199,21,133,0.15);
}

.vce3-hamburger {
  background: none;
  border: none;
  color: var(--vce3-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem;
  min-width: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MOBILE MENU ===== */
.vce3-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vce3-menu-active .vce3-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.vce3-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #0D0D1A, #1A1A2E);
  z-index: 9999;
  transition: right 0.3s ease;
  padding-top: 5rem;
  overflow-y: auto;
}

.vce3-mobile-menu.vce3-menu-active {
  right: 0;
}

.vce3-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--vce3-text);
  font-size: 2.2rem;
  cursor: pointer;
  min-width: 4.4rem;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vce3-menu-links {
  list-style: none;
  padding: 0;
}

.vce3-menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  color: var(--vce3-text);
  font-size: 1.4rem;
  border-bottom: 0.1rem solid rgba(199,21,133,0.15);
  transition: var(--vce3-transition);
  text-decoration: none;
}

.vce3-menu-link:hover {
  background: rgba(199,21,133,0.1);
  color: var(--vce3-primary);
}

.vce3-menu-link i,
.vce3-menu-link .material-icons {
  font-size: 2rem;
  width: 2rem;
  text-align: center;
}

/* ===== MAIN CONTENT ===== */
.vce3-main {
  padding-top: 5.4rem;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .vce3-main {
    padding-bottom: 7.5rem;
  }
}

/* ===== CAROUSEL ===== */
.vce3-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--vce3-radius) var(--vce3-radius);
}

.vce3-carousel-slide {
  display: none;
  cursor: pointer;
  position: relative;
}

.vce3-carousel-slide img {
  width: 100%;
  height: auto;
  min-height: 16rem;
  object-fit: cover;
}

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

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

.vce3-dot-active {
  background: var(--vce3-primary);
  transform: scale(1.3);
}

.vce3-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  font-size: 1.6rem;
  border-radius: 50%;
  min-width: 3.6rem;
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vce3-carousel-prev { left: 0.5rem; }
.vce3-carousel-next { right: 0.5rem; }

/* ===== SECTIONS ===== */
.vce3-section {
  padding: 1.5rem 1rem;
}

.vce3-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--vce3-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 0.2rem solid var(--vce3-primary);
  padding-bottom: 0.5rem;
}

.vce3-section-title i,
.vce3-section-title .material-icons {
  font-size: 2rem;
}

/* ===== GAME GRID ===== */
.vce3-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.vce3-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--vce3-transition);
  padding: 0.5rem;
  border-radius: var(--vce3-radius-sm);
}

.vce3-game-item:hover {
  background: rgba(199,21,133,0.1);
  transform: translateY(-0.2rem);
}

.vce3-game-item img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: var(--vce3-radius-sm);
  border: 0.15rem solid var(--vce3-card-border);
  object-fit: cover;
}

.vce3-game-item span {
  font-size: 1rem;
  color: var(--vce3-text);
  text-align: center;
  line-height: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 6.5rem;
}

/* ===== CARDS ===== */
.vce3-card {
  background: var(--vce3-card-bg);
  border: 0.1rem solid var(--vce3-card-border);
  border-radius: var(--vce3-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.vce3-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vce3-primary);
  margin-bottom: 0.8rem;
}

.vce3-card p {
  font-size: 1.2rem;
  color: var(--vce3-gray);
  line-height: 1.6rem;
  margin-bottom: 0.6rem;
}

/* ===== PROMO CTA ===== */
.vce3-cta {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(199,21,133,0.15), rgba(199,21,133,0.05));
  border-radius: var(--vce3-radius);
  margin: 1rem 0;
}

.vce3-cta h3 {
  font-size: 1.6rem;
  color: var(--vce3-primary);
  margin-bottom: 1rem;
}

.vce3-cta p {
  font-size: 1.2rem;
  color: var(--vce3-gray);
  margin-bottom: 1.2rem;
}

.vce3-cta .vce3-btn {
  font-size: 1.3rem;
  padding: 0.8rem 2rem;
}

/* ===== PROMO LINK TEXT ===== */
.vce3-promo-text {
  color: var(--vce3-primary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--vce3-transition);
  text-decoration: underline;
}

.vce3-promo-text:hover {
  color: var(--vce3-primary-light);
}

/* ===== FOOTER ===== */
.vce3-footer {
  background: linear-gradient(180deg, #0D0D1A, #050510);
  padding: 2rem 1rem 1rem;
  border-top: 0.1rem solid var(--vce3-primary);
}

.vce3-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.vce3-footer-brand h4 {
  font-size: 1.4rem;
  color: var(--vce3-primary);
  margin-bottom: 0.5rem;
}

.vce3-footer-brand p {
  font-size: 1.1rem;
  color: var(--vce3-muted);
  line-height: 1.5rem;
}

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

.vce3-footer-links a {
  color: var(--vce3-gray);
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--vce3-radius-sm);
  transition: var(--vce3-transition);
}

.vce3-footer-links a:hover {
  color: var(--vce3-primary);
  background: rgba(199,21,133,0.1);
}

.vce3-footer-partners {
  text-align: center;
  margin-bottom: 1.5rem;
}

.vce3-footer-partners p {
  font-size: 1rem;
  color: var(--vce3-muted);
  margin-bottom: 0.5rem;
}

.vce3-footer-copy {
  text-align: center;
  padding-top: 1rem;
  border-top: 0.1rem solid var(--vce3-card-border);
  font-size: 1rem;
  color: var(--vce3-muted);
}

/* ===== BOTTOM NAV ===== */
.vce3-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(135deg, #0D0D1A 0%, #1A1A2E 100%);
  border-top: 0.15rem solid var(--vce3-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 6rem;
  padding: 0.3rem 0;
}

.vce3-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: none;
  border: none;
  color: var(--vce3-muted);
  cursor: pointer;
  min-width: 5.5rem;
  min-height: 5rem;
  padding: 0.4rem;
  transition: var(--vce3-transition);
  font-family: inherit;
  border-radius: 0.6rem;
}

.vce3-bottom-btn:hover,
.vce3-bottom-btn:focus {
  color: var(--vce3-primary);
  background: rgba(199,21,133,0.12);
  transform: scale(1.08);
}

.vce3-bottom-btn i,
.vce3-bottom-btn .material-icons {
  font-size: 2.2rem;
}

.vce3-bottom-btn ion-icon {
  font-size: 2.4rem;
}

.vce3-bottom-btn span {
  font-size: 1rem;
  font-weight: 500;
}

.vce3-bottom-btn-active {
  color: var(--vce3-primary) !important;
}

/* ===== BACK TO TOP ===== */
.vce3-back-top {
  position: fixed;
  bottom: 7.5rem;
  right: 1.5rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--vce3-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0.2rem 0.8rem rgba(199,21,133,0.5);
  z-index: 999;
  transition: var(--vce3-transition);
}

.vce3-back-top:hover {
  transform: scale(1.1);
}

/* ===== UTILITY ===== */
.vce3-container {
  padding: 0 1rem;
}

.vce3-text-center {
  text-align: center;
}

.vce3-mb-1 { margin-bottom: 0.5rem; }
.vce3-mb-2 { margin-bottom: 1rem; }
.vce3-mb-3 { margin-bottom: 1.5rem; }

.vce3-hidden { display: none !important; }

.vce3-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(199,21,133,0.15);
  color: var(--vce3-primary);
  border-radius: 0.3rem;
  font-size: 1rem;
  font-weight: 600;
}

/* ===== WINNER LIST ===== */
.vce3-winner-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vce3-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  background: rgba(199,21,133,0.06);
  border-radius: var(--vce3-radius-sm);
  font-size: 1.1rem;
}

.vce3-winner-name {
  color: var(--vce3-text);
  font-weight: 600;
}

.vce3-winner-amount {
  color: var(--vce3-primary);
  font-weight: 700;
}

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

/* ===== TESTIMONIALS ===== */
.vce3-testimonial {
  background: var(--vce3-card-bg);
  border: 0.1rem solid var(--vce3-card-border);
  border-radius: var(--vce3-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.vce3-testimonial-text {
  font-size: 1.2rem;
  color: var(--vce3-gray);
  line-height: 1.6rem;
  margin-bottom: 0.6rem;
  font-style: italic;
}

.vce3-testimonial-author {
  font-size: 1.1rem;
  color: var(--vce3-primary);
  font-weight: 600;
}

/* ===== FEATURES GRID ===== */
.vce3-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.vce3-feature-item {
  background: var(--vce3-card-bg);
  border: 0.1rem solid var(--vce3-card-border);
  border-radius: var(--vce3-radius);
  padding: 1rem;
  text-align: center;
  transition: var(--vce3-transition);
}

.vce3-feature-item:hover {
  border-color: var(--vce3-primary);
  transform: translateY(-0.2rem);
}

.vce3-feature-item i,
.vce3-feature-item .material-icons {
  font-size: 2.4rem;
  color: var(--vce3-primary);
  margin-bottom: 0.5rem;
}

.vce3-feature-item h4 {
  font-size: 1.2rem;
  color: var(--vce3-text);
  margin-bottom: 0.3rem;
}

.vce3-feature-item p {
  font-size: 1rem;
  color: var(--vce3-muted);
}

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

.vce3-payment-item {
  background: var(--vce3-card-bg);
  border: 0.1rem solid var(--vce3-card-border);
  border-radius: var(--vce3-radius-sm);
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  color: var(--vce3-gray);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== DOWNLOAD CTA ===== */
.vce3-download-box {
  background: linear-gradient(135deg, rgba(199,21,133,0.2), rgba(44,62,80,0.3));
  border: 0.15rem solid var(--vce3-primary);
  border-radius: var(--vce3-radius);
  padding: 1.5rem;
  text-align: center;
}

.vce3-download-box h3 {
  font-size: 1.5rem;
  color: var(--vce3-primary);
  margin-bottom: 0.8rem;
}

.vce3-download-box p {
  font-size: 1.2rem;
  color: var(--vce3-gray);
  margin-bottom: 1.2rem;
}

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

@media (max-width: 768px) {
  .vce3-main {
    padding-bottom: 7.5rem;
  }
}

@media (max-width: 360px) {
  .vce3-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vce3-game-item img {
    width: 4.5rem;
    height: 4.5rem;
  }
}

/* ===== FAQ SECTION ===== */
.vce3-faq-item {
  background: var(--vce3-card-bg);
  border: 0.1rem solid var(--vce3-card-border);
  border-radius: var(--vce3-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.vce3-faq-q {
  padding: 1rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vce3-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vce3-faq-a {
  padding: 0 1.2rem 1rem;
  font-size: 1.2rem;
  color: var(--vce3-gray);
  line-height: 1.6rem;
}

/* ===== GUIDE STEPS ===== */
.vce3-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.vce3-step-num {
  min-width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--vce3-primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vce3-step-content h4 {
  font-size: 1.3rem;
  color: var(--vce3-text);
  margin-bottom: 0.3rem;
}

.vce3-step-content p {
  font-size: 1.2rem;
  color: var(--vce3-gray);
  line-height: 1.5rem;
}
