/*
 * gamezone games - Layout Stylesheet
 * File: css/layout-e97c.css
 * Prefix: vcbc-
 * Colors: #1E1E1E (dark bg), #ADB5BD (light text), #00FF7F (accent)
 * Mobile-first design, max-width 430px
 */

:root {
  --vcbc-primary: #00FF7F;
  --vcbc-bg: #1E1E1E;
  --vcbc-bg-alt: #141414;
  --vcbc-bg-card: #262626;
  --vcbc-bg-card-hover: #2f2f2f;
  --vcbc-text: #ADB5BD;
  --vcbc-text-light: #E0E0E0;
  --vcbc-text-dark: #888888;
  --vcbc-accent: #00FF7F;
  --vcbc-accent-dim: #00cc66;
  --vcbc-accent-glow: rgba(0, 255, 127, 0.15);
  --vcbc-border: #333333;
  --vcbc-header-height: 56px;
  --vcbc-bottom-nav-height: 60px;
  --vcbc-radius: 8px;
  --vcbc-radius-sm: 4px;
  --vcbc-radius-lg: 12px;
  --vcbc-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  --vcbc-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.5);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--vcbc-bg);
  color: var(--vcbc-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--vcbc-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Container */
.vcbc-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.vcbc-wrapper {
  width: 100%;
  padding: 0;
}

/* ========== HEADER ========== */
.vcbc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--vcbc-header-height);
  background: var(--vcbc-bg-alt);
  border-bottom: 1px solid var(--vcbc-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
}

.vcbc-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vcbc-logo {
  width: 28px;
  height: 28px;
  border-radius: var(--vcbc-radius-sm);
}

.vcbc-site-name {
  color: var(--vcbc-accent);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}

.vcbc-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vcbc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--vcbc-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  min-height: 36px;
}

.vcbc-btn-register {
  background: var(--vcbc-accent);
  color: var(--vcbc-bg);
}

.vcbc-btn-register:hover {
  background: var(--vcbc-accent-dim);
}

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

.vcbc-btn-login:hover {
  background: var(--vcbc-accent-glow);
}

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

/* ========== MOBILE MENU ========== */
.vcbc-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vcbc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  max-width: 280px;
  height: 100vh;
  background: var(--vcbc-bg-alt);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  overflow-y: auto;
  padding: 2rem 1.6rem;
}

.vcbc-mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--vcbc-border);
}

.vcbc-mobile-menu-title {
  color: var(--vcbc-accent);
  font-size: 1.8rem;
  font-weight: 700;
}

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

.vcbc-menu-nav {
  list-style: none;
}

.vcbc-menu-nav li {
  border-bottom: 1px solid var(--vcbc-border);
}

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

.vcbc-menu-nav a:hover {
  color: var(--vcbc-accent);
  text-decoration: none;
}

.vcbc-menu-nav .material-icons,
.vcbc-menu-nav .fas,
.vcbc-menu-nav .bi {
  font-size: 2rem;
  width: 2.4rem;
  text-align: center;
}

/* ========== MAIN CONTENT ========== */
.vcbc-main {
  padding-top: var(--vcbc-header-height);
  min-height: 100vh;
}

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

.vcbc-carousel-track {
  position: relative;
  width: 100%;
  height: 200px;
}

.vcbc-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

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

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

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

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

.vcbc-dot-active {
  background: var(--vcbc-accent);
}

/* ========== SECTIONS ========== */
.vcbc-section {
  padding: 2rem 1.2rem;
}

.vcbc-section-title {
  color: var(--vcbc-text-light);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--vcbc-accent);
}

.vcbc-section-subtitle {
  color: var(--vcbc-text-dark);
  font-size: 1.2rem;
  margin-bottom: 1.6rem;
}

/* ========== GAME GRID ========== */
.vcbc-game-section {
  margin-bottom: 2.4rem;
}

