
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(255, 255, 255);
  color: #333;
  text-align: center;
}

h1, h2, h3 {
  color: rgb(37, 44, 97);
}

.language-switcher button {
  background-color: #217ee9;
  color: white;
  border: #217ee9;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px;
}

.smallerimg {
  display: flex;
  justify-self: center;
  border-radius: 20px;
  height: fit-content;
  width: auto;
  flex-direction: column;
}

.smallerimg img {
  border-radius: 20px;
  height: 500px;
  width: auto;
  margin: auto;
}

a {
  color:#2575fc;
  
}
a:link { 
  text-decoration: none; 
} 
a:visited { 
  text-decoration: none; 
} 
a:hover { 
  text-decoration: none; 
  color: #ffc107;
} 
a:active { 
  text-decoration: none; 
}


/*Menu------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
     /* Menu Styles */
     .menu {
      position: sticky;
      top: 0;
      background: #fff;
      padding: 10px 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: all 0.3s ease;
      text-align: center; 
  }

  .menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 20px;
      justify-content: center; /* Centers the menu items */
  }

  .menu ul li {
      display: inline-block;
  }

  .menu ul li a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
  }

  .menu ul li a:hover {
      color: #217ee9;
  }

  /* Hamburger Menu Styles */
  .hamburger-menu {
      display: none;
      position: fixed;
      top: 20px;
      right: 20px;
      background: #fff;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      z-index: 1001;
  }

  .hamburger-menu .bar {
      width: 25px;
      height: 3px;
      background: #333;
      margin: 4px 0;
      transition: all 0.3s ease;
  }

  .hamburger-menu.active .bar:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger-menu.active .bar:nth-child(2) {
      opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
  }







/*Defider------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* Divider Section Styling */
.divider-section {
  width: 100%;
  overflow: hidden; /* Ensures the sliding effect stays contained */
  margin: 40px 0; /* Adjust spacing as needed */
}

