/* General Styles */
body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #faf6ff 0%, #f0f3fa 100%);
  color: #2a2233;
  overflow-x: hidden; /* Prevent horizontal scroll */
  position: relative;
}

/* Theme-specific background animation container */
#background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}

/* Glassmorphism Base Style */
.glass-section {
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid #b06df2;
  box-shadow: 0 6px 38px rgba(176, 109, 242, 0.07);
  border-radius: 22px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px); /* Safari support */
  margin: 40px auto;
  padding: 40px;
  max-width: 1100px;
  box-sizing: border-box;
}

/* Header and Navigation */
header {
  width: 100%;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-radius: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

nav .logo img {
  height: 50px;
}

nav .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav .nav-links li {
  margin-left: 30px;
}

nav .nav-links a {
  color: #2a2233;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

nav .nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #b06df2;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

nav .nav-links a:hover {
  color: #b06df2;
}

nav .nav-links a:hover::after,
nav .nav-links a.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 100px 20px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-logo {
  max-width: 400px;
  margin-bottom: 30px;
}

.hero-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 3.5em;
  color: #b06df2;
  text-shadow: 0 0 15px rgba(176, 109, 242, 0.6);
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.5em;
  color: #444;
  margin-bottom: 40px;
}

.typing-animation {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.8em;
  color: #13950e;
  min-height: 1.8em;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #13950e;
  animation: typing 4s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #13950e; }
}

/* Mirror Section */
.mirror-section {
  text-align: center;
}

.mirror-section h2 {
  color: #b06df2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.2em;
  margin-bottom: 30px;
}

.mirror-list a {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.2em;
  color: #2a2233;
  text-decoration: none;
  margin-bottom: 10px;
  padding: 10px 20px;
  background: rgba(176, 109, 242, 0.1);
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.mirror-list a:hover {
  background: #b06df2;
  color: white;
  box-shadow: 0 0 15px rgba(176, 109, 242, 0.7);
}

.mirror-note {
  font-size: 0.9em;
  color: #444;
  margin-top: 20px;
}

/* About Section */
.about-section h2 {
  color: #b06df2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
}

.about-section p {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 30px;
}

.feature-card h3 {
  color: #13950e;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1em;
  color: #444;
}

/* Registration Section */
.registration-section h2 {
  color: #b06df2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
}

.registration-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.step-card {
  padding: 30px;
  text-align: center;
}

.step-card h3 {
  color: #13950e;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 1em;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.phishing-warning {
  color: #fb545b; /* Crimson for warning */
  font-weight: 700;
  margin-top: 20px;
  border: 1px solid #fb545b;
  padding: 15px;
  border-radius: 10px;
  background: rgba(251, 84, 91, 0.05);
}

/* Crypto Panel Section */
.crypto-section h2 {
  color: #b06df2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
}

.crypto-rates-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.crypto-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 30px;
}

.crypto-card h3 {
  color: #13950e;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.crypto-card p {
  font-size: 1.2em;
  color: #2a2233;
}

.crypto-card span {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: #b06df2;
}

.crypto-note {
  font-size: 0.9em;
  color: #444;
  margin-top: 30px;
  text-align: center;
}

/* Security Section */
.security-section h2 {
  color: #b06df2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.security-card {
  padding: 30px;
  text-align: center;
}

.security-card h3 {
  color: #13950e;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.security-card p {
  font-size: 1em;
  color: #444;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section h2 {
  color: #b06df2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
}

.accordion-item {
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion-header {
  background: rgba(176, 109, 242, 0.1);
  color: #2a2233;
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 15px;
  transition: background 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: #b06df2;
  color: white;
}

.accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.6);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.accordion-content.show {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
}

/* Gallery Section */
.gallery-section h2 {
  color: #b06df2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-slider {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-bottom: 20px;
}

.gallery-slider::-webkit-scrollbar {
  height: 8px;
}

.gallery-slider::-webkit-scrollbar-thumb {
  background: #b06df2;
  border-radius: 10px;
}

.gallery-slider::-webkit-scrollbar-track {
  background: rgba(176, 109, 242, 0.1);
  border-radius: 10px;
}

.gallery-image {
  flex-shrink: 0;
  width: 800px; /* Adjust as needed */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 38px rgba(176, 109, 242, 0.07);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.02);
}

.slider-nav {
  text-align: center;
  margin-top: 20px;
}

.slider-nav button {
  background: #b06df2;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.slider-nav button:hover {
  background: #13950e;
  box-shadow: 0 0 15px rgba(19, 149, 14, 0.7);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-content p {
  font-size: 1em;
  color: #444;
  line-height: 1.6;
}

.disclaimer {
  font-size: 0.8em;
  color: #aaa;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px 20px;
  }

  nav .nav-links {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav .nav-links li {
    margin: 0 10px 10px 10px;
  }

  .hero-title {
    font-size: 2.5em;
  }

  .hero-subtitle {
    font-size: 1.2em;
  }

  .typing-animation {
    font-size: 1.2em;
  }

  .glass-section {
    margin: 20px auto;
    padding: 20px;
  }

  .feature-card, .crypto-card, .security-card, .step-card {
    min-width: unset;
    width: 100%;
  }

  .gallery-image {
    width: 100%;
  }
}