.vcbc-game-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.vcbc-game-section-title {
  color: var(--vcbc-accent);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.vcbc-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.vcbc-game-item:hover {
  transform: scale(1.05);
}

.vcbc-game-img {
  width: 70px;
  height: 70px;
  border-radius: var(--vcbc-radius);
  object-fit: cover;
  margin-bottom: 0.4rem;
  border: 1px solid var(--vcbc-border);
}

.vcbc-game-name {
  color: var(--vcbc-text);
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.3rem;
  max-width: 76px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ========== CARDS ========== */
.vcbc-card {
  background: var(--vcbc-bg-card);
  border-radius: var(--vcbc-radius-lg);
  padding: 1.6rem;
  margin-bottom: 1.6rem;
  border: 1px solid var(--vcbc-border);
}

.vcbc-card-title {
  color: var(--vcbc-accent);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.vcbc-card-text p {
  margin-bottom: 0.8rem;
}

/* ========== PROMO CTA ========== */
.vcbc-cta {
  text-align: center;
  padding: 2rem 1.2rem;
  margin: 1.6rem 0;
}

.vcbc-cta-title {
  color: var(--vcbc-text-light);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.vcbc-cta-text {
  color: var(--vcbc-text);
  font-size: 1.3rem;
  margin-bottom: 1.6rem;
}

.vcbc-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--vcbc-accent);
  color: var(--vcbc-bg);
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 20px var(--vcbc-accent-glow);
}

.vcbc-btn-cta:hover {
  background: var(--vcbc-accent-dim);
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 255, 127, 0.3);
}

/* ========== FEATURES GRID ========== */
.vcbc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vcbc-feature-item {
  background: var(--vcbc-bg-card);
  border-radius: var(--vcbc-radius);
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--vcbc-border);
}

.vcbc-feature-icon {
  font-size: 2.4rem;
  color: var(--vcbc-accent);
  margin-bottom: 0.6rem;
}

.vcbc-feature-title {
  color: var(--vcbc-text-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.vcbc-feature-desc {
  color: var(--vcbc-text-dark);
  font-size: 1.1rem;
}

/* ========== TESTIMONIALS ========== */
.vcbc-testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vcbc-testimonial {
  background: var(--vcbc-bg-card);
  border-radius: var(--vcbc-radius);
  padding: 1.2rem;
  border-left: 3px solid var(--vcbc-accent);
}

.vcbc-testimonial-name {
  color: var(--vcbc-accent);
  font-size: 1.3rem;
  font-weight: 600;
}

.vcbc-testimonial-text {
  color: var(--vcbc-text);
  font-size: 1.2rem;
  margin-top: 0.4rem;
  font-style: italic;
}

/* ========== PAYMENT ICONS ========== */
.vcbc-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.vcbc-payment-item {
  background: var(--vcbc-bg-card);
  border-radius: var(--vcbc-radius);
  padding: 0.8rem 1.2rem;
  color: var(--vcbc-text-light);
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--vcbc-border);
}

/* ========== WINNERS LIST ========== */
.vcbc-winners-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vcbc-winner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--vcbc-bg-card);
  border-radius: var(--vcbc-radius-sm);
}

.vcbc-winner-name {
  color: var(--vcbc-text-light);
  font-size: 1.2rem;
  font-weight: 500;
}

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

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

/* ========== FOOTER ========== */
.vcbc-footer {
  background: var(--vcbc-bg-alt);
  padding: 2rem 1.2rem;
  border-top: 1px solid var(--vcbc-border);
}

.vcbc-footer-brand {
  text-align: center;
  margin-bottom: 1.6rem;
}

.vcbc-footer-brand p {
  color: var(--vcbc-text-dark);
  font-size: 1.2rem;
  line-height: 1.8rem;
  max-width: 360px;
  margin: 0 auto;
}

.vcbc-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.vcbc-footer-link {
  color: var(--vcbc-accent);
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--vcbc-border);
  border-radius: var(--vcbc-radius-sm);
  transition: background 0.2s;
}

.vcbc-footer-link:hover {
  background: var(--vcbc-accent-glow);
  text-decoration: none;
}

