/* BL77 Core Styles - va43 prefix */
:root {
  --va43-primary: #E91E63;
  --va43-secondary: #FFB6C1;
  --va43-bg: #0A0A0A;
  --va43-bg-card: #141414;
  --va43-bg-card-alt: #1a1a1a;
  --va43-text: #ADB5BD;
  --va43-text-light: #dee2e6;
  --va43-text-muted: #6c757d;
  --va43-border: #2a2a2a;
  --va43-radius: 0.8rem;
  --va43-radius-sm: 0.5rem;
  --va43-radius-lg: 1.2rem;
  --va43-shadow: 0 2px 12px rgba(0,0,0,0.4);
  --va43-transition: all 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--va43-bg);
  color: var(--va43-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--va43-secondary); text-decoration: none; transition: var(--va43-transition); }
a:hover { color: var(--va43-primary); }
img { max-width: 100%; height: auto; display: block; }
.va43-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.va43-wrapper { padding: 1.6rem 0; }

/* Header */
.va43-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--va43-border);
  max-width: 430px; margin: 0 auto;
}
.va43-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; height: 5.2rem;
}
.va43-logo { display: flex; align-items: center; gap: 0.6rem; }
.va43-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.4rem; }
.va43-logo-text { font-size: 1.8rem; font-weight: 700; color: var(--va43-primary); letter-spacing: 0.5px; }
.va43-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.va43-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.4rem; border-radius: var(--va43-radius-sm);
  font-size: 1.3rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--va43-transition);
  min-height: 3.6rem; min-width: 4.4rem;
}
.va43-btn-register {
  background: var(--va43-primary); color: #fff;
}
.va43-btn-register:hover { background: #c2185b; transform: scale(1.03); }
.va43-btn-login {
  background: transparent; color: var(--va43-secondary);
  border: 1px solid var(--va43-secondary);
}
.va43-btn-login:hover { background: rgba(255,182,193,0.1); }
.va43-menu-toggle {
  background: none; border: none; color: var(--va43-text);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
  min-width: 4.4rem; min-height: 4.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.va43-mobile-menu {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  background: rgba(10,10,10,0.98); border-top: 1px solid var(--va43-border);
}
.va43-menu-active { max-height: 500px !important; }
.va43-mobile-menu ul { list-style: none; padding: 0.8rem 0; }
.va43-mobile-menu li { border-bottom: 1px solid var(--va43-border); }
.va43-mobile-menu a {
  display: block; padding: 1rem 1.6rem; color: var(--va43-text);
  font-size: 1.4rem; transition: var(--va43-transition);
}
.va43-mobile-menu a:hover { color: var(--va43-primary); background: rgba(233,30,99,0.08); padding-left: 2rem; }

/* Bottom Navigation */
.va43-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #141414 0%, #0A0A0A 100%);
  border-top: 1px solid var(--va43-border);
  display: flex; justify-content: space-around; align-items: center;
  height: 6rem; max-width: 430px; margin: 0 auto;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.5);
}
.va43-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 6rem; min-height: 5rem; background: none; border: none;
  color: var(--va43-text-muted); cursor: pointer; transition: var(--va43-transition);
  font-size: 1rem; gap: 0.3rem; position: relative;
}
.va43-nav-item:hover, .va43-nav-active { color: var(--va43-primary); }
.va43-nav-item:active { transform: scale(0.92); }
.va43-nav-item .va43-nav-icon { font-size: 2.2rem; line-height: 1; }
.va43-nav-item .va43-nav-label { font-size: 1rem; white-space: nowrap; }
.va43-nav-active::after {
  content: ''; position: absolute; top: -1px; left: 25%; right: 25%;
  height: 2px; background: var(--va43-primary); border-radius: 0 0 2px 2px;
}

/* Carousel */
.va43-carousel { position: relative; overflow: hidden; border-radius: var(--va43-radius); margin: 0.8rem 0; }
.va43-slides-wrapper { position: relative; width: 100%; height: 18rem; }
.va43-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.5s ease; cursor: pointer;
}
.va43-slide-active { opacity: 1; }
.va43-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--va43-radius); }
.va43-dots { display: flex; justify-content: center; gap: 0.6rem; padding: 0.8rem 0; }
.va43-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: var(--va43-text-muted); cursor: pointer;
  transition: var(--va43-transition); border: none;
}
.va43-dot-active { background: var(--va43-primary); transform: scale(1.3); }

/* Game Grid */
.va43-section { padding: 1.6rem 0; }
.va43-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--va43-text-light);
  margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--va43-primary);
  display: flex; align-items: center; gap: 0.6rem;
}
.va43-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem; padding: 0.4rem 0;
}
.va43-game-item {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: var(--va43-transition); border-radius: var(--va43-radius-sm);
  padding: 0.4rem;
}
.va43-game-item:hover { transform: translateY(-2px); background: rgba(233,30,99,0.06); }
.va43-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: var(--va43-radius-sm);
  border: 1px solid var(--va43-border); object-fit: cover;
}
.va43-game-name {
  font-size: 1rem; color: var(--va43-text); text-align: center;
  margin-top: 0.3rem; line-height: 1.2; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; width: 100%;
}

