/* hawkgaming core stylesheet
   Color palette: #B0E0E6 | #0C0C0C | #6495ED | #F5F5F5 | #4682B4
   All custom classes use the v727- prefix. */

:root {
  --v727-primary: #4682B4;
  --v727-accent: #6495ED;
  --v727-bg: #0C0C0C;
  --v727-bg-soft: #161616;
  --v727-card: #1d1d1d;
  --v727-text: #F5F5F5;
  --v727-muted: #B0E0E6;
  --v727-border: #2a2a2a;
  --v727-gold: #FFD27A;
  --v727-danger: #FF6B6B;
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--v727-bg);
  color: var(--v727-text);
  font-size: 1.5rem;
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--v727-accent); text-decoration: none; }
img { max-width: 100%; display: block; }

/* Layout containers */
.v727-container { width: 100%; padding: 0 1.2rem; }
.v727-wrapper { padding: 1.6rem 1.2rem; }
.v727-grid { display: grid; gap: 1rem; }

/* ===== Header ===== */
.v727-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  border-bottom: 1px solid var(--v727-border);
  max-width: 430px;
  margin: 0 auto;
}
.v727-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  gap: 0.6rem;
}
.v727-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.v727-brand img { width: 28px; height: 28px; border-radius: 6px; }
.v727-brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--v727-muted);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.v727-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.v727-menu-btn {
  background: transparent;
  border: 1px solid var(--v727-border);
  color: var(--v727-text);
  width: 34px; height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
}
.v727-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  min-height: 36px;
}
.v727-btn:active { transform: scale(0.96); }
.v727-btn-login {
  background: transparent;
  color: var(--v727-muted);
  border: 1px solid var(--v727-accent);
}
.v727-btn-register {
  background: linear-gradient(135deg, var(--v727-accent), var(--v727-primary));
  color: #fff;
  box-shadow: 0 2px 6px rgba(100,149,237,0.35);
}

/* ===== Expandable mobile menu ===== */
.v727-mobile-menu {
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: #111;
  border-bottom: 1px solid var(--v727-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  z-index: 9999;
  max-width: 430px;
  margin: 0 auto;
}
.v727-mobile-menu.v727-menu-open { max-height: 480px; }
.v727-mobile-menu ul { list-style: none; padding: 0.5rem 1rem; }
.v727-mobile-menu li { border-bottom: 1px solid #1f1f1f; }
.v727-mobile-menu li:last-child { border-bottom: none; }
.v727-mobile-menu a {
  display: block;
  padding: 1rem 0.5rem;
  color: var(--v727-text);
  font-size: 1.4rem;
}
.v727-mobile-menu a:active { color: var(--v727-accent); }

/* ===== Main content ===== */
main { padding-top: 60px; padding-bottom: 1rem; }
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}

/* ===== Hero carousel ===== */
.v727-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 1.2rem;
}
.v727-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}
.v727-carousel-slide {
  min-width: 100%;
  position: relative;
}
.v727-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}
.v727-carousel-caption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(0,0,0,0.55);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}
.v727-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
}
.v727-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #555;
  border: none;
  cursor: pointer;
}
.v727-carousel-dot.v727-dot-active { background: var(--v727-accent); }

