/* ============================================================
   gamezone app - style-1736.css
   All custom classes use the v673- prefix
   Palette: #333333 | #228B22 | #F0E68C | #FFFACD | #DAA520
   ============================================================ */

:root {
  --v673-bg: #333333;
  --v673-bg-2: #262626;
  --v673-bg-3: #1c1c1c;
  --v673-primary: #228B22;
  --v673-primary-2: #1f7a1f;
  --v673-accent: #DAA520;
  --v673-accent-2: #F0E68C;
  --v673-cream: #FFFACD;
  --v673-text: #FFFACD;
  --v673-text-soft: #F0E68C;
  --v673-text-muted: #c9c2a3;
  --v673-border: rgba(218, 165, 32, 0.25);
  --v673-radius: 14px;
}

* { box-sizing: border-box; }

html {
  font-size: 62.5%;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--v673-bg);
  color: var(--v673-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

a { color: var(--v673-accent-2); text-decoration: none; }
a:hover { color: var(--v673-accent); }

.v673-wrapper {
  max-width: 430px;
  margin: 0 auto;
  padding: 0;
  background: var(--v673-bg);
  min-height: 100vh;
}

/* ---------- Header ---------- */
.v673-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--v673-bg-3) 0%, var(--v673-bg-2) 100%);
  border-bottom: 2px solid var(--v673-accent);
  padding: 8px 12px;
}

.v673-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.v673-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.v673-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.v673-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v673-cream);
  white-space: nowrap;
}

.v673-logo-text span { color: var(--v673-accent); }

.v673-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.v673-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 36px;
  padding: 0 14px;
  border: none;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.v673-btn:active { transform: scale(0.96); }

.v673-btn-login {
  background: transparent;
  color: var(--v673-cream);
  border: 1.5px solid var(--v673-accent);
}

.v673-btn-login:hover { background: rgba(218, 165, 32, 0.15); }

.v673-btn-register {
  background: linear-gradient(135deg, var(--v673-accent) 0%, #c98e15 100%);
  color: #2a1d03;
  box-shadow: 0 3px 10px rgba(218, 165, 32, 0.35);
}

.v673-btn-register:hover { filter: brightness(1.08); }

.v673-menu-btn {
  background: transparent;
  border: none;
  color: var(--v673-cream);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}

/* ---------- Expandable Mobile Menu ---------- */
.v673-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--v673-bg-2);
  border-top: 1px solid var(--v673-border);
}

.v673-mobile-menu.v673-menu-open {
  max-height: 480px;
}

.v673-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 6px 12px;
}

.v673-mobile-menu li a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px dashed var(--v673-border);
  font-size: 1.35rem;
  color: var(--v673-cream);
}

.v673-mobile-menu li:last-child a { border-bottom: none; }

/* ---------- Main ---------- */
.v673-main {
  padding: 12px 12px 24px;
}

@media (max-width: 768px) {
  .v673-main { padding-bottom: 90px; }
}

/* ---------- Carousel ---------- */
.v673-carousel {
  position: relative;
  border-radius: var(--v673-radius);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.v673-slide {
  position: relative;
  display: none;
  cursor: pointer;
}

.v673-slide-active { display: block; }

.v673-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.v673-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--v673-cream);
  font-size: 1.3rem;
  font-weight: 700;
}

.v673-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
}

.v673-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 250, 205, 0.5);
  cursor: pointer;
}

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

/* ---------- Section / Headings ---------- */
.v673-section {
  margin: 18px 0;
}

.v673-h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--v673-cream);
  margin: 10px 0;
  line-height: 1.4;
}

.v673-h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--v673-accent-2);
  border-left: 4px solid var(--v673-accent);
  padding-left: 8px;
  margin: 18px 0 10px;
}

.v673-h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--v673-cream);
  margin: 12px 0 6px;
}

.v673-p {
  font-size: 1.3rem;
  color: var(--v673-text-muted);
  margin: 6px 0;
  line-height: 1.6;
}

/* ---------- Game grid ---------- */
.v673-cat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 8px;
}

.v673-cat-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--v673-cream);
}

.v673-cat-icon {
  color: var(--v673-accent);
  font-size: 1.8rem;
}

.v673-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 400px) {
  .v673-grid { grid-template-columns: repeat(4, 1fr); }
}

