body {
  margin: 0;
  padding: 0;
  margin-top: 0; /* Reset this if set earlier */
  font-family: 'Arial', sans-serif;
  background-image: url('../images/cybster-background.webp');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 200px; /* ðŸ‘ˆ Add this! */
}




.container {
  margin-top: 100px;  /* ðŸ‘ˆ This is the cleanest way to push content down */
  text-align: center;
  background-color: transparent;
  padding: 30px;
  border-radius: 15px;
  color: #00ffc3;
}


.cybster-gif {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e1f26;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader {
  border: 8px solid #0e1f26;
  border-top: 8px solid #00ffc3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cybster-header {
  position: absolute; /* Make it stick to the top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
}

.nav-container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(0, 20, 30, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;   /* ðŸ‘ˆ ALWAYS stays on screen */
  top: 20px;         /* ðŸ‘ˆ Distance from top */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;     /* ðŸ‘ˆ Stay above everything else */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #00fefe;
  text-decoration: none;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #00fefe;
  text-decoration: none;
  font-weight: 600;
}

.copy-button {
  background-color: #0a3749;
  color: #00fefe;
  border: 2px solid #00fefe;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #00fefe;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    text-align: center;
    background-color: rgba(0, 20, 30, 0.9);
    padding: 20px;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
/* Hide the mobile Copy CA link by default */
.copy-ca-mobile {
  display: none;
}

/* Show mobile Copy CA inside nav on small screens */
@media (max-width: 768px) {
  .copy-button {
    display: none; /* Hide desktop version */
  }

  .copy-ca-mobile {
    display: block;
    background-color: #0a3749;
    color: #00fefe;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 2px solid #00fefe;
    box-shadow: 0 0 10px #00fefe;
  }
}


html {
  scroll-behavior: smooth;
}

.section {
  padding: 50px 20px 40px 20px;
  color: #00fefe;
  background-color: rgba(0, 20, 30, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(0, 255, 195, 0.15);
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  color: #00fefe;
}

.section p {
  font-size: 1em;
  line-height: 1.6;
  color: #b8ffff;
}
/* 1. Ensure the page layout uses Flex to push footer down */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* 2. Main container grows to fill available space */
.container {
  flex: 1;
  text-align: center;
  background-color: transparent;
  padding: 30px;
  border-radius: 15px;
  color: #00fefe;
}

/* 3. Footer styling */
.cybster-footer {
  width: 100%;
  background-color: rgba(0, 20, 30, 0.6);
  backdrop-filter: blur(10px);
  color: #00fefe;
  font-size: 14px;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #00fefe;
}

#roadmap .container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

#roadmap .roadmap-image {
  width: calc(100% + 40px); /* add back the 2x horizontal padding */
  margin-left: -20px;
  margin-right: -20px;
  display: block;
  height: auto;
}
.origin .origin-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.origin .origin-block.reverse {
  flex-direction: row-reverse;
}

.origin .origin-text {
  flex: 1;
  min-width: 300px;
}

.origin .origin-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.origin .origin-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 195, 0.2);
}

.origin h3 {
  color: #00fefe;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 15px;
}

.origin p {
  color: #b8ffff;
  line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .origin .origin-block {
    flex-direction: column !important;
    text-align: center;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #00fefe;
  box-shadow: 0 0 15px rgba(0, 255, 195, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.social-icons img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00fefe;
}


.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  background-color: rgba(0, 20, 30, 0.4);
  padding: 30px 50px; /* Add more horizontal padding */
  border-radius: 20px;
  color: #b8ffff;
  box-shadow: 0 0 15px rgba(0, 255, 195, 0.1);
  position: relative;
}


.swiper-slide h3 {
  color: #00fefe;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 15px;
}

.swiper-slide a {
  color: #00ffc3;
  text-decoration: underline;
}

/* Custom Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #00fefe;
  background-color: rgba(0, 255, 195, 0.08);
  border: 2px solid #00fefe;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 195, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #00fefe;
  color: #001421;
  box-shadow: 0 0 15px #00fefe;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-slide {
  padding: 30px 30px; /* reduce horizontal padding */
}

.swiper-slide h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.swiper-slide p,
.swiper-slide li {
  font-size: 0.95em;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Optional: limit text width so it's centered and doesn't stretch */
.swiper-slide > * {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.swiper-slide li,
.swiper-slide p,
.swiper-slide a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.how-to-buy-swiper .swiper-slide {
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100%;
}


.swiper-slide {
  box-sizing: border-box;
}

.gallery-swiper {
  width: 100%;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.gallery-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.gallery-swiper .swiper-slide {
  width: 350px; /* ← increase from 220px */
  flex-shrink: 0;
  opacity: 0.5;
  transform: scale(0.85);
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.1); /* make it noticeably larger */
}


.gallery-swiper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 195, 0.3);
}

/* Arrows */
.gallery-prev,
.gallery-next {
  color: #00fefe;
  background: rgba(0, 255, 195, 0.08);
  border: 2px solid #00fefe;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
}

.gallery-prev {
  left: -10px;
}
.gallery-next {
  right: -10px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #00fefe;
  color: #001421;
}

.gallery-pagination {
  margin-top: 20px;
  text-align: center;
}
