* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {

  display: flex;
  background: #121926;
  color: #fff;
}

aside {
  width: 240px;
  background: #1e2a3a;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

aside .btn {
  padding: 10px;
  border-radius: 8px;
  background: #2f3e4e;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

aside .btn.active {
  background: linear-gradient(90deg, #ff4d4f, #8b0000);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar button {
  padding: 10px 16px;
  background: #ff4d4f;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 10px;
}

.hero {
  background: linear-gradient(to right, #380000, #2b0000);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-text p {
  margin-bottom: 15px;
}



.bonus-cards {
  display: flex;
  gap: 10px;
}

.bonus-card {
  flex: 1;
  padding: 20px;
  background: #0f1f2e;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 14px;
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
  }

  aside {
    flex-direction: row;
    overflow-x: auto;
    width: 100%;
    height: auto;
  }

  .main {
    padding: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .bonus-cards {
    flex-direction: column;
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-container {
  overflow: hidden;
  background-color: #111;
  padding: 1rem 0;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
  gap: 1rem;
}

.game-card {
  width: 113.35px;
  height: 190.3px;
  gap: 6.87px;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: #222;
  text-align: center;
  flex-shrink: 0;
}

.game-card img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}


/* referral page  */
.child_gradient_background {
  background: linear-gradient(to bottom right, #32111e, #161521);
  border-radius: 10px;
  overflow: hidden;
}


/* This ensures the dropdown works correctly without needing Tailwind classes */
#document-type-dropdown .dropdown-menu {
  display: none;
  /* Initially hidden */
  transition: opacity 0.2s ease-in-out;
}

#document-type-dropdown.open .dropdown-menu {
  display: block;
  /* Show when the 'open' class is added by JS */
}

#document-type-dropdown .dropdown-arrow {
  transition: transform 0.2s ease-in-out;
}

#document-type-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
  /* Rotate arrow when open */
}


