/* download gamezone - design stylesheet
   Prefix: ve2f-
   Palette: #BAE1FF | #40E0D0 | #2C3E50 | #0000FF | #DEE2E6 | #E0FFFF
*/
:root {
  --ve2f-primary: #0000FF;
  --ve2f-accent: #40E0D0;
  --ve2f-sky: #BAE1FF;
  --ve2f-cyan: #E0FFFF;
  --ve2f-ink: #2C3E50;
  --ve2f-line: #DEE2E6;
  --ve2f-bg: #0b1320;
  --ve2f-bg2: #111c2e;
  --ve2f-text: #EAF4FF;
  --ve2f-muted: #9fb3c8;
  --ve2f-gold: #ffd166;
  --ve2f-shadow: 0 6px 22px rgba(0, 0, 0, .28);
  --ve2f-radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: linear-gradient(160deg, var(--ve2f-bg), var(--ve2f-bg2));
  color: var(--ve2f-text);
  line-height: 1.55;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ve2f-sky); text-decoration: none; }
a:hover { color: var(--ve2f-accent); }

/* Layout */
.ve2f-container { width: 100%; max-width: 430px; padding: 0 14px; margin: 0 auto; }
.ve2f-wrapper { padding: 16px 0; }
.ve2f-grid { display: grid; gap: 12px; }

/* Header */
.ve2f-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000;
  background: rgba(11, 19, 32, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(64, 224, 208, .25);
}
.ve2f-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; gap: 8px;
}
.ve2f-logo { display: flex; align-items: center; gap: 8px; min-width: 0; }
.ve2f-logo img { width: 30px; height: 30px; border-radius: 8px; }
.ve2f-logo-text {
  font-size: 1.5rem; font-weight: 800; letter-spacing: .3px; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ve2f-logo-text span { color: var(--ve2f-accent); }
.ve2f-header-actions { display: flex; align-items: center; gap: 6px; }
.ve2f-menu-btn {
  background: transparent; border: 0; color: var(--ve2f-sky);
  font-size: 2rem; cursor: pointer; padding: 4px 6px; border-radius: 6px;
}
.ve2f-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: 999px; font-size: 1.25rem; font-weight: 700;
  border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease;
}
.ve2f-btn:hover { transform: translateY(-1px); }
.ve2f-btn-login { background: transparent; color: var(--ve2f-sky); border: 1px solid var(--ve2f-sky); }
.ve2f-btn-register {
  background: linear-gradient(135deg, var(--ve2f-accent), var(--ve2f-primary));
  color: #fff; box-shadow: var(--ve2f-shadow);
}