.divider-content {
  text-align: center;
  padding: 20px;
  background: linear-gradient(90deg, #6a11cb, #2575fc); /* Gradient background */
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  transform: translateX(-100%); /* Start off-screen to the left */
  animation: slideIn 1.5s ease-out forwards; /* Animation effect */
}

/* Keyframes for the sliding animation */
@keyframes slideIn {
  0% {
      transform: translateX(-100%); /* Start off-screen to the left */
  }
  100% {
      transform: translateX(0); /* Slide into the center */
  }
}

/* Optional: Add a hover effect for interactivity */
.divider-content:hover {
  background: linear-gradient(90deg, #2575fc, #6a11cb); /* Reverse gradient on hover */
  cursor: default;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Hero Section */
.logo {
  max-width: 50%; /* Adjust size */
  height: auto;
  display: block;
  margin: 0 auto 20px; /* Centers logo & adds spacing */
  border-radius: 50%;
}

.hero {
  background: linear-gradient(to right,#252b60,#217ee9 );
  color: white;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color:rgb(248, 155, 47) ;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: rgb(248, 155, 47);
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  margin: 10px;
  font-weight: bold;
}

.btn.secondary {
  background: white;
  color: #2575fc;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Levels Section */
.levels {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.level-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.level-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #217ee9, #4a90e2);
  transition: height 0.3s ease;
}

.level-card:hover::before {
  height: 100%;
}

.level-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #181818;
  position: relative;
  z-index: 1;
}

.level-card p {
  font-size: 16px;
  color: #181818;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.level-card a {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  z-index: 1;
  overflow: hidden; /* Ensure the pseudo-element doesn't overflow */
}

.level-card a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6aa8f4, #8bb8f7); /* Lighter blue gradient */
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.level-card a:hover::before {
  opacity: 0;
}

.level-card a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #8bb8f7, #6aa8f4); /* Lighter blue gradient */
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.level-card a:hover::after {
  opacity: 1;
}

.level-card p.level-tag {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Why I Built This Section */
.why-i-built {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 50px 20px;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.why-i-built .image-container {
  flex: 1;
  max-width: 400px;
}

.why-i-built .image-container img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.why-i-built .text-container {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  margin-top: -30px;
}

.why-i-built h2 {
  color: #222;
  margin-bottom: 20px;
}

.why-i-built p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Why Choose Section */
.lightbluebg {
  background: #eef;
  padding: 40px;
}

.lightbluebg ul {
  list-style: none;
  padding: 0;
}

.lightbluebg li {
  font-size: 1.2em;
  margin: 10px 0;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Testimonials */
.testimonials {
  padding: 40px;
  background: white;
  font-style: italic;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* FAQ */
.faq {
  padding: 40px;
  background: #eef;
}

.faq-item {
  margin-bottom: 20px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Footer */
footer {
  background: #222;
  color: white;
  padding: 20px;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
    /* Additional CSS for Level 1 page */


.logolevel {
  max-width: 20%; /* Adjust size */
  height: auto;
  display: block;
  margin: 0 auto 20px; /* Centers logo & adds spacing */
  border-radius: 50%;
}  

.logolevels {
  max-width: 40%; /* Adjust size */
  height: auto;
  display: block;
  margin: 0 auto 20px; /* Centers logo & adds spacing */
  border-radius: 50%;
}  

.container {
  max-width: 100%;
  margin: 0 auto;
}

.containercycle {
  max-width: 100%;
  margin: 0 20px 0 20px;
}

.container li {
list-style: none;
}


#allsteps a {
  color: #217ee9;
  text-decoration: none; /* no underline */

}
.steps {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-content: center;
  background: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5%;
  padding-right: 5%;
}

.screenshot {
  width: 100%;
  max-width: 600px;
  border: 2px solid #ddd;
  border-radius: 8px;
  margin: 15px 0;
}

.warning {
  background: #b1f1af;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 20px 0;
}


.nav-button {
  display: inline-block;
  margin: 20px 10px;
  padding: 10px 20px;
}

#smallchild {
  border-radius: 20px;
  height: auto;
  width: 15%;
  margin: auto;

}
#coinbaselogo {
  border-radius: 20px;
  height: auto;
  width: 30%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

#coinbasemobile {
  border-radius: 20px;
  height: auto;
  width: 30%;
  margin-top: 10px;
  margin: auto;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

  /* Additional CSS for Level 2 */
  .exchange-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.exchange-card img {
  width: 100px;
  margin-bottom: 15px;
}
.region-tag {
  background: #217ee9;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}
.order-type {
  padding-left: 10px;
  margin: 15px 0;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

  /* Additional CSS for Level 3 */

/* Wallet Cards */
.wallet-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chain-tag {
  background: #f89b2f;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin: 5px 0;
}

/* Setup Steps */
.setup-step {
  padding-left: 15px;
  margin: 20px 0;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Additional CSS for Level 4 */

  /* Staking Cards */
  .staking-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.apy-tag {
  background: #25c2a0;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}
.node-requirements {

  padding-left: 15px;
  margin: 20px 0;
}
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Additional CSS for Level 5 */
  /* Highlight Actions */
.action {
  color: #217ee9;
  font-weight: bold;
}
.steps img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* Hide the checkbox element */
.donation-toggle {
  display: none;
}

/* Style the donation button */
.donation-button {
  background-color: white;
  background-image: url(/images/bigdonate2_00x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #fff;
  padding: 15px 25px;
  font-size: 18px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin: 10px 0 10px 0;
}

.donation-button:hover {
  background-color: white;
}

/* The modal background (hidden by default) */
.donation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
}

/* When the checkbox is checked, display the modal */
.donation-toggle:checked + .donation-button + .donation-modal {
  display: flex;
}

/* Style the modal content box */
.donation-content {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

/* Style the close button in the modal */
.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #aaa;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #000;
}

/* Style for the donation address to make it stand out */
.donation-address {
  font-family: monospace;
  background: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  margin: 15px 0;
  word-break: break-all;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */



.toolssection {
  margin-bottom: 40px;
}
.toolssection h2 {
  border-bottom: 2px solid #217ee9;
  padding-bottom: 10px;
}
.toolssection ul {
  list-style-type: none;
  padding: 0;
}
.toolssection ul li {
  background: #fff;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.toolssection ul li a {
  color: #217ee9;
  text-decoration: none;
}
.toolssection ul li a:hover {
  text-decoration: underline;
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


    /* Social Buttons Container */
    .social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

/* Individual Button Styling */
.social-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.social-button:hover {
    transform: rotate(360deg);
}



/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.category {
  background-color: lightblue;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.tool-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.tool-card:hover {
  transform: translateY(-5px);
}

a {
  color: #60a5fa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.description {
  color: #94a3b8;
  margin: 10px 0;
}

.tag {
  display: inline-block;
  background-color: #475569;
  color: #cbd5e1;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  margin: 5px 2px;
}


/*blog----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.blog-post {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.blog-post h2 a {
  text-decoration: none;
  color: #333;
}
.date {
  color: #666;
  font-size: 0.9em;
}

/*timeline----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.bitcoin-cycle {
  padding: 4rem 2rem;
  background:  #eef;
  position: relative;
  overflow: hidden;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 4rem auto;
  max-width: 1400px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #f7931a;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 15%;
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-10px);
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: #f7931a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item h3 {
  color: #f7931a;
  margin: 1.5rem 0 1rem;
  font-size: 1.25rem;
}

.timeline-item p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}


/*widget----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.widget-section {
  display: grid;
  grid-template-columns: repeat(column, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
  
}
.widget {
  display: flex;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);


}

.tradingview-widget-container {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;
}

.marquee-ticker {
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 768px) {
  
.why-i-built {
    flex-direction: column;
    text-align: center;
}
.why-i-built .text-container {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);

}
.why-i-built .image-container {
    order: 2;
    max-width: 100%;
}

.logo {
  max-width: 60%; /* Adjust size */
}

#smallchild {
  height: auto;
  width: 50%;
}
#coinbaselogo {
  height: auto;
  width: 85%;
}
#coinbasemobile {

  height: auto;
  width: 90%;
}


.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
}

.menu.active {
    top: 0;
}

.menu ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.hamburger-menu {
    display: block;
}


.timeline-container {
  flex-direction: column;
  align-items: center;
}

.timeline-container::before {
  left: 50%;
  width: 0px;
  height: 0px;
}

.timeline-item {
  width: 80%;
  margin-bottom: 4rem;
}

.timeline-icon {
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}
}


