/**
 * No Deposit Bonus - Main Stylesheet
 * File: css/style-f116.css
 * Prefix: v673-
 * Palette: #006400 | #778899 | #3C3C3C | #808080 | #2C3E50
 */

/* CSS Variables */
:root {
  --v673-primary: #006400;
  --v673-secondary: #778899;
  --v673-dark: #2C3E50;
  --v673-darker: #3C3C3C;
  --v673-gray: #808080;
  --v673-light: #f0f2f5;
  --v673-white: #ffffff;
  --v673-gold: #ffd700;
  --v673-accent: #1a8c1a;
  --v673-bg: #1a1a2e;
  --v673-card: #16213e;
  --v673-text: #e8e8e8;
  --v673-radius: 8px;
  --v673-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Reset & Base */
*, *::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, sans-serif;
  background: var(--v673-bg);
  color: var(--v673-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--v673-gold); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.v673-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--v673-darker), var(--v673-dark));
  border-bottom: 2px solid var(--v673-primary);
  max-width: 430px; margin: 0 auto;
  padding: 0 1.2rem; height: 5.4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.v673-logo { display: flex; align-items: center; gap: 0.8rem; }
.v673-logo img { width: 3.2rem; height: 3.2rem; border-radius: 6px; }
.v673-logo-text { color: var(--v673-gold); font-size: 1.5rem; font-weight: 700; white-space: nowrap; }
.v673-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v673-btn-register {
  background: var(--v673-primary); color: var(--v673-white);
  border: none; padding: 0.6rem 1.2rem; border-radius: 5px;
  font-size: 1.2rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.v673-btn-register:hover { background: var(--v673-accent); transform: scale(1.05); }
.v673-btn-login {
  background: transparent; color: var(--v673-gold);
  border: 1px solid var(--v673-gold); padding: 0.6rem 1.2rem;
  border-radius: 5px; font-size: 1.2rem; cursor: pointer;
  transition: all 0.2s;
}
.v673-btn-login:hover { background: var(--v673-gold); color: var(--v673-darker); }
.v673-menu-toggle {
  background: none; border: none; color: var(--v673-white);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu Overlay */
.v673-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9998; display: none;
}
.v673-overlay-active { display: block; }

/* Mobile Slide Menu */
.v673-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: linear-gradient(180deg, var(--v673-darker), var(--v673-bg));
  z-index: 9999; transition: right 0.3s ease; padding-top: 6rem;
  overflow-y: auto;
}
.v673-menu-active { right: 0; }
.v673-mobile-menu .v673-menu-header {
  position: absolute; top: 0; left: 0; right: 0; height: 5.4rem;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.v673-menu-close { background: none; border: none; color: var(--v673-white); font-size: 2rem; cursor: pointer; }
.v673-mobile-menu ul { list-style: none; }
.v673-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.v673-mobile-menu a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.3rem 1.8rem; color: var(--v673-text); font-size: 1.4rem;
  transition: all 0.2s;
}
.v673-mobile-menu a:hover { background: rgba(0,100,0,0.2); color: var(--v673-gold); }
.v673-mobile-menu .material-icons, .v673-mobile-menu .fas, .v673-mobile-menu .bi { font-size: 1.8rem; width: 2.4rem; text-align: center; }

/* Main Content */
.v673-main { padding-top: 5.4rem; }

/* Carousel */
.v673-carousel { position: relative; overflow: hidden; width: 100%; }
.v673-slides-wrapper { position: relative; width: 100%; }
.v673-slide {
  display: none; width: 100%; cursor: pointer; position: relative;
}
.v673-slide-active { display: block; }
.v673-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.v673-carousel-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 5;
}
.v673-dot {
  width: 1rem; height: 1rem; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; border: none;
  transition: all 0.3s;
}
.v673-dot-active { background: var(--v673-gold); transform: scale(1.2); }
.v673-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); color: white; border: none;
  width: 3.2rem; height: 3.2rem; border-radius: 50%; font-size: 1.6rem;
  cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center;
}
.v673-carousel-arrow:hover { background: rgba(0,100,0,0.6); }
.v673-arrow-left { left: 0.5rem; }
.v673-arrow-right { right: 0.5rem; }

