@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #101010;
  --bg-card: #141414;
  --accent: #00ff87;
  --accent-2: #ff3c6e;
  --accent-3: #7c3aed;
  --text-primary: #f0f0f8;
  --text-secondary: #888899;
  --text-muted: #505060;
  --border: rgba(0, 255, 135, 0.15);
  --glow: 0 0 40px rgba(0, 255, 135, 0.2);
  --mono: 'Space Mono','Cairo', monospace;
  --sans: 'Inter','Cairo', sans-serif;
  --cairo: "Cairo", sans-serif;
}


label {
  font-family: var(--cairo) !important;
  font-size: 0.85rem !important;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--sans);
  width: 100%;
  display: flex;
  flex-direction: column;
}
input.form-control {
  background: var(--bg-primary);
  font-family: var(--cairo) !important;
}
span[role="button"][disabled] {
  cursor: not-allowed;
}

input.form-control[disabled] {
  background: var(--bg-primary);
}

input.form-control:focus {
  border: 1px solid var(--accent) !important;
  box-shadow: none !important;
  background: var(--bg-primary);
}
.text-accent {
  color: var(--accent) !important;
}

.strong {
  font-weight: bolder !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mono);
  text-transform: uppercase;
}
a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    --bs-link-color-rgb: var(--accent)
}
.cairo {
  font-family: var(--cairo);
  font-optical-sizing: auto;
  font-style: normal;
  text-transform: none;
  font-variation-settings:
    "slnt" 0;
}
.font-mono {
  font-family: var(--mono);
  text-transform: uppercase;
}
.uppercase {
  text-transform: uppercase;
}
.not-uppercase {
  text-transform: none;
}

/* Noise Texture Overlay */
/* .noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
} */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
}

/* Page Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
}

.loader-logo {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

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

.progress-container {
  width: 200px;
  height: 2px;
  background: var(--bg-secondary);
  margin-top: 20px;
  position: relative;
}

.progress-bar-inner {
  height: 100%;
  background: var(--accent);
  width: 0%;
  box-shadow: var(--glow);
}

/* Navbar */
.navbar {
  background: transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.logo-brand img {
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.navbar-brand {
  font-family: var(--mono);
  font-weight: 700;
  color: #fff;
}

.navbar-brand span {
  color: var(--accent);
}

.nav-link {
  font-family: var(--mono);
  font-size: 0.9rem;
  margin: 0 10px;
  color: var(--text-primary);
}

.nav-link:hover {
  color: var(--accent);
}

.cart-btn {
  position: relative;
  color: var(--text-primary);
  background: transparent;
  border: none;
  font-size: 1.2rem;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--accent);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  padding: 2px 6px;
  font-family: var(--mono);
}

.btn-neon {
  background: var(--accent);
  color: #000;
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  transition: all 0.3s;
  box-shadow: var(--glow);
}

.btn-neon:hover {
  background: transparent;
  color: var(--accent);
}

.btn-outline-neon {
  background: transparent;
  color: var(--text-primary);
  font-family: var(--mono);
  font-weight: 700;
  border: 1px solid var(--text-muted);
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}

.btn-outline-neon:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
/* Offcanvas Navbar & Hover Dropdown Specifics */
.offcanvas {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary);
}

.offcanvas-header {
  border-bottom: 1px solid var(--border);
}

@media (min-width: 992px) {
  .hover-dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .hover-dropdown.force-show>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-menu-dark {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
}

.dropdown-menu-dark .dropdown-item {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text-primary);
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
  background-color: var(--accent);
  color: #000;
}


/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.grid-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(500px) rotateX(60deg) translateY(0);
  animation: gridScroll 10s linear infinite;
  opacity: 0.3;
  z-index: -1;
}

@keyframes gridScroll {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }

  100% {
    transform: perspective(500px) rotateX(60deg) translateY(40px);
  }
}

.glow-blob-1,
.glow-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.15;
}

.glow-blob-1 {
  background: var(--accent);
  top: 10%;
  left: -10%;
}

.glow-blob-2 {
  background: var(--accent-2);
  bottom: 10%;
  right: -10%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.75rem;
  border: 1px solid var(--text-muted);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--glow);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.mac-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.mac-dots div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red-dot {
  background: #ff5f56;
}

.yellow-dot {
  background: #ffbd2e;
}

.green-dot {
  background: #27c93f;
}

.hero-product-mock {
  text-align: center;
  padding: 2rem 0;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px dashed var(--text-muted);
}

