/* felbet.css - Core Stylesheet for felbet.cfd */
/* All classes prefixed with v885- to avoid conflicts */
/* Color palette: #2C2C2C | #CD853F | #E0F2F1 | #D2B48C */

:root {
  --v885-primary: #CD853F;
  --v885-bg: #2C2C2C;
  --v885-text: #E0F2F1;
  --v885-secondary: #D2B48C;
  --v885-dark: #1a1a1a;
  --v885-accent: #e6a04e;
  --v885-card-bg: #3a3a3a;
  --v885-border: #4a4a4a;
  --v885-success: #4CAF50;
  --v885-radius: 8px;
  --v885-shadow: 0 2px 8px 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(--v885-bg);
  color: var(--v885-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--v885-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.v885-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v885-wrapper { padding: 1.2rem 0; }

/* Header */
.v885-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--v885-dark) 0%, #333 100%);
  border-bottom: 2px solid var(--v885-primary);
  max-width: 430px; margin: 0 auto;
}
.v885-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; max-width: 430px; margin: 0 auto;
}
.v885-logo { display: flex; align-items: center; gap: 0.6rem; }
.v885-logo img { width: 28px; height: 28px; border-radius: 4px; }
.v885-logo-text { color: var(--v885-primary); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.5px; }
.v885-header-actions { display: flex; gap: 0.6rem; align-items: center; }
.v885-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.2rem; border-radius: 6px; font-size: 1.2rem;
  font-weight: 600; cursor: pointer; border: none; transition: all 0.2s;
  min-height: 36px; text-transform: uppercase;
}
.v885-btn-register {
  background: var(--v885-primary); color: var(--v885-dark);
}
.v885-btn-register:hover { background: var(--v885-accent); transform: scale(1.05); }
.v885-btn-login {
  background: transparent; color: var(--v885-primary);
  border: 1.5px solid var(--v885-primary);
}
.v885-btn-login:hover { background: rgba(205,133,63,0.15); }
.v885-menu-toggle {
  background: none; border: none; color: var(--v885-text);
  font-size: 2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.v885-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: var(--v885-dark); z-index: 9999; transition: right 0.3s ease;
  padding: 6rem 0 2rem; overflow-y: auto;
}
.v885-mobile-menu.v885-menu-active { right: 0; }
.v885-menu-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 9998;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.v885-menu-overlay.v885-overlay-active { opacity: 1; pointer-events: auto; }
.v885-menu-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--v885-text);
  font-size: 2.2rem; cursor: pointer;
}
.v885-menu-list { list-style: none; padding: 0; }
.v885-menu-list li { border-bottom: 1px solid var(--v885-border); }
.v885-menu-list a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 2rem; color: var(--v885-text); font-size: 1.4rem;
  transition: all 0.2s;
}
.v885-menu-list a:hover { background: rgba(205,133,63,0.15); color: var(--v885-primary); }
.v885-menu-list .material-icons, .v885-menu-list .fas, .v885-menu-list .bi { font-size: 1.8rem; color: var(--v885-primary); }

/* Carousel */
.v885-carousel { position: relative; overflow: hidden; margin-top: 52px; }
.v885-slide {
  display: none; width: 100%; cursor: pointer;
}
.v885-slide.v885-slide-active { display: block; }
.v885-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.v885-carousel-controls {
  position: absolute; bottom: 1rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.6rem;
}
.v885-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: all 0.2s;
}
.v885-dot.v885-dot-active { background: var(--v885-primary); transform: scale(1.3); }

/* Section titles */
.v885-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--v885-primary);
  padding: 1.5rem 0 1rem; border-bottom: 2px solid var(--v885-primary);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.v885-section-title .fas, .v885-section-title .material-icons { font-size: 2rem; }

/* Game grid */
.v885-game-section { padding: 1rem 0; }
.v885-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem; padding: 0.5rem 0;
}
.v885-game-card {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: transform 0.2s;
  text-align: center;
}
.v885-game-card:hover { transform: translateY(-2px); }
.v885-game-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--v885-radius); border: 2px solid var(--v885-border);
  transition: border-color 0.2s;
}
.v885-game-card:hover img { border-color: var(--v885-primary); }
.v885-game-name {
  font-size: 1rem; color: var(--v885-secondary); margin-top: 0.3rem;
  line-height: 1.2rem; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; max-width: 100%;
}

/* Content cards */
.v885-card {
  background: var(--v885-card-bg); border-radius: var(--v885-radius);
  padding: 1.5rem; margin-bottom: 1rem; border: 1px solid var(--v885-border);
}
.v885-card h2 { color: var(--v885-primary); font-size: 1.6rem; margin-bottom: 0.8rem; }
.v885-card h3 { color: var(--v885-secondary); font-size: 1.4rem; margin-bottom: 0.6rem; }
.v885-card p { color: var(--v885-text); line-height: 1.8rem; margin-bottom: 0.8rem; font-size: 1.3rem; }