/* Sections */
.v673-section { padding: 2rem 1.2rem; }
.v673-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--v673-gold);
  margin-bottom: 1.4rem; padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--v673-primary);
  display: flex; align-items: center; gap: 0.8rem;
}
.v673-section-title .fas, .v673-section-title .material-icons { font-size: 2rem; }

/* Game Grid */
.v673-game-category-title {
  font-size: 1.5rem; font-weight: 600; color: var(--v673-white);
  margin: 1.5rem 0 1rem; padding-left: 0.5rem;
  border-left: 3px solid var(--v673-gold);
}
.v673-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.v673-game-card {
  display: flex; flex-direction: column; align-items: center;
  background: var(--v673-card); border-radius: var(--v673-radius);
  padding: 0.6rem; cursor: pointer; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.05);
}
.v673-game-card:hover {
  transform: translateY(-2px); border-color: var(--v673-gold);
  box-shadow: 0 4px 16px rgba(0,100,0,0.3);
}
.v673-game-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 6px; margin-bottom: 0.4rem;
}
.v673-game-card span {
  font-size: 1rem; color: var(--v673-text); text-align: center;
  line-height: 1.2rem; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; width: 100%;
}

/* Content Blocks */
.v673-content-block {
  background: var(--v673-card); border-radius: var(--v673-radius);
  padding: 1.6rem; margin-bottom: 1.4rem; border: 1px solid rgba(255,255,255,0.05);
}
.v673-content-block h2 {
  font-size: 1.6rem; color: var(--v673-gold); margin-bottom: 1rem;
}
.v673-content-block h3 {
  font-size: 1.4rem; color: var(--v673-accent); margin: 1rem 0 0.6rem;
}
.v673-content-block p {
  font-size: 1.3rem; color: var(--v673-text); line-height: 1.8rem; margin-bottom: 0.8rem;
}
.v673-content-block ul, .v673-content-block ol {
  padding-left: 2rem; margin-bottom: 1rem;
}
.v673-content-block li {
  font-size: 1.3rem; color: var(--v673-text); line-height: 1.8rem; margin-bottom: 0.4rem;
}

/* Promo Links */
.v673-promo-link {
  color: var(--v673-gold); font-weight: 600; cursor: pointer;
  border-bottom: 1px dashed var(--v673-gold);
  transition: all 0.2s;
}
.v673-promo-link:hover { color: var(--v673-white); border-bottom-style: solid; }

/* CTA Buttons */
.v673-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--v673-primary), var(--v673-accent));
  color: var(--v673-white); font-size: 1.4rem; font-weight: 600;
  padding: 1.2rem 2.4rem; border-radius: 6px; cursor: pointer;
  border: none; width: 100%; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,100,0,0.4);
}
.v673-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,100,0,0.5); }
.v673-cta-gold {
  background: linear-gradient(135deg, #d4a017, var(--v673-gold));
  color: var(--v673-darker);
}

/* Footer */
.v673-footer {
  background: linear-gradient(180deg, var(--v673-darker), #111);
  padding: 2rem 1.2rem 8rem; border-top: 2px solid var(--v673-primary);
}
.v673-footer-brand { margin-bottom: 1.6rem; }
.v673-footer-brand p { font-size: 1.2rem; color: var(--v673-gray); line-height: 1.6rem; }
.v673-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.v673-footer-link {
  background: rgba(255,255,255,0.06); color: var(--v673-text);
  padding: 0.5rem 1rem; border-radius: 4px; font-size: 1.1rem;
  transition: all 0.2s; cursor: pointer;
}
.v673-footer-link:hover { background: var(--v673-primary); color: var(--v673-white); }
.v673-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.v673-footer-promo-btn {
  background: var(--v673-primary); color: var(--v673-white);
  padding: 0.7rem 1.4rem; border-radius: 5px; font-size: 1.2rem;
  font-weight: 600; cursor: pointer; border: none; transition: all 0.2s;
}
.v673-footer-promo-btn:hover { background: var(--v673-accent); }
.v673-copyright {
  text-align: center; font-size: 1.1rem; color: var(--v673-gray);
  padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.08);
}

/* Bottom Navigation */
.v673-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, var(--v673-dark), #0d1520);
  border-top: 1px solid var(--v673-primary);
  max-width: 430px; margin: 0 auto; height: 6rem;
  display: flex; justify-content: space-around; align-items: center;
  padding: 0 0.4rem;
}
.v673-bnav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 6rem; min-height: 5.2rem;
  background: none; border: none; color: var(--v673-gray);
  cursor: pointer; transition: all 0.2s; border-radius: 8px;
  padding: 0.4rem 0.2rem;
}
.v673-bnav-btn:hover { color: var(--v673-gold); background: rgba(0,100,0,0.15); }
.v673-bnav-btn .fas, .v673-bnav-btn .material-icons,
.v673-bnav-btn ion-icon, .v673-bnav-btn .bi { font-size: 2.4rem; }
.v673-bnav-btn span { font-size: 1rem; margin-top: 0.2rem; }
.v673-bnav-active { color: var(--v673-gold) !important; }
.v673-bnav-active .fas, .v673-bnav-active .material-icons,
.v673-bnav-active ion-icon, .v673-bnav-active .bi {
  transform: scale(1.1);
}

