/* =============================================
   FutbotCoin — Custom styles on top of LUGX
   ============================================= */

/* ---- Logo ---- */
.fc-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #f72585, #7209b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.logo .fc-logo-text { font-size: 1.3rem; }

/* ---- Feature icons ---- */
.fc-fi {
  font-size: 1.8rem;
  color: #f5a623;
}

/* ---- Nav badges ---- */
.fc-nav-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fc-badge-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #f72585;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Hero stats ---- */
.fc-hero-stats { margin-top: 2rem; }
.fc-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.fc-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f5a623;
  line-height: 1;
}
.fc-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ---- Feature badges in hero ---- */
.fc-badges-row { display: flex; flex-wrap: wrap; gap: 8px; }
.fc-feature-badge {
  background: rgba(247, 37, 133, 0.15);
  border: 1px solid rgba(247, 37, 133, 0.4);
  color: #f72585;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ---- Sort select ---- */
.fc-sort-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
  padding: 8px 16px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
}
.fc-sort-select:focus { border-color: #f5a623; }
.fc-sort-select option { background: #1a1a2e; color: #fff; }

/* ---- Genre pills ---- */
.fc-genre-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.fc-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}
.fc-pill:hover { border-color: #f5a623; color: #f5a623; }
.fc-pill.active {
  background: linear-gradient(135deg, #f72585, #7209b7);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

/* ---- Search info ---- */
.fc-search-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
}
.fc-clear-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all .2s;
}
.fc-clear-btn:hover { border-color: #f72585; color: #f72585; }

/* ---- Game cards in trending ---- */
.fc-trend-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  aspect-ratio: 16/9;
}
.fc-trend-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(247,37,133,.3); }
.fc-trend-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fc-trend-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
}
.fc-trend-name { font-weight: 700; font-size: 1rem; color: #fff; margin: 0 0 4px; }
.fc-trend-price { color: #f5a623; font-weight: 600; font-size: 0.9rem; }
.fc-trend-genre { font-size: 0.75rem; color: rgba(255,255,255,.5); }
.fc-trend-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, #f72585, #7209b7);
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---- Game catalog cards ---- */
.fc-game-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.fc-game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(247,37,133,.2);
  border-color: rgba(247,37,133,.3);
}
.fc-game-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.fc-game-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fc-game-card:hover .fc-game-img-wrap img { transform: scale(1.05); }
.fc-game-rating {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,.7);
  color: #f5a623;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}
.fc-game-body { padding: 1rem; }
.fc-game-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-game-genre { font-size: 0.75rem; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.fc-game-footer { display: flex; justify-content: space-between; align-items: center; }
.fc-game-price { color: #f5a623; font-weight: 700; font-size: 1.05rem; }
.fc-game-buy-btn {
  background: linear-gradient(135deg, #f72585, #7209b7);
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.fc-game-buy-btn:hover { opacity: 0.85; transform: scale(1.05); }

/* ---- Cart offcanvas ---- */
.fc-offcanvas {
  background: #12082a !important;
  border-left: 1px solid rgba(255,255,255,.08) !important;
}
.fc-cart-items-wrap { overflow-y: auto; }
.fc-cart-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fc-cart-item-img { width: 60px; height: 34px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.fc-cart-item-name { font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.fc-cart-item-price { font-size: 0.8rem; color: #f5a623; }
.fc-cart-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,.3);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 4px;
  flex-shrink: 0;
  align-self: center;
}
.fc-cart-item-remove:hover { color: #f72585; }
.fc-cart-footer { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; }

/* ---- Modals ---- */
.fc-modal-content {
  background: #12082a !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 16px !important;
  color: #fff;
}
.fc-auth-tabs { border-bottom: 1px solid rgba(255,255,255,.1) !important; }
.fc-tab {
  color: rgba(255,255,255,.5) !important;
  border: none !important;
  background: none !important;
  padding: 8px 20px !important;
  border-radius: 0 !important;
}
.fc-tab.active {
  color: #f5a623 !important;
  border-bottom: 2px solid #f5a623 !important;
  background: none !important;
}
.fc-input {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: #fff !important;
  border-radius: 8px !important;
}
.fc-input::placeholder { color: rgba(255,255,255,.3) !important; }
.fc-input:focus {
  background: rgba(255,255,255,.08) !important;
  border-color: #f5a623 !important;
  box-shadow: 0 0 0 2px rgba(245,166,35,.15) !important;
  color: #fff !important;
}

/* ---- Buttons ---- */
.fc-btn-primary {
  background: linear-gradient(135deg, #f72585, #7209b7) !important;
  border: none !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: 25px !important;
  transition: opacity .2s, transform .2s !important;
}
.fc-btn-primary:hover { opacity: 0.85 !important; transform: translateY(-1px) !important; color: #fff !important; }

.fc-btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  color: rgba(255,255,255,.8) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  padding: 10px 24px !important;
  border-radius: 25px !important;
  transition: all .2s !important;
}
.fc-btn-outline:hover { border-color: #f5a623 !important; color: #f5a623 !important; }

/* ---- Price / rating in modal ---- */
.fc-price-accent { color: #f5a623; font-weight: 700; }
.fc-price-big { font-size: 1.6rem; font-weight: 800; color: #f5a623; }
.fc-rating-badge {
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  color: #f5a623;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ---- Keys list in cabinet ---- */
.fc-keys-list { display: flex; flex-direction: column; gap: 8px; }
.fc-key-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.fc-key-game { font-weight: 600; color: #fff; font-size: .9rem; }
.fc-key-code {
  font-family: monospace;
  color: #f5a623;
  font-size: 0.85rem;
  background: rgba(0,0,0,.3);
  padding: 4px 10px;
  border-radius: 6px;
}
.fc-key-copy-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: .75rem;
  cursor: pointer;
  transition: all .2s;
}
.fc-key-copy-btn:hover { border-color: #f5a623; color: #f5a623; }

/* ---- Toast ---- */
.fc-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #1e1040;
  border: 1px solid rgba(247,37,133,.4);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  max-width: 320px;
}
.fc-toast.show { transform: translateY(0); opacity: 1; }
.fc-toast.success { border-color: rgba(0,200,80,.4); }
.fc-toast.error { border-color: rgba(247,37,133,.6); background: #2d0a1a; }

/* ---- Spinner ---- */
.fc-spin {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: #f5a623;
  border-radius: 50%;
  animation: fc-rotate 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes fc-rotate { to { transform: rotate(360deg); } }

/* ---- Footer links ---- */
.fc-fl { color: rgba(255,255,255,.5) !important; text-decoration: none !important; font-size: 0.88rem !important; transition: color .2s !important; display: block; margin-bottom: 6px; }
.fc-fl:hover { color: #f5a623 !important; }
.fc-tg-link {
  color: #229ED9 !important;
  text-decoration: none !important;
  display: inline !important;
  font-size: .88rem;
  transition: color .2s;
}
.fc-tg-link:hover { color: #f5a623 !important; }
.fc-link { color: #f5a623 !important; }

/* ---- Checkout items ---- */
.fc-checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #fff;
  font-size: .9rem;
}
.fc-checkout-item-price { color: #f5a623; font-weight: 600; white-space: nowrap; margin-left: 10px; }

/* ---- Trending games empty pill in grid ---- */
.fc-no-games {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: rgba(255,255,255,.4);
}

/* ---- Responsive LUGX overrides ---- */
@media (max-width: 768px) {
  .fc-logo-text { font-size: 1.1rem; }
  .fc-sort-select { font-size: .78rem; padding: 6px 12px; }
  .fc-game-name { font-size: .85rem; }
}

/* =========================================
   GLOBAL DARK OVERRIDE (replaces LUGX blue)
   ========================================= */

/* Body dark background */
body {
  background-color: #0d0b1a !important;
  color: #e0e0e0;
}

/* ---- Header / Navbar ---- */
.header-area {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(10, 8, 24, 0.96) !important;
  border-bottom: 1px solid rgba(247, 37, 133, 0.18) !important;
  backdrop-filter: blur(12px);
  z-index: 999 !important;
}
.header-area.header-sticky {
  background: rgba(10, 8, 24, 0.98) !important;
}
.main-nav .nav li a {
  color: rgba(255,255,255,.75) !important;
  font-weight: 500;
  transition: color .2s;
}
.main-nav .nav li a:hover,
.main-nav .nav li a.active {
  color: #f72585 !important;
}

/* ---- Hero section ---- */
.main-banner {
  background: linear-gradient(135deg, #0d0b1a 0%, #12082a 50%, #0d0b1a 100%) !important;
  border-bottom: 1px solid rgba(247, 37, 133, 0.12);
  padding: 140px 0 80px !important;
  min-height: unset !important;
  position: relative;
  overflow: hidden;
}
.main-banner::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(114,9,183,.25) 0%, transparent 70%);
  pointer-events: none;
}
.main-banner .caption h6 {
  color: #f72585 !important;
  letter-spacing: 2px;
  font-size: .75rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.main-banner .caption h2 {
  color: #fff !important;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.main-banner .caption h2 em {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, #f72585 0%, #b5179e 50%, #f5a623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.main-banner .caption h2 em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f72585, #f5a623);
  border-radius: 2px;
}
.main-banner .caption p {
  color: rgba(255,255,255,.65) !important;
  font-size: .95rem;
  margin-bottom: 20px;
}

/* ---- Hero search ---- */
.search-input {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(247,37,133,.35) !important;
  border-radius: 40px !important;
  padding: 5px 5px 5px 20px !important;
  max-width: 460px;
  box-shadow: 0 0 24px rgba(247,37,133,.1);
  transition: border-color .3s, box-shadow .3s;
}
.search-input:focus-within {
  border-color: #f72585 !important;
  box-shadow: 0 0 32px rgba(247,37,133,.2) !important;
}
.search-input input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  padding: 0;
}
.search-input input::placeholder { color: rgba(255,255,255,.35) !important; }
.search-input button {
  background: linear-gradient(135deg, #f72585, #7209b7) !important;
  border: none !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 35px !important;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .2s;
}
.search-input button:hover { opacity: .85 !important; }

/* ---- Features section ---- */
.features {
  background: #100e22 !important;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-top: 0 !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.features .item {
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 12px;
  transition: border-color .3s, transform .3s;
}
.features .item:hover {
  border-color: rgba(247,37,133,.3) !important;
  transform: translateY(-4px);
}
.features .item h4 { color: #fff !important; font-size: .95rem !important; text-transform: none !important; }

/* Override LUGX blue circle on feature icons */
.features .item .image {
  background: linear-gradient(135deg, rgba(247,37,133,.15), rgba(114,9,183,.15)) !important;
  border: 1px solid rgba(247,37,133,.25) !important;
  width: 72px !important;
  height: 72px !important;
  line-height: 72px !important;
  border-radius: 16px !important;
  transition: background .3s, border-color .3s !important;
}
.features .item:hover .image {
  background: linear-gradient(135deg, rgba(247,37,133,.3), rgba(114,9,183,.3)) !important;
  border-color: rgba(247,37,133,.5) !important;
}
.fc-fi {
  font-size: 1.6rem !important;
  background: linear-gradient(135deg, #f72585, #7209b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Sections background ---- */
.section,
.trending,
.most-played,
.cta {
  background: #0d0b1a !important;
}
.section.most-played { background: #100e22 !important; }

/* ---- Section headings ---- */
.section-heading h6 {
  color: #f72585 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .72rem;
}
.section-heading h2 { color: #fff !important; font-weight: 800; }
.section-heading h2 em {
  font-style: italic;
  color: #f5a623 !important;
}

/* ---- Main button (see all / CTA links) ---- */
.main-button a {
  background: linear-gradient(135deg, #f72585, #7209b7) !important;
  color: #fff !important;
  padding: 10px 28px !important;
  border-radius: 25px !important;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: 0 !important;
  height: auto !important;
  line-height: 1.4 !important;
  transition: opacity .2s, transform .2s;
  display: inline-flex;
  align-items: center;
}
.main-button a:hover { opacity: .85 !important; transform: translateY(-2px); color: #fff !important; }

/* ---- CTA section ---- */
.cta .shop, .cta .subscribe {
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 16px;
  padding: 32px !important;
}

/* ---- Footer ---- */
footer {
  background: #080617 !important;
  border-top: 1px solid rgba(247,37,133,.15) !important;
  padding: 60px 0 24px !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
  background-image: none !important;
  min-height: unset !important;
}
footer h5, footer h6 { color: #fff !important; }
footer p {
  color: rgba(255,255,255,.45) !important;
  font-size: .88rem;
  line-height: 1.6 !important;
  text-align: left !important;
  margin-bottom: 8px !important;
}
.fc-fl {
  color: rgba(255,255,255,.5) !important;
  text-decoration: none !important;
  font-size: .88rem;
  transition: color .2s;
  display: block;
  margin-bottom: 8px;
}
.fc-fl:hover { color: #f72585 !important; }

/* ---- Modal description text ---- */
#modalDesc,
.fc-modal-content p,
.fc-modal-content .text-muted {
  color: rgba(255,255,255,.82) !important;
}

/* ---- Price & Rating in modal ---- */
.fc-price-big {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f5a623;
}
.fc-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.35);
  color: #f5a623;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 600;
}
.fc-price-accent { color: #f5a623 !important; font-weight: 700; }

/* ---- Toast ---- */
.fc-toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #1a103a;
  border: 1px solid rgba(247,37,133,.4);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: .88rem;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.fc-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fc-toast.success { border-color: rgba(76,175,130,.5); }
.fc-toast.error   { border-color: rgba(247,37,133,.6); }

/* ---- Spinner ---- */
.fc-spin {
  width: 36px; height: 36px;
  border: 3px solid rgba(247,37,133,.2);
  border-top-color: #f72585;
  border-radius: 50%;
  animation: fc-rotate .8s linear infinite;
  display: inline-block;
}
@keyframes fc-rotate { to { transform: rotate(360deg); } }

/* ---- Demo checkout notice ---- */
.fc-demo-notice {
  padding: 8px 12px;
  background: rgba(255,193,7,.07);
  border: 1px solid rgba(255,193,7,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
}

/* ---- Keys list in cabinet ---- */
.fc-key-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.fc-key-item-name { font-size: .88rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.fc-key-value {
  font-family: 'Courier New', monospace;
  font-size: .82rem;
  color: #f72585;
  letter-spacing: .06em;
  word-break: break-all;
}
.fc-key-date { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: 4px; }