/* Promo link buttons */
.v885-promo-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; background: linear-gradient(135deg, var(--v885-primary), var(--v885-accent));
  color: var(--v885-dark); border-radius: 6px; font-size: 1.4rem;
  font-weight: 700; cursor: pointer; border: none; transition: all 0.2s;
  width: 100%; max-width: 280px; margin: 0.5rem auto; text-align: center;
}
.v885-promo-btn:hover { transform: scale(1.03); box-shadow: 0 4px 12px rgba(205,133,63,0.4); }
.v885-promo-link {
  color: var(--v885-primary); font-weight: 600;
  text-decoration: underline; cursor: pointer;
}
.v885-promo-link:hover { color: var(--v885-accent); }

/* Footer */
.v885-footer {
  background: var(--v885-dark); padding: 2rem 1.2rem 8rem;
  border-top: 2px solid var(--v885-primary);
}
.v885-footer-brand { color: var(--v885-secondary); font-size: 1.2rem; line-height: 1.8rem; margin-bottom: 1.5rem; }
.v885-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; }
.v885-footer-links a {
  padding: 0.5rem 1rem; background: var(--v885-card-bg);
  border-radius: 4px; font-size: 1.1rem; color: var(--v885-text);
  border: 1px solid var(--v885-border); transition: all 0.2s;
}
.v885-footer-links a:hover { border-color: var(--v885-primary); color: var(--v885-primary); }
.v885-footer-copy { color: #888; font-size: 1.1rem; text-align: center; padding-top: 1rem; border-top: 1px solid var(--v885-border); }

/* Bottom mobile nav */
.v885-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #333 0%, var(--v885-dark) 100%);
  border-top: 2px solid var(--v885-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; max-width: 430px; margin: 0 auto;
  padding: 0 0.3rem;
}
.v885-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: none; border: none; color: var(--v885-secondary);
  font-size: 1rem; cursor: pointer; min-width: 60px; min-height: 56px;
  transition: all 0.2s; gap: 0.2rem;
}
.v885-bottom-nav-btn .fas,
.v885-bottom-nav-btn .material-icons,
.v885-bottom-nav-btn ion-icon,
.v885-bottom-nav-btn .bi {
  font-size: 2.2rem; transition: all 0.2s;
}
.v885-bottom-nav-btn span { font-size: 1rem; }
.v885-bottom-nav-btn:hover,
.v885-bottom-nav-btn.v885-nav-active {
  color: var(--v885-primary);
}
.v885-bottom-nav-btn:hover .fas,
.v885-bottom-nav-btn:hover .material-icons,
.v885-bottom-nav-btn:hover ion-icon,
.v885-bottom-nav-btn:hover .bi,
.v885-bottom-nav-btn.v885-nav-active .fas,
.v885-bottom-nav-btn.v885-nav-active .material-icons,
.v885-bottom-nav-btn.v885-nav-active ion-icon,
.v885-bottom-nav-btn.v885-nav-active .bi {
  transform: scale(1.15);
}

/* FAQ / Help styles */
.v885-faq-item { margin-bottom: 0.8rem; }
.v885-faq-q {
  font-weight: 600; color: var(--v885-primary); font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.v885-faq-a { color: var(--v885-text); font-size: 1.2rem; line-height: 1.7rem; padding-left: 1rem; }

/* Feature list */
.v885-feature-list { list-style: none; padding: 0; }
.v885-feature-list li {
  padding: 0.8rem 0; border-bottom: 1px solid var(--v885-border);
  display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1.3rem;
}
.v885-feature-list li:last-child { border-bottom: none; }
.v885-feature-list .fas { color: var(--v885-primary); margin-top: 0.2rem; }

/* Winner showcase */
.v885-winner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.v885-winner-item {
  background: var(--v885-card-bg); border-radius: 6px; padding: 0.8rem;
  text-align: center; border: 1px solid var(--v885-border);
}
.v885-winner-name { color: var(--v885-primary); font-weight: 600; font-size: 1.2rem; }
.v885-winner-amount { color: var(--v885-success); font-weight: 700; font-size: 1.4rem; }
.v885-winner-game { color: var(--v885-secondary); font-size: 1rem; }

/* Testimonials */
.v885-testimonial {
  background: var(--v885-card-bg); border-radius: var(--v885-radius);
  padding: 1.2rem; margin-bottom: 0.8rem; border-left: 3px solid var(--v885-primary);
}
.v885-testimonial-text { font-style: italic; color: var(--v885-text); font-size: 1.2rem; line-height: 1.7rem; }
.v885-testimonial-author { color: var(--v885-secondary); font-size: 1.1rem; margin-top: 0.5rem; }

/* Responsive */
@media (min-width: 769px) {
  .v885-bottom-nav { display: none; }
  body { max-width: 430px; }
  .v885-footer { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  .v885-main-content { padding-bottom: 75px; }
}