.hero-product-mock .emoji {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.trust-row {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.trust-row i {
  color: var(--accent);
  margin-right: 5px;
}

/* Stats Bar */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stat-item h3 {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 2rem;
  margin: 0;
}

.stat-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Global Section Title */
.section-tag {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Shop Section */
.filter-btn {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-primary);
  font-family: var(--mono);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid transparent;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 8px;
}

.product-card:hover {
  border-color: var(--border);
  box-shadow: var(--glow);
}

.product-thumb {
  background: linear-gradient(45deg, var(--bg-secondary), var(--bg-primary));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
    .product-thumb { 
      height: 150px;
    }
}
.product-thumb .emoji {
  font-size: 8rem;
  transition: transform 0.3s;
}

.product-card:hover .product-thumb .emoji {
  transform: scale(1.1);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-thumb img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: #000;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  z-index: 2;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.icon-btn {
  background: var(--text-primary);
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.icon-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .product-title {
      font-size: .75rem;
    }
}

.product-price {
  font-family: var(--cairo);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-left: 10px;
}

.stars {
  color: #ffd700;
  font-size: 0.8rem;
  margin: 10px 0;
}

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

.announcement-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    left: 200%;
  }
}

/* Bundles Section */
#bundles {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.bundle-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--text-muted);
  height: 100%;
  position: relative;
}

.bundle-featured {
  border-color: var(--accent);
  box-shadow: var(--glow);
  transform: translateY(-8px);
}

.bundle-best {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

.bundle-price {
  font-family: var(--mono);
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--text-primary);
}

.bundle-featured .bundle-price {
  color: var(--accent);
}

.bundle-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.bundle-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--text-muted);
  color: var(--text-secondary);
}

.bundle-list li i {
  color: var(--accent);
  margin-right: 10px;
}

/* About Streamer Section */
.stream-mockup {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.stream-video {
  height: 250px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.stream-stats {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  background: var(--bg-card);
  font-family: var(--mono);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--text-muted);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
}

.social-row a {
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-row a:hover {
  color: var(--accent);
}

.stat-chip {
  display: inline-block;
  background: var(--bg-secondary);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 0.8rem;
  border: 1px solid var(--text-muted);
  margin-right: 10px;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  border-left: 2px solid var(--accent);
  height: 100%;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--text-muted);
  opacity: 0.3;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  color: #fff;
  margin-right: 15px;
}

/* Social Cards Section */
.social-cards-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.social-cards-wrapper {
  /* No bottom padding needed on wrapper anymore */
}

.socialSwiper {
  width: 100%;
  padding-top: 20px !important;
  padding-bottom: 40px !important;
  margin-top: -20px;
  /* Offset the top padding to keep alignment */
}

.socialSwiper .swiper-slide {
  width: auto;
}

.social-card {
  flex: 0 0 auto;
  width: 175px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.social-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  background: #18181b;
}

.social-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  margin-bottom: 0.2rem;
}

.social-card:hover .icon-wrapper,
.social-card.active-card .icon-wrapper {
  color: var(--text-primary);
}

.social-card.active-card {
  border-color: rgba(0, 255, 135, 0.3);
  background: linear-gradient(180deg, rgba(0, 255, 135, 0.03) 0%, rgba(0, 0, 0, 0) 100%), var(--bg-card);
}

.social-card .platform-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0;
  text-transform: none;
}

.social-card .followers-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.social-card .followers-count span {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-top: 2px;
}

.social-card .btn-follow {
  margin-top: 0.5rem;
  width: 100%;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.45rem;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.social-card:hover .btn-follow {
  background: rgba(255, 255, 255, 0.08);
  /* slightly visible dark border */
  border-color: rgba(255, 255, 255, 0.3);
}

/* Newsletter */
.newsletter-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(255, 60, 110, 0.1));
  border-top: 1px solid var(--text-muted);
  border-bottom: 1px solid var(--text-muted);
}

.newsletter-form .form-control {
  background: var(--bg-primary);
  border: 1px solid var(--text-muted);
  color: #fff;
  font-family: var(--mono);
  border-radius: 0;
  padding: 0.8rem 1rem;
}

.newsletter-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: none;
}

/* Contact */
#contact {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--bg-card);
  border: 1px solid var(--text-muted);
  color: #fff;
  border-radius: 0;
  margin-bottom: 1rem;
  padding: 0.8rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: none;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 2px solid var(--accent-3);
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--accent-3);
}

/* Footer */
footer {
  padding: 4rem 0 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

footer h5 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-social a {
  color: var(--text-primary);
  margin-right: 15px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--accent);
}

.copyright-bar {
  border-top: 1px solid var(--text-muted);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--accent);
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
  box-shadow: var(--glow);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .stats-bar .stat-item {
    padding: 15px 0;
  }
}

