/* ===================================
   VORTEX MARKET - COSMIC DESIGN SYSTEM
   Color Palette: Purple/Violet + Green
   =================================== */

:root {
  /* Vortex Purple Palette */
  --vortex-purple-dark: #4A1872;
  --vortex-purple: #6B2E9E;
  --vortex-purple-light: #8B3CB8;
  --vortex-purple-glow: #A855F7;

  /* Vortex Green Palette */
  --vortex-green: #00B061;
  --vortex-green-light: #10B981;
  --vortex-green-glow: #34D399;

  /* Backgrounds */
  --bg-dark: #0A0A0A;
  --bg-darker: #050505;
  --bg-card: #1A1A2E;
  --bg-card-hover: #252540;

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #E5E5E5;
  --text-gray: #9CA3AF;
  --text-muted: #6B7280;

  /* Borders & Accents */
  --border-purple: rgba(107, 46, 158, 0.3);
  --border-green: rgba(0, 176, 97, 0.3);
  --glow-purple: rgba(168, 85, 247, 0.5);
  --glow-green: rgba(16, 185, 129, 0.5);
}

/* ============= RESET & BASE ============= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', 'Orbitron', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: var(--vortex-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--vortex-green-glow);
  text-shadow: 0 0 10px var(--glow-green);
}

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

/* ============= NAVIGATION ============= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-purple);
  z-index: 1000;
  box-shadow: 0 0 30px var(--glow-purple);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo-text-vor {
  color: var(--vortex-purple-glow);
  text-shadow: 0 0 20px var(--glow-purple);
}

.logo-text-tex {
  color: var(--vortex-green);
  text-shadow: 0 0 20px var(--glow-green);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--vortex-green);
  background: rgba(0, 176, 97, 0.1);
  box-shadow: 0 0 15px var(--glow-green);
}

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

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--vortex-purple-glow);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ============= HERO SECTION ============= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#vortex-canvas {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1A0B2E 0%, #0A0A0A 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-vor {
  color: var(--vortex-purple-glow);
  text-shadow: 0 0 40px var(--glow-purple), 0 0 80px var(--glow-purple);
}

.title-tex {
  color: var(--vortex-green);
  text-shadow: 0 0 40px var(--glow-green), 0 0 80px var(--glow-green);
}

.title-sub {
  display: block;
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-top: 15px;
  letter-spacing: 8px;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============= BUTTONS ============= */

.btn {
  display: inline-block;
  padding: 15px 35px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--vortex-green);
  color: var(--bg-dark);
  border-color: var(--vortex-green);
  box-shadow: 0 0 20px var(--glow-green);
}

.btn-primary:hover {
  background: var(--vortex-green-glow);
  box-shadow: 0 0 40px var(--glow-green);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--vortex-purple-glow);
  border-color: var(--vortex-purple);
  box-shadow: 0 0 15px var(--glow-purple);
}

.btn-secondary:hover {
  background: var(--vortex-purple);
  color: var(--text-primary);
  box-shadow: 0 0 30px var(--glow-purple);
  transform: translateY(-2px);
}

.btn-copy {
  background: var(--vortex-purple);
  color: var(--text-primary);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-copy:hover {
  background: var(--vortex-purple-glow);
  box-shadow: 0 0 20px var(--glow-purple);
}

/* ============= SECTIONS ============= */

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--vortex-purple-glow);
  text-shadow: 0 0 20px var(--glow-purple);
}

.about,
.security,
.resources,
.registration {
  padding: 100px 20px;
  position: relative;
}

.about {
  background: var(--bg-dark);
}

.security {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A0B2E 100%);
}

.resources {
  background: var(--bg-darker);
}

/* ============= CRYPTO PRICES WIDGET ============= */

.crypto-prices {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0A0A0A 0%, #1A0B2E 50%, #0A0A0A 100%);
}

.crypto-widget {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.crypto-card {
  background: var(--bg-card);
  border: 2px solid var(--border-purple);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(107, 46, 158, 0.2);
}

.crypto-card:hover {
  border-color: var(--vortex-green);
  box-shadow: 0 0 40px var(--glow-green);
  transform: translateY(-5px);
}

.crypto-card h3 {
  font-size: 1.5rem;
  color: var(--vortex-purple-glow);
  margin-bottom: 15px;
}

.crypto-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--vortex-green-light);
  margin: 15px 0;
}

