body {
  background: #090C1D;
}

.claim-button {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-a {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  transition: color 0.5s;
}

.nav-a:hover {
  color: #6ff3f3;
}

.nav-a.active {
  color: #f3ea6f;
}

ion-icon {
  color: rgb(40, 187, 255);
}

.bg-muted {
  background: hsl(60.92deg 14.85% 34.96% / 50%);
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-buttons {
  display: flex;
  gap: 10px;
}

.custom-button {
  background: linear-gradient(45deg, #c9c628, #edff4f);
  color: #000000;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(201, 198, 40, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.custom-btn {
  position: relative;
  background: linear-gradient(180deg, rgb(220, 200, 22) 0, rgb(227, 211, 70) 100%);
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c99;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
  border: none;
  padding: 0;
  /* Adjusted padding */
  font-family: Inter, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
}

.custom-btn::before {
  content: "";
  width: 60%;
  height: 100%;
  position: absolute;
  left: -30%;
  top: 0;
  background: rgba(250, 247, 72, 0.8);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: rotate(55deg);
  transition: all 0.3s ease;
}

.custom-btn:hover::before {
  left: 50%;
  width: 100%;
}

.custom-btn .btn-text-small {
  position: relative;
  padding: 10px;
  text-align: center;
  word-wrap: break-word;
  font-size: 1rem;
  text-decoration: none;
  color: white;
}

.blackberry {
  top: 50%;
  animation: hovereffect-3 4.4s infinite;
}

.blackberry {
  left: -30px;
}

.banana {
  top: 60%;
  animation: hovereffect-3 4.1s infinite;
}

.banana {
  right: -62px;
}

.blackberry,
.banana {
  position: fixed;
  width: 200px;
  z-index: -1000;
  pointer-events: none;
  --darkreader-ignore: true;
}

.float-right {
  float: right;
}

.float-right {
  position: absolute;
  left: 0;
  top: 110px;
  width: 300px;
  animation: floatRight 5s infinite;
}

.float-left {
  position: absolute;
  right: 0;
  top: 460px;
  width: 300px;
  animation: floatLeft 5s infinite;
}

@keyframes hovereffect-3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -10px);
  }
}

@keyframes floatRight {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatLeft {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatLeft {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {

  .float-left,
  .float-right {
    display: none;
  }
}

.glow{
  margin-top:45vh;
  color:rgb(255, 238, 0);
  animation-name:glow;
  animation-duration:1s;
  animation-iteration-count:infinite;
  animation-direction:alternate;
}

@keyframes glow{
  from{text-shadow:0px 0px 5px #041627,0px 0px 5px #614ad3;}
  to{text-shadow:0px 0px 20px #041627,0px 0px 20px #614ad3;}
}

#rules-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

#rules-modal.active {
  opacity: 1;
  visibility: visible;
}

#rules-modal .modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(40, 40, 70, 0.9) 100%);
  border-radius: 15px;
  padding: 2.5rem;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s ease, opacity 0.4s ease;
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#rules-modal.active .modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#rules-modal h2 {
  color: #EEAF0E;
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

#rules-modal p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

#rules-modal ul {
  padding-left: 0;
  margin-bottom: 2rem;
  list-style-type: none;
}

#rules-modal li {
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.4;
}

#rules-modal li::before {
  content: '➤';
  color: #EEAF0E;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

#rules-modal .highlight {
  color: #EEAF0E;
  font-weight: 600;
}

#rules-modal .warning {
  font-style: italic;
  color: #ff6b6b;
  font-weight: 400;
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid #ff6b6b;
  border-radius: 8px;
  background-color: rgba(255, 107, 107, 0.1);
  font-size: 1rem;
}

#rules-modal #close-rules-modal {
  background-color: #EEAF0E;
  color: #1a1a2e;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin: 2rem auto 0;
  width: 100%;
  max-width: 250px;
}

#rules-modal #close-rules-modal:hover,
#rules-modal #close-rules-modal:focus {
  background-color: #FFD700;
  outline: none;
  transform: translateY(-2px);
}

/* Hide scrollbar for Chrome, Safari and Opera */
#rules-modal .modal-content::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#rules-modal .modal-content {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

@media (max-width: 768px) {
  #rules-modal .modal-content {
    padding: 2rem;
  }

  #rules-modal h2 {
    font-size: 2rem;
  }

  #rules-modal p,
  #rules-modal li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #rules-modal .modal-content {
    padding: 1.5rem;
  }

  #rules-modal h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  #rules-modal p,
  #rules-modal li {
    font-size: 0.9rem;
  }

  #rules-modal .warning {
    font-size: 0.85rem;
    padding: 0.8rem;
  }

  #rules-modal #close-rules-modal {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
}