/* Cards */
.va43-card {
  background: var(--va43-bg-card); border-radius: var(--va43-radius);
  border: 1px solid var(--va43-border); padding: 1.6rem;
  margin-bottom: 1.2rem; transition: var(--va43-transition);
}
.va43-card:hover { border-color: var(--va43-primary); box-shadow: var(--va43-shadow); }
.va43-card-title {
  font-size: 1.6rem; font-weight: 700; color: var(--va43-text-light);
  margin-bottom: 0.8rem;
}
.va43-card-text { font-size: 1.3rem; color: var(--va43-text); line-height: 1.8rem; }

/* Promo Buttons */
.va43-promo-btn {
  display: block; width: 100%; padding: 1.2rem; margin: 1.2rem 0;
  background: linear-gradient(135deg, var(--va43-primary), #ff5252);
  color: #fff; font-size: 1.6rem; font-weight: 700;
  text-align: center; border-radius: var(--va43-radius);
  border: none; cursor: pointer; transition: var(--va43-transition);
}
.va43-promo-btn:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(233,30,99,0.4); }

/* Footer */
.va43-footer {
  background: var(--va43-bg-card); border-top: 1px solid var(--va43-border);
  padding: 2.4rem 1.2rem; margin-top: 2rem;
}
.va43-footer-brand { font-size: 1.3rem; color: var(--va43-text); line-height: 1.8rem; margin-bottom: 1.6rem; }
.va43-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.6rem; }
.va43-footer-links a {
  padding: 0.5rem 1rem; background: var(--va43-bg-card-alt);
  border-radius: var(--va43-radius-sm); font-size: 1.2rem;
  border: 1px solid var(--va43-border); color: var(--va43-text);
}
.va43-footer-links a:hover { color: var(--va43-primary); border-color: var(--va43-primary); }
.va43-footer-copy {
  font-size: 1.1rem; color: var(--va43-text-muted); text-align: center;
  padding-top: 1.2rem; border-top: 1px solid var(--va43-border);
}

/* H Tags */
h1.va43-h1 {
  font-size: 2rem; font-weight: 800; color: var(--va43-text-light);
  line-height: 2.6rem; margin: 1.6rem 0 1rem;
}
h2.va43-h2 {
  font-size: 1.7rem; font-weight: 700; color: var(--va43-text-light);
  margin: 1.4rem 0 0.8rem;
}
h3.va43-h3 {
  font-size: 1.5rem; font-weight: 600; color: var(--va43-secondary);
  margin: 1rem 0 0.6rem;
}

/* Utility */
.va43-text-center { text-align: center; }
.va43-text-primary { color: var(--va43-primary); }
.va43-text-secondary { color: var(--va43-secondary); }
.va43-mt-1 { margin-top: 0.8rem; }
.va43-mt-2 { margin-top: 1.6rem; }
.va43-mb-1 { margin-bottom: 0.8rem; }
.va43-mb-2 { margin-bottom: 1.6rem; }
.va43-p-1 { padding: 0.8rem; }
.va43-p-2 { padding: 1.6rem; }
.va43-flex { display: flex; }
.va43-flex-wrap { flex-wrap: wrap; }
.va43-gap-1 { gap: 0.8rem; }
.va43-gap-2 { gap: 1.6rem; }
.va43-img-fluid { max-width: 100%; height: auto; border-radius: var(--va43-radius-sm); }
.va43-list { list-style: none; padding: 0; }
.va43-list li { padding: 0.5rem 0; padding-left: 1.4rem; position: relative; font-size: 1.3rem; }
.va43-list li::before { content: ''; position: absolute; left: 0; top: 1rem; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--va43-primary); }

/* Content sections */
.va43-content-block { padding: 1.2rem 0; }
.va43-content-block p { font-size: 1.3rem; line-height: 1.8rem; margin-bottom: 0.8rem; }
.va43-highlight-box {
  background: linear-gradient(135deg, rgba(233,30,99,0.12), rgba(255,182,193,0.06));
  border-left: 3px solid var(--va43-primary); border-radius: 0 var(--va43-radius-sm) var(--va43-radius-sm) 0;
  padding: 1.2rem 1.4rem; margin: 1.2rem 0;
}
.va43-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* Responsive - hide bottom nav on desktop */
@media (min-width: 769px) {
  .va43-bottom-nav { display: none; }
}
@media (max-width: 768px) {
  .va43-main { padding-bottom: 8rem; }
}