.crypto-card .change {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px 0;
}

.crypto-card .change.positive {
  color: var(--vortex-green);
}

.crypto-card .change.negative {
  color: #EF4444;
}

.crypto-card .volume,
.crypto-card .timestamp {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 5px 0;
}

/* ============= SECURITY CARDS ============= */

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.security-card {
  background: var(--bg-card);
  border: 2px solid var(--border-purple);
  border-radius: 15px;
  padding: 35px;
  transition: all 0.3s ease;
}

.security-card:hover {
  border-color: var(--vortex-green);
  box-shadow: 0 0 40px var(--glow-green);
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 2.5rem;
}

.card-header h3 {
  font-size: 1.6rem;
  color: var(--vortex-purple-glow);
}

.card-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.card-content strong {
  color: var(--vortex-green-light);
}

/* ============= RESOURCES GRID ============= */

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.resource-category h3 {
  font-size: 1.5rem;
  color: var(--vortex-purple-glow);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-green);
  padding-bottom: 10px;
}

.resource-links {
  list-style: none;
}

.resource-links li {
  margin-bottom: 20px;
  padding: 15px;
  background: var(--bg-card);
  border-left: 3px solid var(--vortex-green);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.resource-links li:hover {
  background: var(--bg-card-hover);
  border-left-width: 5px;
  box-shadow: 0 0 20px rgba(0, 176, 97, 0.2);
}

.resource-links a {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.resource-links span {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* ============= HERO SMALL (Internal Pages) ============= */

.hero-small {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.highlight-vor {
  color: var(--vortex-purple-glow);
  text-shadow: 0 0 30px var(--glow-purple);
}

.highlight-tex {
  color: var(--vortex-green);
  text-shadow: 0 0 30px var(--glow-green);
}

.page-subtitle {
  font-size: 1.4rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============= ABOUT PAGE ============= */

.about-detailed {
  padding: 80px 20px;
  background: var(--bg-dark);
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.intro-text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-section {
  margin: 80px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border-purple);
  border-radius: 15px;
  padding: 35px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--vortex-green);
  box-shadow: 0 0 30px var(--glow-green);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.8rem;
  color: var(--vortex-purple-glow);
  margin-bottom: 15px;
}

.feature-card p {
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

/* ============= ACCESS PAGE ============= */

.access-page {
  padding: 80px 20px;
  background: var(--bg-dark);
}

.security-warning {
  display: flex;
  gap: 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #EF4444;
  border-radius: 10px;
  padding: 25px;
  margin: 40px 0;
  align-items: flex-start;
}

.warning-icon {
  font-size: 2.5rem;
}

.warning-content h3 {
  color: #EF4444;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.mirrors-section {
  margin: 60px 0;
}

.mirror-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.mirror-card {
  background: var(--bg-card);
  border: 2px solid var(--border-purple);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.mirror-card:hover {
  border-color: var(--vortex-green);
  box-shadow: 0 0 30px var(--glow-green);
}

.mirror-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.mirror-header h3 {
  color: var(--vortex-purple-glow);
  font-size: 1.4rem;
}

.status-badge {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-online {
  background: rgba(0, 176, 97, 0.2);
  color: var(--vortex-green);
  border: 1px solid var(--vortex-green);
}

.mirror-url {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 15px 0;
}

.onion-url {
  flex: 1;
  background: var(--bg-darker);
  padding: 12px 15px;
  border-radius: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  color: var(--vortex-green-light);
  border: 1px solid var(--border-green);
  overflow-x: auto;
}

.mirror-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 12px;
}

/* ============= FAQ PAGE ============= */

.faq-page {
  padding: 80px 20px;
  background: var(--bg-dark);
}

.faq-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.faq-column h3 {
  font-size: 1.8rem;
  color: var(--vortex-purple-glow);
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid var(--border-green);
  padding-bottom: 15px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--vortex-green);
  box-shadow: 0 0 20px var(--glow-green);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--vortex-green);
  margin-bottom: 10px;
}

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

/* ============= FOOTER ============= */

.page-freshness {
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border-purple);
  color: var(--text-gray);
}

.footer {
  background: var(--bg-darker);
  border-top: 2px solid var(--border-purple);
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--vortex-purple-glow);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-section p {
  color: var(--text-gray);
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--vortex-green);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-purple);
  color: var(--text-gray);
}

/* ============= RESPONSIVE DESIGN ============= */

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    padding: 20px;
    transition: left 0.3s ease;
    border-top: 2px solid var(--border-purple);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

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

  .title-sub {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .section-title {
    font-size: 2rem;
  }

  .security-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .crypto-widget {
    grid-template-columns: 1fr;
  }
}

/* ============= ANIMATIONS ============= */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-logo {
  animation: float 6s ease-in-out infinite;
}

.logo-text-vor,
.logo-text-tex {
  animation: glow 3s ease-in-out infinite;
}

/* ============= SVG ILLUSTRATIONS & GRAPHICS ============= */

.illustration-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.svg-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(107, 46, 158, 0.5));
  animation: float 6s ease-in-out infinite;
}