/* FAQ Accordion */
.v673-faq-item { margin-bottom: 1rem; }
.v673-faq-q {
  background: var(--v673-card); color: var(--v673-gold);
  padding: 1.2rem; border-radius: var(--v673-radius);
  font-size: 1.3rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.v673-faq-a {
  background: rgba(22,33,62,0.6); padding: 1.2rem; border-radius: 0 0 var(--v673-radius) var(--v673-radius);
  font-size: 1.2rem; color: var(--v673-text); line-height: 1.7rem; display: none;
}
.v673-faq-open .v673-faq-a { display: block; }

/* Testimonial Cards */
.v673-testimonial {
  background: var(--v673-card); border-radius: var(--v673-radius);
  padding: 1.4rem; margin-bottom: 1rem; border-left: 3px solid var(--v673-gold);
}
.v673-testimonial-name { font-size: 1.3rem; color: var(--v673-gold); font-weight: 600; }
.v673-testimonial-text { font-size: 1.2rem; color: var(--v673-text); margin-top: 0.6rem; line-height: 1.7rem; }
.v673-testimonial-stars { color: var(--v673-gold); margin-top: 0.4rem; }

/* Winner Badge */
.v673-winner {
  display: flex; align-items: center; gap: 1rem;
  background: var(--v673-card); padding: 1rem; border-radius: var(--v673-radius);
  margin-bottom: 0.8rem; border: 1px solid rgba(255,215,0,0.1);
}
.v673-winner-avatar {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--v673-primary); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; color: var(--v673-gold);
}
.v673-winner-info { flex: 1; }
.v673-winner-name { font-size: 1.2rem; color: var(--v673-white); font-weight: 600; }
.v673-winner-amount { font-size: 1.3rem; color: var(--v673-gold); font-weight: 700; }
.v673-winner-game { font-size: 1rem; color: var(--v673-gray); }

/* Payment Methods */
.v673-payments { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.v673-pay-item {
  background: var(--v673-card); padding: 0.8rem 1.4rem; border-radius: 6px;
  font-size: 1.2rem; color: var(--v673-text); border: 1px solid rgba(255,255,255,0.06);
}

/* Mobile App CTA */
.v673-app-cta {
  background: linear-gradient(135deg, var(--v673-primary), var(--v673-dark));
  border-radius: var(--v673-radius); padding: 2rem; text-align: center;
}
.v673-app-cta h3 { font-size: 1.6rem; color: var(--v673-gold); margin-bottom: 0.8rem; }
.v673-app-cta p { font-size: 1.2rem; color: var(--v673-text); margin-bottom: 1.2rem; }

/* Responsive - Desktop */
@media (min-width: 769px) {
  .v673-bottom-nav { display: none; }
  .v673-footer { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  .v673-main { padding-bottom: 7rem; }
}