/* FAQ Accordion */
.custom-accordion .accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 1rem !important;
  background: var(--bg-card) !important;
}

.custom-accordion .accordion-button {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--accent) !important;
  background-color: rgba(0, 255, 135, 0.05) !important;
  box-shadow: inset 0 -1px 0 var(--border);
}

.custom-accordion .accordion-button::after {
  filter: invert(1) grayscale(100%) brightness(200%);
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(60%) sepia(100%) saturate(1000%) hue-rotate(90deg) brightness(120%);
}

.custom-accordion .accordion-body {
  padding: 1.5rem;
  line-height: 1.6;
  background: var(--bg-primary);
}

/* FAQ Accordion Redesign */
.custom-accordion {
  /* border: 1px solid var(--border); */
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: var(--glow); */
  /* background: var(--bg-card); */
}

.custom-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
}

.custom-accordion .accordion-item:last-child {
  border-bottom: none;
}

.custom-accordion .accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-family: var(--mono);
  font-weight: 700;
  padding: 1.5rem;
  box-shadow: none !important;
  border: none !important;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}

/* Custom SVG for collapsed (greyish-white) */
.custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f0f0f8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

/* Custom SVG for expanded (Accent Color) */
.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff87'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: transparent;
}

/* Navbar Link Styles */
.nav-btn-styled {
  background-color: transparent !important;
  border-radius: 8px;
  padding: 8px 16px !important;
  color: #e4e4e7 !important;
  transition: background-color 0.2s, color 0.2s;
  font-family: var(--sans);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-btn-styled:hover,
.nav-btn-styled[aria-expanded="true"] {
  background-color: #27272a !important;
  /* light up on hover */
  color: #fff !important;
}

/* Specific class for the BETA badge */
.beta-badge {
  background-color: #27272a;
  border: 1px solid #3f3f46;
  color: #a1a1aa;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 2px;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: 0.5px;
}

.store-dropdown-menu {
  background-color: #18181b !important;
  border: 1px solid #27272a !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  min-width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  margin-top: 10px !important;
}

/* Invisible bridge to prevent hover loss when moving mouse from nav item to dropdown */
.store-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.store-dropdown-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px;
  padding: 12px 20px !important;
  color: #f4f4f5 !important;
  transition: all 0.2s;
  background-color: transparent !important;
  border-radius: 6px;
  margin: 0 8px;
  width: calc(100% - 16px) !important;
}

.store-dropdown-item:hover,
.store-dropdown-item:focus {
  background-color: #27272a !important;
  color: #fff !important;
}

.store-item-icon {
  font-size: 1.25rem;
  color: #f4f4f5;
  margin-top: 2px;
  width: 24px;
  text-align: center;
}

.store-item-content {
  display: flex;
  flex-direction: column;
}

.store-item-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  margin-bottom: 2px;
}

.store-item-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: #a1a1aa;
}

/* FAQ Hover Adjustments */
.custom-accordion .accordion-button:hover {
  color: var(--accent);
}

/* User Account Sidebar specific styles */
.custom-account-nav .nav-link {
  color: var(--text-secondary);
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 500;
  transition: all 0.2s;
}

.custom-account-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.custom-account-nav .nav-link.active {
  background-color: rgba(0, 255, 135, 0.1) !important;
  color: var(--accent) !important;
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

/* User Profile Navbar Dropdown */
.user-avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #3f3f46;
  overflow: hidden;
  transition: border-color 0.2s;
  background-color: #18181b;
}

.user-profile-dropdown:hover .user-avatar-circle,
.user-profile-dropdown .nav-link[aria-expanded="true"] .user-avatar-circle {
  border-color: var(--accent);
}

.user-avatar-circle img,
.user-avatar-circle-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-avatar-circle-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #27272a;
  background-color: #18181b;
}

.custom-user-menu {
  min-width: 250px !important;
}

.logout-item:hover {
  background-color: rgba(220, 53, 69, 0.1) !important;
  color: #ff4d4d !important;
}

.link-hover {
  transition: opacity 0.2s;
}

.link-hover:hover {
  opacity: 0.7;
}

/* Mobile Offcanvas User Widget */
.custom-mobile-user-widget {
  background-color: var(--bg-card);
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 1rem;
}

.border-accent {
  border-color: var(--accent) !important;
}

.mobile-stat-card {
  background-color: #18181b;
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #27272a;
  height: 100%;
}

.stat-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  color: #a1a1aa;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-value {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}