.feature-icon-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  filter: drop-shadow(0 0 20px rgba(0, 176, 97, 0.6));
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-large {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 30px rgba(0, 176, 97, 0.9));
}

.section-illustration {
  text-align: center;
  margin: 60px 0;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.animated-icon {
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 15px rgba(107, 46, 158, 0.4));
}

.animated-icon:hover {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(0, 176, 97, 0.7));
}

/* Decorative section dividers */
.section-divider {
  position: relative;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--vortex-purple) 20%,
    var(--vortex-green) 50%,
    var(--vortex-purple) 80%,
    transparent 100%);
  margin: 70px 0;
  overflow: visible;
}

.section-divider::before {
  content: '⬢';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--vortex-green);
  background: var(--bg-dark);
  padding: 0 25px;
  text-shadow: 0 0 25px var(--glow-green);
  animation: pulse 2s ease-in-out infinite;
}

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

.visual-card {
  background: var(--bg-card);
  border: 2px solid var(--border-purple);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 176, 97, 0.1),
    transparent);
  transition: left 0.6s ease;
}

.visual-card:hover::before {
  left: 100%;
}

.visual-card:hover {
  border-color: var(--vortex-green);
  box-shadow: 0 0 35px rgba(0, 176, 97, 0.4);
  transform: translateY(-8px);
}

.visual-card svg {
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.visual-card:hover svg {
  transform: scale(1.1);
}

/* Responsive adjustments for illustrations */
@media (max-width: 768px) {
  .illustration-container {
    max-width: 100%;
    padding: 15px;
  }

  .icon-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
  }

  .feature-icon-large {
    width: 80px;
    height: 80px;
  }

  .section-divider::before {
    font-size: 2rem;
  }
}

/* ============= ENHANCED TEXT STYLING & DECORATIONS ============= */

/* Beautiful paragraph styles */
p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 18px;
  color: var(--text-secondary);
}

p strong {
  color: var(--vortex-green-glow);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 176, 97, 0.3);
}

/* Highlighted text accents */
.text-highlight-purple {
  background: linear-gradient(120deg, rgba(107, 46, 158, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
  padding: 3px 10px;
  border-radius: 6px;
  border-left: 3px solid var(--vortex-purple-glow);
  display: inline-block;
  margin: 5px 0;
  font-weight: 600;
}

.text-highlight-green {
  background: linear-gradient(120deg, rgba(0, 176, 97, 0.3) 0%, rgba(52, 211, 153, 0.3) 100%);
  padding: 3px 10px;
  border-radius: 6px;
  border-left: 3px solid var(--vortex-green-glow);
  display: inline-block;
  margin: 5px 0;
  font-weight: 600;
}

/* Info boxes */
.info-box {
  background: linear-gradient(135deg, rgba(107, 46, 158, 0.15), rgba(26, 26, 46, 0.8));
  border: 2px solid var(--border-purple);
  border-radius: 12px;
  padding: 25px 30px;
  margin: 30px 0;
  box-shadow: 0 0 25px rgba(107, 46, 158, 0.2);
  transition: all 0.3s ease;
}

.info-box:hover {
  border-color: var(--vortex-purple-glow);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
  transform: translateY(-3px);
}

.info-box-green {
  background: linear-gradient(135deg, rgba(0, 176, 97, 0.15), rgba(26, 26, 46, 0.8));
  border: 2px solid var(--border-green);
  border-radius: 12px;
  padding: 25px 30px;
  margin: 30px 0;
  box-shadow: 0 0 25px rgba(0, 176, 97, 0.2);
  transition: all 0.3s ease;
}

.info-box-green:hover {
  border-color: var(--vortex-green-glow);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
  transform: translateY(-3px);
}

.info-box h3, .info-box-green h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--vortex-green-glow);
}