/* ===== Section headings ===== */
.v727-section {
  padding: 1.4rem 1.2rem;
}
.v727-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--v727-muted);
  border-left: 4px solid var(--v727-accent);
  padding-left: 0.7rem;
}
.v727-h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 2.4rem;
  color: var(--v727-text);
  margin-bottom: 0.8rem;
}
.v727-text-muted { color: #b8b8b8; font-size: 1.3rem; line-height: 2rem; }
.v727-prose p { margin-bottom: 1rem; line-height: 2.1rem; font-size: 1.4rem; color: #dcdcdc; }
.v727-prose strong { color: var(--v727-muted); }

/* ===== Game grid ===== */
.v727-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.4rem 0 0.8rem;
}
.v727-cat-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v727-muted);
}
.v727-cat-link {
  font-size: 1.2rem;
  color: var(--v727-accent);
}
.v727-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.v727-game-card {
  background: var(--v727-card);
  border: 1px solid var(--v727-border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  text-align: center;
}
.v727-game-card:active { transform: scale(0.97); border-color: var(--v727-accent); }
.v727-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.v727-game-name {
  font-size: 1.1rem;
  padding: 0.4rem 0.3rem 0.6rem;
  color: #eaeaea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Feature cards / steps ===== */
.v727-cards {
  display: grid;
  gap: 0.9rem;
}
.v727-card {
  background: var(--v727-card);
  border: 1px solid var(--v727-border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.v727-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--v727-muted);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v727-card-text { font-size: 1.3rem; color: #cfcfcf; line-height: 1.9rem; }

/* ===== Steps list ===== */
.v727-steps { counter-reset: step; padding-left: 0; list-style: none; }
.v727-steps li {
  position: relative;
  padding: 0.6rem 0.6rem 0.6rem 3.2rem;
  margin-bottom: 0.7rem;
  background: var(--v727-card);
  border-radius: 8px;
  border: 1px solid var(--v727-border);
  line-height: 1.9rem;
  font-size: 1.3rem;
  color: #dcdcdc;
}
.v727-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.7rem; top: 50%;
  transform: translateY(-50%);
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  background: var(--v727-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== CTA block ===== */
.v727-cta {
  background: linear-gradient(135deg, #14233a, #1d3358);
  border: 1px solid var(--v727-accent);
  border-radius: 14px;
  padding: 1.4rem;
  text-align: center;
  margin: 1.4rem 1.2rem;
}
.v727-cta h3 { font-size: 1.7rem; color: #fff; margin-bottom: 0.5rem; }
.v727-cta p { font-size: 1.3rem; color: #cfd8e8; margin-bottom: 1rem; }
.v727-cta .v727-btn { padding: 0.9rem 1.8rem; font-size: 1.4rem; }

/* ===== Testimonials ===== */
.v727-testimonials { display: grid; gap: 0.8rem; }
.v727-testimonial {
  background: var(--v727-card);
  border-left: 3px solid var(--v727-gold);
  border-radius: 8px;
  padding: 0.9rem 1rem;
}
.v727-testimonial .v727-name { font-weight: 700; color: var(--v727-muted); font-size: 1.3rem; }
.v727-testimonial .v727-stars { color: var(--v727-gold); font-size: 1.2rem; margin: 0.2rem 0; }
.v727-testimonial p { font-size: 1.3rem; color: #cfcfcf; line-height: 1.9rem; }

/* ===== Payment icons ===== */
.v727-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: 0.8rem 0;
}
.v727-pay-item {
  background: var(--v727-card);
  border: 1px solid var(--v727-border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 1.2rem;
  color: #e0e0e0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== Winners showcase ===== */
.v727-winners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.v727-winner {
  background: var(--v727-card);
  border-radius: 8px;
  padding: 0.7rem;
  border: 1px solid var(--v727-border);
}
.v727-winner .v727-who { font-size: 1.2rem; color: var(--v727-muted); font-weight: 700; }
.v727-winner .v727-amount { font-size: 1.4rem; color: var(--v727-gold); font-weight: 800; margin: 0.2rem 0; }
.v727-winner .v727-game { font-size: 1.1rem; color: #999; }

/* ===== Promo link styles ===== */
.v727-link-promo {
  color: var(--v727-accent);
  font-weight: 700;
  border-bottom: 1px dashed var(--v727-accent);
}
.v727-promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0;
}
.v727-promo-row .v727-btn { flex: 1; min-width: 45%; }

/* ===== Footer ===== */
.v727-footer {
  background: #050505;
  border-top: 1px solid var(--v727-border);
  padding: 1.4rem 1.2rem 2rem;
  margin-top: 1.5rem;
}
.v727-footer-brand { font-size: 1.3rem; color: #a8a8a8; line-height: 2rem; margin-bottom: 1rem; }
.v727-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 0.8rem;
  margin-bottom: 1rem;
}
.v727-footer-links a { font-size: 1.2rem; color: #b0b0b0; padding: 0.3rem 0; }
.v727-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.v727-footer-promo .v727-btn { flex: 1; min-width: 45%; font-size: 1.2rem; padding: 0.6rem 0.5rem; }
.v727-footer-copy {
  font-size: 1.1rem;
  color: #777;
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid #1a1a1a;
  padding-top: 0.8rem;
}

/* ===== Mobile bottom navigation ===== */
.v727-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: linear-gradient(180deg, #0d0d0d, #050505);
  border-top: 1px solid var(--v727-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
}
.v727-bnav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: #8a8a8a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.15s ease, transform 0.15s ease;
}
.v727-bnav-btn .material-icons,
.v727-bnav-btn ion-icon,
.v727-bnav-btn i { font-size: 24px; }
.v727-bnav-btn:active { transform: scale(0.92); color: var(--v727-accent); }
.v727-bnav-btn.v727-bnav-active { color: var(--v727-accent); }
.v727-bnav-btn span { font-size: 1.05rem; }

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  .v727-bottom-nav { display: none; }
  main { padding-bottom: 1rem; }
  body { max-width: 430px; }
}

/* Desktop header adjustments */
@media (min-width: 769px) {
  .v727-header { max-width: 430px; }
}