.vcbc-footer-promo-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.vcbc-footer-copyright {
  text-align: center;
  color: var(--vcbc-text-dark);
  font-size: 1.1rem;
  border-top: 1px solid var(--vcbc-border);
  padding-top: 1.2rem;
}

/* ========== BOTTOM NAV ========== */
.vcbc-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--vcbc-bottom-nav-height);
  background: var(--vcbc-bg-alt);
  border-top: 1px solid var(--vcbc-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.vcbc-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--vcbc-text-dark);
  cursor: pointer;
  min-width: 60px;
  min-height: 50px;
  transition: color 0.2s, transform 0.15s;
  padding: 0.4rem 0;
}

.vcbc-bottom-nav-btn:hover,
.vcbc-bottom-nav-btn:focus {
  color: var(--vcbc-accent);
}

.vcbc-bottom-nav-btn:active {
  transform: scale(0.92);
}

.vcbc-bottom-nav-btn .material-icons,
.vcbc-bottom-nav-btn .fas,
.vcbc-bottom-nav-btn .far,
.vcbc-bottom-nav-btn .bi,
.vcbc-bottom-nav-btn ion-icon {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.vcbc-bottom-nav-label {
  font-size: 1rem;
  color: inherit;
}

.vcbc-bottom-nav-btn.vcbc-nav-active {
  color: var(--vcbc-accent);
}

.vcbc-bottom-nav-btn.vcbc-nav-active .vcbc-bottom-nav-label {
  font-weight: 600;
}

/* ========== BACK TO TOP ========== */
.vcbc-back-to-top {
  position: fixed;
  bottom: 75px;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vcbc-accent);
  color: var(--vcbc-bg);
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--vcbc-shadow);
}

/* ========== CONTENT HELPERS ========== */
.vcbc-text-accent { color: var(--vcbc-accent); }
.vcbc-text-light { color: var(--vcbc-text-light); }
.vcbc-text-center { text-align: center; }
.vcbc-mb-1 { margin-bottom: 0.8rem; }
.vcbc-mb-2 { margin-bottom: 1.6rem; }
.vcbc-mt-1 { margin-top: 0.8rem; }
.vcbc-mt-2 { margin-top: 1.6rem; }

.vcbc-promo-link {
  color: var(--vcbc-accent);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.vcbc-promo-link:hover {
  color: var(--vcbc-accent-dim);
  text-decoration: underline;
}

/* ========== INTERNAL LINK STYLE ========== */
.vcbc-internal-link {
  color: var(--vcbc-accent);
  text-decoration: underline;
  font-weight: 500;
}

.vcbc-internal-link:hover {
  color: var(--vcbc-accent-dim);
}

/* ========== APP DOWNLOAD ========== */
.vcbc-app-banner {
  background: linear-gradient(135deg, var(--vcbc-bg-card), #1a3a2a);
  border-radius: var(--vcbc-radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1px solid var(--vcbc-accent-dim);
}

.vcbc-app-banner-title {
  color: var(--vcbc-accent);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.vcbc-app-banner-text {
  color: var(--vcbc-text);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .vcbc-main {
    padding-bottom: 80px;
  }
}

@media (min-width: 769px) {
  .vcbc-bottom-nav {
    display: none;
  }

  .vcbc-main {
    padding-bottom: 0;
  }
}

/* ========== FAQ ========== */
.vcbc-faq-item {
  border-bottom: 1px solid var(--vcbc-border);
  padding: 1rem 0;
}

.vcbc-faq-question {
  color: var(--vcbc-text-light);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.vcbc-faq-answer {
  color: var(--vcbc-text);
  font-size: 1.2rem;
  line-height: 1.8rem;
}

/* ========== HIGHLIGHT BADGE ========== */
.vcbc-badge {
  display: inline-block;
  background: var(--vcbc-accent);
  color: var(--vcbc-bg);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* ========== DIVIDER ========== */
.vcbc-divider {
  height: 1px;
  background: var(--vcbc-border);
  margin: 1.6rem 0;
}