.info-box p, .info-box-green p {
  font-size: 1.15rem;
  line-height: 1.85;
  margin-bottom: 12px;
}

/* Quote blocks */
.quote-block {
  border-left: 5px solid var(--vortex-purple-glow);
  background: rgba(107, 46, 158, 0.1);
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-primary);
  position: relative;
  box-shadow: 0 0 20px rgba(107, 46, 158, 0.15);
}

.quote-block::before {
  content: '"';
  font-size: 4rem;
  color: var(--vortex-purple-glow);
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

/* Key points list */
.key-points {
  background: linear-gradient(135deg, rgba(0, 176, 97, 0.08), rgba(26, 26, 46, 0.5));
  border: 2px solid rgba(0, 176, 97, 0.3);
  border-radius: 12px;
  padding: 30px 35px;
  margin: 30px 0;
}

.key-points h3 {
  color: var(--vortex-green-glow);
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 176, 97, 0.5);
}

.key-points ul {
  list-style: none;
  padding-left: 0;
}

.key-points li {
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.15rem;
  line-height: 1.8;
  position: relative;
}

.key-points li::before {
  content: '▸';
  color: var(--vortex-green-glow);
  font-size: 1.5rem;
  position: absolute;
  left: 10px;
  top: 0;
  text-shadow: 0 0 10px var(--glow-green);
}

/* Warning/Alert boxes */
.warning-box {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(26, 26, 46, 0.8));
  border: 2px solid rgba(255, 107, 107, 0.5);
  border-radius: 12px;
  padding: 25px 30px;
  margin: 30px 0;
  box-shadow: 0 0 25px rgba(255, 107, 107, 0.2);
}

.warning-box h3 {
  color: #FF6B6B;
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-box h3::before {
  content: '⚠';
  font-size: 1.8rem;
}

/* Step-by-step lists */
.step-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

.step-list li {
  counter-increment: step-counter;
  position: relative;
  padding: 20px 25px 20px 80px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, rgba(107, 46, 158, 0.1), rgba(26, 26, 46, 0.6));
  border-left: 4px solid var(--vortex-purple);
  border-radius: 8px;
  font-size: 1.15rem;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.step-list li:hover {
  border-left-color: var(--vortex-purple-glow);
  background: linear-gradient(135deg, rgba(107, 46, 158, 0.15), rgba(26, 26, 46, 0.7));
  transform: translateX(5px);
}

.step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--vortex-purple), var(--vortex-purple-glow));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 0 20px var(--glow-purple);
}