/* Mobile expandable menu */
.ve2f-mobile-menu {
  position: fixed; top: 56px; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: var(--ve2f-bg2); border-bottom: 1px solid rgba(64, 224, 208, .2);
  max-height: 0; overflow: hidden; transition: max-height .3s ease; z-index: 9999;
}
.ve2f-mobile-menu.ve2f-is-open { max-height: 480px; }
.ve2f-mobile-menu-inner { padding: 10px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ve2f-mobile-menu-inner a {
  display: block; padding: 10px 12px; background: rgba(186, 225, 255, .06);
  color: var(--ve2f-text); border-radius: 10px; font-size: 1.3rem;
}
.ve2f-mobile-menu-inner a:hover { background: rgba(64, 224, 208, .18); color: #fff; }

/* Page offset for fixed header */
.ve2f-main { padding-top: 60px; }
@media (max-width: 768px) {
  .ve2f-main { padding-bottom: 84px; }
}

/* Hero / Carousel */
.ve2f-hero {
  position: relative; width: 100%; height: 200px; border-radius: var(--ve2f-radius);
  overflow: hidden; margin: 10px 0; box-shadow: var(--ve2f-shadow);
}
.ve2f-hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; cursor: pointer;
}
.ve2f-hero-slide.ve2f-is-active { opacity: 1; }
.ve2f-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.ve2f-hero-caption {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
.ve2f-hero-caption h2 { font-size: 1.7rem; font-weight: 800; }
.ve2f-hero-caption p { font-size: 1.2rem; color: var(--ve2f-cyan); }

/* Sections */
.ve2f-section { padding: 18px 0; }
.ve2f-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px; padding: 0 14px;
}
.ve2f-section-title {
  font-size: 1.7rem; font-weight: 800; color: #fff;
  border-left: 4px solid var(--ve2f-accent); padding-left: 10px;
}
.ve2f-section-more { font-size: 1.2rem; color: var(--ve2f-sky); }

/* Game grid */
.ve2f-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 14px;
}
.ve2f-game-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(186,225,255,.12);
  border-radius: 12px; padding: 8px; text-align: center; cursor: pointer;
  transition: transform .15s ease, border-color .2s ease;
}
.ve2f-game-card:hover { transform: translateY(-2px); border-color: var(--ve2f-accent); }
.ve2f-game-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px;
  background: #0e1726;
}
.ve2f-game-name {
  margin-top: 6px; font-size: 1.15rem; color: var(--ve2f-text); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Promo CTA strip */
.ve2f-cta {
  margin: 16px 14px; padding: 16px; border-radius: var(--ve2f-radius);
  background: linear-gradient(135deg, var(--ve2f-primary), var(--ve2f-accent));
  color: #fff; box-shadow: var(--ve2f-shadow); text-align: center;
}
.ve2f-cta h3 { font-size: 1.7rem; font-weight: 800; }
.ve2f-cta p { font-size: 1.25rem; margin: 6px 0 10px; opacity: .92; }
.ve2f-cta .ve2f-btn-register { background: #fff; color: var(--ve2f-primary); }

/* Cards / blocks */
.ve2f-card {
  background: rgba(186,225,255,.05); border: 1px solid rgba(64,224,208,.18);
  border-radius: var(--ve2f-radius); padding: 14px; margin: 10px 14px;
}
.ve2f-card h3 { font-size: 1.55rem; color: #fff; margin-bottom: 6px; }
.ve2f-card p { font-size: 1.3rem; color: var(--ve2f-muted); }
.ve2f-card a { color: var(--ve2f-accent); font-weight: 600; }

.ve2f-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 14px; }
.ve2f-feature {
  background: rgba(255,255,255,.04); padding: 12px; border-radius: 12px;
  text-align: center; border: 1px solid rgba(186,225,255,.1);
}
.ve2f-feature i, .ve2f-feature .material-icons-outlined { font-size: 2.2rem; color: var(--ve2f-accent); }
.ve2f-feature h4 { font-size: 1.3rem; color: #fff; margin: 4px 0; }
.ve2f-feature p { font-size: 1.15rem; color: var(--ve2f-muted); }

/* Testimonials */
.ve2f-testi {
  background: rgba(255,255,255,.04); border-left: 3px solid var(--ve2f-gold);
  border-radius: 10px; padding: 12px; margin: 0 14px 10px;
}
.ve2f-testi p { font-size: 1.3rem; color: var(--ve2f-text); }
.ve2f-testi cite { display: block; margin-top: 4px; color: var(--ve2f-sky); font-style: normal; font-size: 1.15rem; }

/* Winners */
.ve2f-winners {
  display: flex; gap: 8px; overflow-x: auto; padding: 4px 14px 8px;
  scroll-snap-type: x mandatory;
}
.ve2f-winner {
  flex: 0 0 160px; background: rgba(64,224,208,.08); padding: 10px;
  border-radius: 10px; scroll-snap-align: start; border: 1px solid rgba(64,224,208,.2);
}
.ve2f-winner span { font-size: 1.2rem; color: var(--ve2f-muted); }
.ve2f-winner strong { display: block; color: var(--ve2f-gold); font-size: 1.4rem; }

/* Payment logos */
.ve2f-pay-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px; }
.ve2f-pay {
  background: #fff; color: var(--ve2f-ink); border-radius: 8px; padding: 6px 12px;
  font-size: 1.15rem; font-weight: 700;
}

/* FAQ */
.ve2f-faq { padding: 0 14px; }
.ve2f-faq details {
  background: rgba(186,225,255,.05); border: 1px solid rgba(186,225,255,.12);
  border-radius: 10px; padding: 10px 12px; margin-bottom: 8px;
}
.ve2f-faq summary { font-size: 1.35rem; color: #fff; cursor: pointer; font-weight: 600; }
.ve2f-faq p { margin-top: 6px; color: var(--ve2f-muted); font-size: 1.25rem; }

/* Reveal animation */
.ve2f-reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.ve2f-reveal.ve2f-is-visible { opacity: 1; transform: none; }

/* Footer */
.ve2f-footer {
  background: #060c16; border-top: 1px solid rgba(64,224,208,.2);
  padding: 20px 14px 24px; margin-top: 14px;
}
.ve2f-footer-about { color: var(--ve2f-muted); font-size: 1.25rem; margin-bottom: 12px; }
.ve2f-footer-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 12px;
}
.ve2f-footer-links a { color: var(--ve2f-text); font-size: 1.2rem; padding: 4px 0; }
.ve2f-footer-promos { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.ve2f-footer-promos .ve2f-btn { font-size: 1.15rem; }
.ve2f-footer-copy { color: var(--ve2f-muted); font-size: 1.1rem; border-top: 1px solid rgba(255,255,255,.06); padding-top: 10px; }

/* Bottom nav */
.ve2f-bottomnav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 62px; z-index: 1000;
  background: rgba(6, 12, 22, .98); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(64,224,208,.3);
  display: flex; justify-content: space-around; align-items: center;
}
.ve2f-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px; background: transparent; border: 0;
  color: var(--ve2f-muted); display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px; cursor: pointer; transition: transform .15s ease, color .2s ease;
}
.ve2f-bottomnav-btn i,
.ve2f-bottomnav-btn .material-icons-outlined,
.ve2f-bottomnav-btn ion-icon { font-size: 22px; }
.ve2f-bottomnav-btn span { font-size: 1rem; }
.ve2f-bottomnav-btn:hover { transform: scale(1.08); color: var(--ve2f-sky); }
.ve2f-bottomnav-btn.ve2f-is-current { color: var(--ve2f-accent); }
.ve2f-bottomnav-btn.ve2f-promo { color: var(--ve2f-gold); }

/* Desktop: hide bottom nav, widen layout */
@media (min-width: 769px) {
  body { max-width: 960px; }
  .ve2f-header, .ve2f-mobile-menu, .ve2f-bottomnav, .ve2f-container { max-width: 960px; }
  .ve2f-bottomnav { display: none; }
  .ve2f-main { padding-bottom: 20px; }
  .ve2f-game-grid { grid-template-columns: repeat(6, 1fr); padding: 0 14px; }
  .ve2f-feature-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 430px) {
  body { font-size: 1.4rem; }
  .ve2f-hero { height: 170px; }
  .ve2f-section-title { font-size: 1.55rem; }
  .ve2f-hero-caption h2 { font-size: 1.5rem; }
}