.v673-game {
  background: var(--v673-bg-2);
  border: 1px solid var(--v673-border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.v673-game:hover {
  transform: translateY(-2px);
  border-color: var(--v673-accent);
}

.v673-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.v673-game-name {
  font-size: 1.1rem;
  color: var(--v673-cream);
  padding: 4px 2px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Card / Box ---------- */
.v673-card {
  background: var(--v673-bg-2);
  border: 1px solid var(--v673-border);
  border-radius: var(--v673-radius);
  padding: 14px;
  margin: 10px 0;
}

.v673-card-accent {
  background: linear-gradient(135deg, rgba(34,139,34,0.18), rgba(218,165,32,0.10));
  border: 1px solid var(--v673-accent);
}

/* ---------- CTA ---------- */
.v673-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--v673-primary) 0%, var(--v673-primary-2) 100%);
  color: var(--v673-cream);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 14px;
  border: none;
  border-radius: var(--v673-radius);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(34, 139, 34, 0.45);
  margin: 14px 0;
}

.v673-cta:active { transform: scale(0.98); }

.v673-cta-gold {
  background: linear-gradient(135deg, var(--v673-accent) 0%, #c98e15 100%);
  color: #2a1d03;
  box-shadow: 0 4px 14px rgba(218, 165, 32, 0.45);
}

.v673-text-link {
  color: var(--v673-accent);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- Feature / list ---------- */
.v673-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.v673-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 1.3rem;
  color: var(--v673-text-muted);
  border-bottom: 1px dashed var(--v673-border);
}

.v673-list li:last-child { border-bottom: none; }

.v673-list li::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--v673-accent);
  font-size: 1.1rem;
}

/* ---------- Testimonials ---------- */
.v673-testi {
  background: var(--v673-bg-2);
  border-left: 3px solid var(--v673-accent);
  padding: 10px 12px;
  border-radius: 8px;
  margin: 8px 0;
}

.v673-testi-name {
  font-size: 1.2rem;
  color: var(--v673-accent-2);
  font-weight: 700;
  margin-bottom: 4px;
}

.v673-testi-text {
  font-size: 1.25rem;
  color: var(--v673-text-muted);
}

/* ---------- RTP table ---------- */
.v673-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0;
  font-size: 1.2rem;
}

.v673-table th, .v673-table td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--v673-border);
  text-align: left;
}

.v673-table th {
  color: var(--v673-accent-2);
  background: var(--v673-bg-3);
}

.v673-table td { color: var(--v673-cream); }

/* ---------- Payment chips ---------- */
.v673-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.v673-chip {
  background: var(--v673-bg-3);
  border: 1px solid var(--v673-border);
  color: var(--v673-cream);
  border-radius: 16px;
  padding: 5px 10px;
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.v673-footer {
  background: var(--v673-bg-3);
  border-top: 2px solid var(--v673-accent);
  padding: 16px 12px 100px;
  margin-top: 18px;
}

@media (min-width: 769px) {
  .v673-footer { padding-bottom: 24px; }
}

.v673-footer h3 {
  font-size: 1.4rem;
  color: var(--v673-accent-2);
  margin: 10px 0 6px;
}

.v673-footer p {
  font-size: 1.2rem;
  color: var(--v673-text-muted);
  margin: 4px 0;
}

.v673-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.v673-footer-links a {
  font-size: 1.2rem;
  color: var(--v673-cream);
  background: var(--v673-bg-2);
  border: 1px solid var(--v673-border);
  padding: 5px 10px;
  border-radius: 14px;
}

.v673-footer-copy {
  font-size: 1.1rem;
  color: var(--v673-text-muted);
  text-align: center;
  margin-top: 12px;
  border-top: 1px dashed var(--v673-border);
  padding-top: 8px;
}

/* ---------- Mobile bottom nav ---------- */
.v673-bottomnav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 62px;
  background: linear-gradient(180deg, var(--v673-bg-2), var(--v673-bg-3));
  border-top: 2px solid var(--v673-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.45);
}

.v673-navbtn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--v673-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: color 0.2s ease, transform 0.15s ease;
}

.v673-navbtn .material-icons,
.v673-navbtn .fas,
.v673-navbtn .far,
.v673-navbtn .bi {
  font-size: 22px;
}

.v673-navbtn:hover { color: var(--v673-accent); }

.v673-navbtn:active { transform: scale(0.92); }

.v673-navbtn-active {
  color: var(--v673-accent);
}

.v673-navbtn-active::after {
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--v673-accent);
  margin-top: 2px;
}

@media (min-width: 769px) {
  .v673-bottomnav { display: none; }
}

/* ---------- Utility ---------- */
.v673-center { text-align: center; }
.v673-row { display: flex; gap: 8px; flex-wrap: wrap; }
.v673-hidden { display: none; }
.v673-totop {
  position: fixed;
  right: 12px;
  bottom: 76px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--v673-accent);
  color: #2a1d03;
  border: none;
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
}