.kick-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  background: currentColor;
  mask: url('../img/icons/kick-icon.svg') no-repeat center;
  -webkit-mask: url('../img/icons/kick-icon.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  vertical-align: -0.125em;
}
.kick-coin {
  width: 1em;
  height: 1em;
  display: inline-block;
  background: currentColor;
  mask: url('../img/icons/kick-coin.svg') no-repeat center;
  -webkit-mask: url('../img/icons/kick-coin.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  vertical-align: -0.125em;
}

.duelbits-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  background: currentColor;
  mask: url('../img/icons/duelbits.svg') no-repeat center;
  -webkit-mask: url('../img/icons/duelbits.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  vertical-align: -0.125em;
}

.digit-container {
  display: inline-flex;
  align-items: center;
  /* gap: 1px;
  font-size: 2rem; */
  font-weight: 600;
}
.digit-slot {
  position: relative;
  overflow: hidden;
  height: 1.2em;
  display: inline-block;
  min-width: 0.65em;
}
.digit-slot:first-child:nth-last-child(4) {
  margin-right: 3px;
}
.digit-current, .digit-next {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  text-align: center;
  line-height: 1.2em;
}
.digit-current { transform: translateY(0); opacity: 1; }
.digit-next    { transform: translateY(100%); opacity: 0; }

.modal-content { 
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
}
.modal-header {
  border-bottom: 1px solid var(--border);
}
.modal-footer {  
  border-top: 1px solid var(--border);
}
.user-dashboard-avatar { 
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #18181b;
  overflow: hidden;
}
label[req]::after {
    content: " *";
    color: red;
    font-weight: bold;
}
.div-input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background: var(--bg-primary) !important;
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s
}

.upload-area {
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    border-radius: 8px;
    padding: 20px;
    color: var(--text-secondary);
    background: var(--bg-primary) !important;
    font-family: var(--mono);
    cursor: pointer;
}
.preview-img { 
  border: 2px dashed var(--border);
  border-radius: 8px; 
  padding: 1rem;
}

.form-group .input-groupicon {
    position: relative;
}

.form-group .input-groupicon .addonset-start {
    position: absolute;
    left: 12px;
    top: 50%;
    line-height: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%)
}
.form-group .input-groupicon .addonset {
    position: absolute;
    right: 12px;
    top: 50%;
    line-height: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%)
}

.cursor {
  cursor: pointer !important;
}

.accent-tooltip {
  --bs-tooltip-bg: var(--accent) !important;
  --bs-tooltip-color: #000 !important;
}

.countdown {
  display: flex;
  gap: 10px;
}

.time-box {
  background: #111;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  width: 60px;
  position: relative;
  overflow: hidden;
}

.num {
  font-size: 22px;
  display: block;
  position: relative;
}
.flip-out {
  animation: flipOut 0.4s forwards;
}

.flip-in {
  animation: flipIn 0.4s forwards;
}

@keyframes flipOut {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

@keyframes flipIn {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.is_live .status-live-badge {
  background: var(--accent);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border: 2px solid var(--bg-secondary);
  font-family: var(--mono);
  font-weight: 700;
}
.offline .status-live-badge {
  background: var(--bs-secondary);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border: 2px solid var(--bg-secondary);
  font-family: var(--mono);
  font-weight: 700;
}
.offline .streamer-avatar {
  object-fit: cover;
  border-color: var(--bs-secondary) !important;
  padding: 2px;
}
.is_live .streamer-avatar {
  object-fit: cover;
  border-color: var(--accent) !important;
  padding: 2px;
}
.is_live .viewer-count-container { 
  color: var(--accent);
}
.offline .viewer-count-container { 
  display: none;
}
.stream-title {
  font-weight: 600;
  color: #fff;
}

.stream-category {
  color: #aaa;
  font-size: 0.9em;
}
.bg-card {
  background: var(--bg-card) !important;
}
.custom-table-bg {
  background-color: var(--bg-card) !important;
}
.table { 
  background: transparent !important;
}
.table-dark {
  --bs-table-bg: var(--bg-card) !important;
  border-color: var(--border) !important;
}

.table-dark td,
.table-dark th {
  border-color: var(--border) !important;
}

.table-hover>tbody>tr:hover>* {
  box-shadow: none !important;
  background-color: rgba(255, 255, 255, 0.05);
  /* Subtle hover instead of neon glow */
}



.weglot-container {
    display: none !important;
}
.lang-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}
.lang-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background: var(--accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: scale(1.1);
}

.lang-btn img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.lang-btn i {
   font-size: 20px;
   color: #fff;
}
.lang-menu {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 180px;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 8px;
    display: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}
.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
}
.lang-item:hover {
    background: #27272a;
}

.lang-item img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.lang-item span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.lang-item.active {
    background: var(--accent);
}

.lang-item.active span {
    color: #000000;
}

.lang-float.active .lang-menu {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
