/* Vortex Pulse Theme - Cyberpunk Wave Style */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-purple: #b06df2;
  --primary-green: #13950e;
  --bg-dark: #0a0a0f;
  --bg-black: #000;
  --text-primary: #eee;
  --text-secondary: #aaa;
  --text-faq: #ddd;
  --overlay-light: rgba(255, 255, 255, 0.04);
  --overlay-medium: rgba(255, 255, 255, 0.05);
  --overlay-strong: rgba(255, 255, 255, 0.08);
  --shadow-purple: rgba(176, 109, 242, 0.1);
  --glow-purple: 0 0 20px var(--primary-purple);
  --glow-green: 0 0 20px var(--primary-green);
}

body {
  font-family: 'Manrope', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Canvas Background */
#pulseCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
  color: var(--primary-purple);
  text-shadow: var(--glow-purple);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-green));
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('img/back1.png') center/cover;
  background-blend-mode: overlay;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.8), rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.logo {
  max-width: 400px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(var(--glow-purple));
  animation: pulse 2s infinite;
}

.typing-text {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--overlay-light);
  border: 1px solid var(--primary-purple);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-purple);
  background: var(--overlay-medium);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  text-shadow: var(--glow-green);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mirrors Section */
.mirrors-section {
  padding: 5rem 0;
  background: var(--overlay-light);
  border-top: 1px solid var(--primary-purple);
  border-bottom: 1px solid var(--primary-purple);
}

.mirrors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mirror-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--overlay-medium);
  border: 1px solid var(--primary-green);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: 'IBM Plex Mono', monospace;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mirror-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-purple);
  border-color: var(--primary-purple);
  background: var(--overlay-strong);
}

.mirror-icon {
  font-size: 1.5rem;
  color: var(--primary-green);
}

.mirror-url {
  flex: 1;
  font-weight: 600;
}

.mirror-status {
  padding: 0.3rem 0.8rem;
  background: var(--primary-green);
  color: var(--bg-black);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.mirrors-warning {
  text-align: center;
  color: var(--primary-purple);
  font-weight: 600;
  background: var(--overlay-medium);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--primary-purple);
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  padding: 1.5rem;
  background: var(--overlay-light);
  border: 1px solid var(--primary-purple);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-purple);
  background: var(--overlay-medium);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.interface-preview {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 2px solid var(--primary-purple);
  box-shadow: 0 20px 50px var(--shadow-purple);
  transition: all 0.3s ease;
}

.interface-preview:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 70px var(--shadow-purple);
}

/* Registration Section */
.registration-section {
  padding: 5rem 0;
  background: var(--overlay-light);
}

.registration-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--overlay-medium);
  border: 1px solid var(--primary-purple);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px var(--shadow-purple);
}

.step:nth-child(even) {
  grid-template-columns: 1fr auto;
}

.step:nth-child(even) .step-content {
  order: -1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-shadow: none;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--primary-purple);
}

/* Crypto Section */
.crypto-section {
  padding: 5rem 0;
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.crypto-card {
  padding: 2rem;
  background: var(--overlay-medium);
  border: 1px solid var(--primary-purple);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.crypto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-purple);
  border-color: var(--primary-green);
}

.crypto-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-shadow: var(--glow-green);
}

.crypto-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.crypto-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.crypto-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: 'IBM Plex Mono', monospace;
  text-shadow: var(--glow-green);
}

/* Security Section */
.security-section {
  padding: 5rem 0;
  background: var(--overlay-light);
}

.security-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.security-item {
  padding: 2rem;
  background: var(--overlay-medium);
  border: 1px solid var(--primary-purple);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-purple);
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.security-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.security-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-illustration {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 2px solid var(--primary-purple);
  box-shadow: 0 20px 50px var(--shadow-purple);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--overlay-medium);
  border: 1px solid var(--primary-purple);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px var(--shadow-purple);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-purple);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-faq);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

/* Footer */
.footer {
  background: var(--bg-black);
  border-top: 1px solid var(--primary-purple);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo-img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(var(--glow-purple));
}

.footer-logo p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-info h4,
.footer-contact h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-shadow: var(--glow-green);
}

.footer-info p,
.footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--overlay-medium);
  color: var(--text-secondary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-content,
  .faq-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  
  .step:nth-child(even) .step-content {
    order: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .typing-text {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse effect for sections */
.pulse-section {
  animation: sectionPulse 3s ease-in-out infinite;
}

@keyframes sectionPulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--shadow-purple);
  }
  50% {
    box-shadow: 0 0 40px var(--shadow-purple);
  }
}