/* Feature highlights inline */
.inline-badge-purple {
  background: linear-gradient(120deg, var(--vortex-purple-dark), var(--vortex-purple));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin: 0 4px;
  box-shadow: 0 0 15px rgba(107, 46, 158, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.inline-badge-green {
  background: linear-gradient(120deg, var(--vortex-green), var(--vortex-green-light));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin: 0 4px;
  box-shadow: 0 0 15px rgba(0, 176, 97, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced section headers */
.section-header-enhanced {
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
}

.section-header-enhanced h2 {
  font-size: 2.8rem;
  background: linear-gradient(120deg, var(--vortex-purple-glow), var(--vortex-green-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-weight: 900;
}

.section-header-enhanced p {
  font-size: 1.3rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Content columns with borders */
.content-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.content-column {
  background: linear-gradient(135deg, rgba(107, 46, 158, 0.08), rgba(26, 26, 46, 0.5));
  border: 2px solid var(--border-purple);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.content-column:hover {
  border-color: var(--vortex-purple-glow);
  box-shadow: 0 0 30px rgba(107, 46, 158, 0.3);
  transform: translateY(-5px);
}

.content-column h3 {
  color: var(--vortex-green-glow);
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px var(--glow-green);
}

.content-column p {
  font-size: 1.1rem;
  line-height: 1.85;
}

/* Emphasis text */
.emphasis {
  color: var(--vortex-green-glow);
  font-weight: 700;
  font-size: 1.15em;
  text-shadow: 0 0 10px rgba(0, 176, 97, 0.4);
}

/* Tech term highlighting */
.tech-term {
  color: var(--vortex-purple-glow);
  font-family: 'Michroma', monospace;
  font-weight: 600;
  padding: 2px 6px;
  background: rgba(107, 46, 158, 0.15);
  border-radius: 4px;
  font-size: 0.95em;
}


/* ========== ENHANCED LIST STYLES ========== */

/* Feature list with icons */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  position: relative;
  padding: 20px 20px 20px 70px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(107, 46, 158, 0.1), rgba(26, 26, 46, 0.3));
  border-left: 4px solid var(--vortex-purple-glow);
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  border-left-color: var(--vortex-green-glow);
  background: linear-gradient(135deg, rgba(0, 176, 97, 0.1), rgba(26, 26, 46, 0.3));
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(107, 46, 158, 0.3);
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--vortex-green-glow);
  text-shadow: 0 0 15px var(--glow-green);
}

.feature-list li strong {
  color: var(--vortex-green-glow);
  font-size: 1.15rem;
  text-shadow: 0 0 10px rgba(0, 176, 97, 0.3);
}

/* Checkmark list (for completed items) */
.checkmark-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.checkmark-list li {
  position: relative;
  padding: 18px 18px 18px 60px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, rgba(0, 176, 97, 0.08), rgba(26, 26, 46, 0.3));
  border-left: 3px solid var(--vortex-green-glow);
  border-radius: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.checkmark-list li:hover {
  background: linear-gradient(135deg, rgba(0, 176, 97, 0.15), rgba(26, 26, 46, 0.4));
  transform: translateX(5px);
}

.checkmark-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vortex-green-glow);
  text-shadow: 0 0 10px var(--glow-green);
}

/* Number list (ordered list) */
.number-list {
  list-style: none;
  counter-reset: number-counter;
  padding: 0;
  margin: 30px 0;
}

.number-list li {
  position: relative;
  padding: 20px 20px 20px 80px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(26, 26, 46, 0.3));
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
  transition: all 0.3s ease;
  counter-increment: number-counter;
}

.number-list li:hover {
  border-color: var(--vortex-purple-glow);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}

.number-list li::before {
  content: counter(number-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vortex-purple), var(--vortex-purple-glow));
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* Bullet list with purple theme */
.purple-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.purple-list li {
  position: relative;
  padding: 15px 15px 15px 45px;
  margin-bottom: 12px;
  background: rgba(107, 46, 158, 0.05);
  border-left: 3px solid var(--vortex-purple-glow);
  border-radius: 6px;
  font-size: 1.05rem;
  line-height: 1.6;
  transition: all 0.2s ease;
}

.purple-list li:hover {
  background: rgba(107, 46, 158, 0.12);
  padding-left: 50px;
}

.purple-list li::before {
  content: "▸";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--vortex-purple-glow);
}

/* Warning/Alert list */
.warning-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.warning-list li {
  position: relative;
  padding: 18px 18px 18px 60px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(26, 26, 46, 0.3));
  border-left: 4px solid #EF4444;
  border-radius: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.warning-list li:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(26, 26, 46, 0.4));
}

.warning-list li::before {
  content: "⚠";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #EF4444;
  filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

/* Grid list (2 columns) */
.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.grid-list li {
  padding: 20px;
  background: linear-gradient(135deg, rgba(107, 46, 158, 0.08), rgba(26, 26, 46, 0.4));
  border: 2px solid rgba(168, 85, 247, 0.2);
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.grid-list li:hover {
  border-color: var(--vortex-purple-glow);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
}

.grid-list li strong {
  display: block;
  color: var(--vortex-green-glow);
  font-size: 1.15rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 176, 97, 0.3);
}

/* Enhanced default ul and ol styling */
ul:not([class]),
ol:not([class]) {
  margin: 20px 0;
  padding-left: 30px;
}

ul:not([class]) li,
ol:not([class]) li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #D1D5DB;
}

ul:not([class]) li::marker {
  color: var(--vortex-green-glow);
  font-size: 1.3em;
}

ol:not([class]) li::marker {
  color: var(--vortex-purple-glow);
  font-weight: 700;
}
