body {
    color: #c46525;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

:root {
--bg-darkness: 0.7;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,75,var(--bg-darkness)), rgba(0,0,0,var(--bg-darkness))), url('../img/satellite_smaller.jpg');
    background-size: cover;
    background-position: 0% 40%;
    background-attachment: fixed;
    z-index: -1;
    transform: scale(1);
}


.themed-container {
  margin: 4rem auto;
  width: 85%;
  backdrop-filter: blur(4px); /* apply blur to background */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: linear-gradient(to right, rgba(24, 44, 109, 0.55), rgba(0, 0, 0, 0.25)); /* Blue fading to transparent */
  color: #c46525;
  padding: 1rem;
  backdrop-filter: blur(4px); /* apply blur to the header */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  z-index: 1; /* ensures that the gradient stays above the blurred background */
}

.page-cont {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 0;
}


.header-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left:7.5%;
    margin-bottom: 2rem;
}

.logo-cont, .details-cont {
    flex: 1 1 45%;
    box-sizing: border-box;
    padding: 1rem;
}

.logo-cont img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.slogan {
  font-size:1.35rem;
}

.details-cont > div {
    font-size:1.35rem;
    margin-left: 1rem;
    padding: 0.2rem;
  }

.bold {
  font-weight: bold;
}

.download-btn {
  background-color:  #052fbb; /* main color */
  color: #c46525;
  font-size: 20px;
  font-weight: bold;
  margin-top: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 12px; /* rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dlb-disabled {
  background-color: #1a1a1a;
  color: #777777;
  font-size: 20px;
  font-weight: bold;
  margin-top: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 12px; /* rounded corners */
  pointer-events: none;      /* blocks clicks on the link & its children */
  cursor: not-allowed;
  opacity: 0.6;
}

.news {
  text-align:center;
  font-size: 1.5rem;
}

.lower-page-cont {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

hr {
    border: none;
    border-top: 1px solid #c46525;
    margin: 1.5rem 0;
}


.crypto-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.crypto-wallet {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  text-align: center;
  border: 1px solid  #c46525;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  background-color: #11111134;
}

.qr-code {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.wallet-label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.wallet-address {
  font-family: monospace;
  font-size: 0.85rem;
  word-break: break-all;
  color:  #c46525;
}


.faq-cont {
  max-width: 80%;
  margin: 2rem auto;
  font-family: Arial, sans-serif;
}

.faq-title {
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #c46525;
  padding: 1rem 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
  font-size: 1.35rem;
  color:  #c46525;
}

/* Active (visible) state */
.faq-item.active .faq-body {
  max-height: 600px; /* adjust to fit your content */
  padding-top: 0.5rem;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

.foot-info-cont {
  font-size: 1.35rem;
}
