/* PG88 Link layout.css - vbeb- prefixed classes */

:root {
  --vbeb-primary: #D4AF37;
  --vbeb-secondary: #495057;
  --vbeb-bg: #2D2D2D;
  --vbeb-bg-2: #1c1c1c;
  --vbeb-text: #EEE8AA;
  --vbeb-accent: #FF5722;
  --vbeb-soft: #FFFFBA;
  --vbeb-line: rgba(212, 175, 55, 0.25);
  --vbeb-radius: 10px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--vbeb-bg);
  color: var(--vbeb-text);
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { color: var(--vbeb-primary); text-decoration: none; }
a:hover { color: var(--vbeb-soft); }

.vbeb-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.vbeb-wrapper { padding-bottom: 1rem; }

.vbeb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #1c1c1c 0%, #2D2D2D 100%);
  border-bottom: 1px solid var(--vbeb-line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.vbeb-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  gap: 0.6rem;
}

.vbeb-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--vbeb-soft);
  font-size: 1.6rem;
}
.vbeb-logo img { width: 28px; height: 28px; border-radius: 6px; }
.vbeb-logo b { color: var(--vbeb-primary); }

.vbeb-auth { display: flex; gap: 0.4rem; align-items: center; }

.vbeb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.1rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 36px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.vbeb-btn:active { transform: scale(0.96); }

.vbeb-btn-login {
  background: transparent;
  color: var(--vbeb-text);
  border: 1px solid var(--vbeb-line);
}
.vbeb-btn-register {
  background: linear-gradient(135deg, var(--vbeb-accent), var(--vbeb-primary));
  color: #1c1c1c;
}
.vbeb-btn-promo {
  background: var(--vbeb-primary);
  color: #1c1c1c;
}
.vbeb-text-link {
  color: var(--vbeb-primary);
  font-weight: 700;
  border-bottom: 1px dashed currentColor;
}

.vbeb-menu-btn {
  background: transparent;
  border: 1px solid var(--vbeb-line);
  color: var(--vbeb-text);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  font-size: 1.4rem;
}

.vbeb-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--vbeb-bg-2);
}
.vbeb-nav-open { max-height: 480px; }
.vbeb-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.4rem 1rem 0.8rem;
}
.vbeb-nav li { border-bottom: 1px solid var(--vbeb-line); }
.vbeb-nav li:last-child { border-bottom: none; }
.vbeb-nav a {
  display: block;
  padding: 1rem 0.4rem;
  color: var(--vbeb-text);
  font-size: 1.4rem;
}

main.vbeb-main {
  margin-top: 60px;
  padding: 1rem 0 0;
}
@media (max-width: 768px) {
  main.vbeb-main { padding-bottom: 90px; }
}

.vbeb-section { padding: 1.6rem 0; }
.vbeb-section-title {
  font-size: 1.9rem;
  color: var(--vbeb-soft);
  margin: 0 0 1rem;
  border-left: 4px solid var(--vbeb-primary);
  padding-left: 0.8rem;
}
.vbeb-section-title small {
  display: block;
  font-size: 1.2rem;
  color: var(--vbeb-text);
  opacity: 0.7;
  font-weight: 400;
  margin-top: 0.2rem;
}

.vbeb-carousel {
  position: relative;
  border-radius: var(--vbeb-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  background: var(--vbeb-bg-2);
}
.vbeb-slide {
  display: none;
  position: relative;
}
.vbeb-slide-active { display: block; }
.vbeb-slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.vbeb-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: var(--vbeb-soft);
  font-weight: 700;
  font-size: 1.5rem;
}
.vbeb-dots {
  position: absolute;
  bottom: 8px; right: 10px;
  display: flex; gap: 5px;
}
.vbeb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; padding: 0; border: none;
}
.vbeb-dot-active { background: var(--vbeb-primary); }

.vbeb-hero {
  text-align: center;
  padding: 1.2rem 0 0.4rem;
}
.vbeb-hero h1 {
  font-size: 2.2rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  color: var(--vbeb-soft);
}
.vbeb-hero p { color: var(--vbeb-text); margin: 0.4rem 0 1rem; }
.vbeb-hero-cta { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }

.vbeb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.vbeb-game {
  background: var(--vbeb-bg-2);
  border: 1px solid var(--vbeb-line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.15s ease;
  cursor: pointer;
}
.vbeb-game:hover { transform: translateY(-2px); }
.vbeb-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #111;
}
.vbeb-game-name {
  font-size: 1.15rem;
  color: var(--vbeb-text);
  padding: 0.45rem 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vbeb-cat-tag {
  display: inline-block;
  font-size: 1.05rem;
  color: var(--vbeb-primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.vbeb-card {
  background: var(--vbeb-bg-2);
  border: 1px solid var(--vbeb-line);
  border-radius: var(--vbeb-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.vbeb-card h3 {
  margin: 0 0 0.5rem;
  color: var(--vbeb-soft);
  font-size: 1.5rem;
}
.vbeb-card p { margin: 0.4rem 0; font-size: 1.35rem; }
.vbeb-card ul { margin: 0.4rem 0; padding-left: 1.4rem; }
.vbeb-card li { margin: 0.3rem 0; }

.vbeb-rtp {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
}
.vbeb-rtp th, .vbeb-rtp td {
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--vbeb-line);
  text-align: left;
}
.vbeb-rtp th { color: var(--vbeb-primary); }
.vbeb-rtp td.num { color: var(--vbeb-soft); font-weight: 700; }

.vbeb-testi {
  display: grid;
  gap: 0.6rem;
}
.vbeb-testi-item {
  background: var(--vbeb-bg-2);
  border-left: 3px solid var(--vbeb-accent);
  border-radius: 6px;
  padding: 0.8rem 1rem;
}
.vbeb-testi-item b { color: var(--vbeb-soft); }
.vbeb-testi-item span { color: var(--vbeb-primary); font-size: 1.1rem; }

.vbeb-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.vbeb-pay span {
  border: 1px solid var(--vbeb-line);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 1.15rem;
  background: var(--vbeb-bg-2);
}

.vbeb-faq-item {
  background: var(--vbeb-bg-2);
  border: 1px solid var(--vbeb-line);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.vbeb-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--vbeb-soft);
  font-weight: 700;
  font-size: 1.35rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
}
.vbeb-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--vbeb-text);
}
.vbeb-faq-open .vbeb-faq-a {
  max-height: 400px;
  padding: 0 1rem 1rem;
}

/* ---------- CTA banner ---------- */
.vbeb-cta {
  background: linear-gradient(135deg, var(--vbeb-accent), var(--vbeb-primary));
  color: #1c1c1c;
  padding: 1.2rem;
  border-radius: var(--vbeb-radius);
  text-align: center;
  margin: 1rem 0;
}
.vbeb-cta h3 { margin: 0 0 0.3rem; color: #1c1c1c; }
.vbeb-cta p { margin: 0 0 0.8rem; color: #2D2D2D; }
.vbeb-cta .vbeb-btn { background: #1c1c1c; color: var(--vbeb-soft); }

/* ---------- Footer ---------- */
.vbeb-footer {
  background: var(--vbeb-bg-2);
  border-top: 1px solid var(--vbeb-line);
  padding: 1.4rem 0 2rem;
  font-size: 1.25rem;
}
.vbeb-footer p { color: var(--vbeb-text); margin: 0.4rem 0; }
.vbeb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  margin: 0.6rem 0;
}
.vbeb-footer-links a {
  color: var(--vbeb-text);
  font-size: 1.2rem;
}
.vbeb-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0;
}
.vbeb-footer-copy {
  margin-top: 0.6rem;
  color: var(--vbeb-text);
  opacity: 0.7;
  font-size: 1.1rem;
}

/* ---------- Bottom navigation (mobile) ---------- */
.vbeb-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--vbeb-bg-2);
  border-top: 1px solid var(--vbeb-line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
.vbeb-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--vbeb-text);
  font-size: 1rem;
  min-width: 60px;
  min-height: 60px;
  gap: 2px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.vbeb-bottom-nav a:active { transform: scale(0.92); }
.vbeb-bottom-nav a i,
.vbeb-bottom-nav a .material-icons,
.vbeb-bottom-nav a ion-icon,
.vbeb-bottom-nav a bi {
  font-size: 22px;
}
.vbeb-bottom-nav .vbeb-bottom-promo {
  color: var(--vbeb-primary);
}
.vbeb-bottom-active { color: var(--vbeb-soft) !important; }

@media (min-width: 769px) {
  .vbeb-bottom-nav { display: none; }
  main.vbeb-main { padding-bottom: 1rem; }
}

/* ---------- Utility ---------- */
.vbeb-center { text-align: center; }
.vbeb-mt { margin-top: 1rem; }
.vbeb-hidden { display: none !important; }
