body {
  background: #1E1E1EFF;
  color: #D6A8FFFF;
  font-family: 'Space Grotesk', sans-serif;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}

/* Reset & Basics */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logobox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 900px;
  width: 100%;
}

#tdkcml {
  width: 280px;
  max-width: 40%;
  height: auto;
  filter: drop-shadow(0 0 5px #00D6FFFF);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

h1 {
  font-family: 'Boldonse', monospace;
  color: #FF3EB5FF;
  -webkit-text-stroke: 1px #00D6FFFF;
  text-shadow: 0 0 8px #00D6FFFF;
  animation: pulseGlow 4s infinite alternate ease-in-out;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
  line-height: 1;
}

h2 {
  margin: 0.5rem 0 0.5rem 0;
  font-size: 1.5rem;
  color: #00D6FFFF;
  font-family: 'Orbitron', monospace;
}

.header-text p {
  margin: 0;
  font-size: 1rem;
  max-width: 400px;
  color: #D6A8FFFF;
  opacity: 0.9;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 6px #00D6FFFF;
  }
  100% {
    text-shadow: 0 0 20px #FF3EB5FF;
  }
}

.accordion {
  width: 100%;
  max-width: 700px;
  margin-top: 2rem;
}

.accordion-item {
  background: #2A2A2AFF;
  border: 2px solid #D6A8FFFF;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 0 12px #FF3EB54D;
}

.accordion-header {
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #009E73FF, #00D6FFFF);
  cursor: pointer;
  color: #FFFFFFFF;
  font-family: 'Orbitron', monospace;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, transform 0.3s ease;
}

.accordion-header:hover {
  background: linear-gradient(90deg, #FF3EB5FF, #00D6FFFF);
  transform: scale(1.02);
  box-shadow: 1px 1px 8px #FF33E699, -1px 1px 8px #FF33E699, -1px -1px 8px #FF33E699, 1px -1px 8px #FF33E699;
}

.accordion-body {
  max-height: 0;
  overflow-y: auto;
  padding: 0 1rem;
  transition: max-height 0.7s ease, padding 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden; /* Ensure content doesn't spill when collapsed */
}

.accordion-body.open {
  max-height: 1200px; /* Increased to accommodate content */
  padding: 1rem;
}

button {
  background: #FF3EB5FF;
  border: none;
  padding: 0.75rem 1.5rem;
  color: #FFFFFFFF;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s ease;
}

button:hover {
  background: #009E73FF;
}

a {
  color: #00D6FFFF;
  font-weight: bold;
  transition: text-shadow 0.2s ease;
}

a:hover {
  text-shadow: 0 0 5px #00D6FFFF;
}

.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  max-width: 700px;
  height: 350px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 0 12px #00D6FF4D;
}

footer {
  margin-top: 3rem;
  color: #D6A8FFFF;
  font-size: 0.87rem;
}

/* Modal */
#paypal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #2A2A2AFF;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 12px #FF3EB54D;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #AAAAAAFF;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #FF3EB5FF;
}

.paypal-container-modal {
  margin-top: 1rem;
  display: block;
  text-align: center;
  width: 100%;
}

/* Carousel */
.carousel-wrapper {
  width: 100%;
  max-width: 700px;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  border: 1px solid #D6A8FFFF;
  background: #2A2A2AFF;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.carousel-track img {
  height: 120px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 0 8px #FF3EB54D;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.carousel-track img:hover {
  opacity: 1;
  box-shadow: 0 0 12px #00D6FFFF;
}

/* Crypto Section */
.crypto-container {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.crypto-address-box {
  display: flex;
  align-items: center;
  background: #2A2A2AFF;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #444444FF;
}

#btc-address {
  font-family: monospace;
  color: #D6A8FFFF;
  word-break: break-all;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 0.5rem;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .logobox {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .header-text {
    align-items: center;
    text-align: center;
  }

  #tdkcml {
    max-width: 70%;
    width: 250px;
  }

  .accordion-item .accordion-body p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  
  h1 {
     font-size: 3rem;
  }
}
