/*
 Theme Name:   Koraxon
 Template:     astra
 Version:      1.0.0
*/

/* Font Awesome is loaded via functions.php - no need to import here */

/* ========================================
   CSS RESET - Override WordPress/Astra Defaults
   ======================================== */

/* Reset form elements to remove WordPress/Astra defaults */
/* Using higher specificity instead of !important */

/* Override Astra's form styles with higher specificity */
input[type="text"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="password"], 
input[type="search"], 
input[type="reset"], 
input[type="tel"], 
input[type="date"], 
input[type="date"], 
input[type="radio"],
input[type="range"],
input[type="color"],
input[type="file"],
input[type="time"],
input[type="datetime-local"],
body select, 
body textarea {
    height: auto;
    width: auto;
    font-size: inherit;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: inherit;
    box-sizing: border-box;
    transition: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Override Astra's specific height rule */
input[type="text"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="password"], 
input[type="search"], 
input[type="reset"], 
input[type="tel"], 
input[type="date"], 
input[type="radio"],
input[type="range"],
input[type="color"],
input[type="file"],
input[type="time"],
input[type="datetime-local"],
body select {
    height: auto;
}

/* Override Astra's specific font and padding rules */
input[type="text"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="password"], 
input[type="search"], 
input[type="reset"], 
input[type="tel"], 
input[type="date"], 
body select, 
body textarea {
    font-size: inherit;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    width: auto;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
}

button:hover, button:focus, button:active, button:focus-visible,
input[type="text"]:hover, input[type="text"]:focus, input[type="text"]:active, input[type="text"]:focus-visible,
input[type="email"]:hover, input[type="email"]:focus, input[type="email"]:active, input[type="email"]:focus-visible,
input[type="number"]:hover, input[type="number"]:focus, input[type="number"]:active, input[type="number"]:focus-visible,
input[type="url"]:hover, input[type="url"]:focus, input[type="url"]:active, input[type="url"]:focus-visible,
input[type="password"]:hover, input[type="password"]:focus, input[type="password"]:active, input[type="password"]:focus-visible,
input[type="search"]:hover, input[type="search"]:focus, input[type="search"]:active, input[type="search"]:focus-visible,
input[type="reset"]:hover, input[type="reset"]:focus, input[type="reset"]:active, input[type="reset"]:focus-visible,
input[type="radio"]:hover, input[type="radio"]:focus, input[type="radio"]:active, input[type="radio"]:focus-visible,
input[type="range"]:hover, input[type="range"]:focus, input[type="range"]:active, input[type="range"]:focus-visible,
input[type="color"]:hover, input[type="color"]:focus, input[type="color"]:active, input[type="color"]:focus-visible,
input[type="file"]:hover, input[type="file"]:focus, input[type="file"]:active, input[type="file"]:focus-visible,
input[type="time"]:hover, input[type="time"]:focus, input[type="time"]:active, input[type="time"]:focus-visible,
input[type="datetime-local"]:hover, input[type="datetime-local"]:focus, input[type="datetime-local"]:active, input[type="datetime-local"]:focus-visible,
textarea:hover, textarea:focus, textarea:active, textarea:focus-visible,
a:hover, a:focus, a:active, a:focus-visible{
    outline: unset;
    box-shadow: unset;
    border: unset;
    background: unset;
    color: unset;
    text-decoration: unset;
}

/* Override any remaining Astra form styles */
body .ast-form-styles input,
body .ast-form-styles select,
body .ast-form-styles textarea,
body .ast-form-styles button {
    height: auto;
    width: auto;
    font-size: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: inherit;
}

/* Override WordPress core form styles */
body .wp-core-ui input,
body .wp-core-ui select,
body .wp-core-ui textarea,
body .wp-core-ui button {
    height: auto;
    width: auto;
    font-size: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: inherit;
}

body.koraxon-theme{
    background-color: #0a0a0a;
}

/* Timeline Animations - GPU Accelerated */
.title-section {
    margin-bottom: 3rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 0.4s;
    height: 100px;
}

.cta-section {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 0.8s;
}

/* Noise in background */
.noise-bg {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Subtle noise overlay */
.noise-overlay {
    position: relative;
}

.noise-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Noise with different intensities */
.noise-light {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
}

.noise-medium {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.noise-heavy {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
}

/* Responsive Background Image Adjustments */
@media (max-width: 600px) {
    /* Mobile: Increase the background image area to show more effect */
    .hero svg rect[fill="url(#pattern1_2362_5430)"] {
        /* width: 2000px !important;
        height: 1200px !important;
        y: -150px !important; */
        width: 2000px !important;
        height: 1200px !important;
        y: -700px !important;
        x: -600px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    /* Tablet: Moderate increase in background image area */
    .hero svg rect[fill="url(#pattern1_2362_5430)"] {
        width: 1800px !important;
        height: 1100px !important;
        y: -400px !important;
    }
}

/* Reset and base styles */
html, body {
    margin: 0;
    padding: 0;
    /* height: 100vh; */
    /* overflow: hidden; */
    font-family: 'Inter', sans-serif;
    box-sizing: content-box;
}

.koraxon-header {
    position: sticky;
    top: 0px;
    z-index: 999;
    height:80px;
    background-color: transparent;
    border-bottom: none;
    padding: 5px 40px;
    padding-top:30px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  .koraxon-header.scrolled {
    /* background-color: rgba(14, 16, 20, 0.95);
    backdrop-filter: blur(10px); */
    background-color: rgba(14, 16, 20, 0.25);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    top: -20px;
  }
  
  .koraxon-header.scrolled {
    /* background-color: rgba(14, 16, 20, 0.95);
    backdrop-filter: blur(10px); */
    background-color: rgba(14, 16, 20, 0.25);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    top: -20px;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Logo */
  .logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  
  /* Logo Icon Styles */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: relative;
    top: 0px;
    /* transform: scale(2); */
}
.logo-icon{
    background-image: url(./static/logo.svg);
    /* transform: scale(1); */
    /* top: 0px; */
    background-size: contain;
    background-color: transparent;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
  
  .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #D1FF00;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(209, 255, 0, 0.5);
  }
  
  /* Main Menu Navigation */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  }
  
  .nav-links li a:hover {
    color: #D1FF00;
    text-shadow: 0 0 12px rgba(209, 255, 0, 0.6);
  }
  
  .nav-links li a.active {
    color: #D1FF00;
    text-shadow: 0 0 12px rgba(209, 255, 0, 0.6);
  }
  
  .nav-links li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #d1ff0073;
    transform: scaleX(1);
    transition: transform 0.3s ease-out;
    box-shadow: 0 0 10px rgba(209, 255, 0, 0.8);
  }
  .nav-links .dropdown-menu li a{
    padding: 5px;
  }
  
  /* Dropdown for Sources */
  .dropdown {
    position: relative;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
  }
  
  .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(14, 16, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu li {
    list-style: none;
    padding: 2px 5px;
    border-bottom: 1px solid #8b8b8b40;
    box-sizing: content-box;
    overflow: hidden;
  }
  .dropdown-menu li:last-child {
    border-bottom: none;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #e5e7eb;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .dropdown-menu a:hover {
    background: rgba(209, 255, 0, 0.1);
    color: #D1FF00;
  }
  
  /* Right-side icons and button */
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .header-icons {
    display: flex;
    gap: 16px;
  }
  
  .icon-link {
    color: #9ca3af;
    font-size: 20px;
    transition: color 0.3s;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  }
  
  .icon-link:hover {
    color: #D1FF00;
    text-shadow: 0 0 12px rgba(209, 255, 0, 0.6);
  }
  
  .btn-open-app {
    background-color: #D1FF00;
    color: #0e1014;
    padding: 6px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(209, 255, 0, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .btn-open-app:hover {
    background-color: #aaff00;
    color: #000;
    box-shadow: 0 0 25px rgba(209, 255, 0, 0.8), 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
  }
  
  .btn-open-app i {
    font-size: 14px;
  }

  /* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
  }
  
  .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #D1FF00;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }


html, body, .hero-wrapper { height:auto; max-height:none; }
.hero-wrapper {
    position: relative;
    top:-80px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    box-sizing: border-box;
}
.hero {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* fallback color */
  position: relative;
  background-image: url('./static/main-bg-min-600.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (min-width: 600px) {
    .hero{
        background-image: url('./static/main-bg-min-1200.PNG');
    }
}
@media (min-width: 1100px) {
    .hero{
        background-image: url('./static/main-bg-min.PNG');
    }
}

/* SVG background styles */
.hero svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  display: block;
  will-change: auto;
  transform: translateZ(0); /* Force GPU acceleration */
  backface-visibility: hidden; /* Prevent flickering */
  perspective: 1000px; /* Optimize 3D transforms */
}

/* Content Overlay */
.content-overlay {
  position: absolute;
  top: -130px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 2rem;
  box-sizing: border-box;
}

/* Statistics Section */
.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  opacity:0;
  transition: opacity 1s ease-out;
  transition-delay: 1s;
}
.hero-wrapper.particles-started .stats-section{
  opacity:1; 
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.stat-icon {
  font-size: 1.2rem;
  color: #cccccc;
  opacity: 0.8;
}

.stat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  color: #f0f0f0;
}

.stat-label {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 700;
}

/* Title Section */
.title-section {
  text-align: center;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.title-svg {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.title-text {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 600;
  stroke: #e0e0e0;
  stroke-width: 0.5;
  paint-order: stroke fill;
}

.title-glow {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 600;
  fill: #00ff00;
  opacity: 0.3;
  pointer-events: none;
}


/* Call to Action Section */
.cta-section {
  text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 300;
    line-height: 1.3rem;
    font-weight: 600;
    text-shadow: 0 1px 1px rgb(0 0 0), 0 -1px 1px rgb(0 0 0);
    max-width: 500px;
}
.cursor-animation {
    position: absolute;
    right: -110px;
    top: 10px;
    width: 200px;
    height: 100%;
    z-index: 1;
    opacity:0;
    transform: translate(60%, 80%);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 1s;
}
@media (max-width:1024px) {
    .cursor-animation{
        right: -100px;
        top: 10px;
        transform: translate(40%, 80%);
    }
}
@media (max-width: 768px) {
    .cursor-animation{
        right: -70px;
        top: 40px;
        transform: translate(30%, 80%);
    }
}
@media (max-width: 600px) {
    .cursor-animation{
        right: -10px;
        top: 60px;
        transform: translate(30%, 80%);
    }
}
.cursor-animation img{
    overflow: visible;
    width: 100%;
    height: 120px;
}
.box-animate-started .cursor-animation{
    opacity:1;
    transform: translate(0);
  }
/* canvas styles */

.particle-canvas {
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    -webkit-transform: translateX(-50%) translateZ(0);
    pointer-events: none;
    /* Advanced performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Hardware acceleration */
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    /* Reduce canvas size on mobile for better performance */
}
.box-animate-started .title-section{
  opacity:1;
  transform: translateY(0);
}
.box-animate-started .cta-section{
  opacity:1;
  transform: translateY(0);
}

/* Static Particles Layer */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
  }
  .features-section .particles-container{
    position: absolute;
    opacity: 0.5;
  }
  
  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  .particle:nth-child(1) { top: 15%; left: 10%; width: 3px; height: 3px; }
  .particle:nth-child(2) { top: 25%; left: 25%; width: 2px; height: 2px; }
  .particle:nth-child(3) { top: 35%; left: 45%; width: 4px; height: 4px; }
  .particle:nth-child(4) { top: 20%; left: 65%; width: 2px; height: 2px; }
  .particle:nth-child(5) { top: 40%; left: 80%; width: 3px; height: 3px; }
  .particle:nth-child(6) { top: 55%; left: 15%; width: 5px; height: 5px; }
  .particle:nth-child(7) { top: 65%; left: 35%; width: 2px; height: 2px; }
  .particle:nth-child(8) { top: 75%; left: 55%; width: 4px; height: 4px; }
  .particle:nth-child(9) { top: 45%; left: 70%; width: 3px; height: 3px; }
  .particle:nth-child(10) { top: 85%; left: 25%; width: 2px; height: 2px; }
  .particle:nth-child(11) { top: 30%; left: 85%; width: 4px; height: 4px; }
  .particle:nth-child(12) { top: 70%; left: 85%; width: 3px; height: 3px; }
  .particle:nth-child(13) { top: 10%; left: 50%; width: 5px; height: 5px; }
  .particle:nth-child(14) { top: 50%; left: 5%; width: 2px; height: 2px; }
  .particle:nth-child(15) { top: 90%; left: 45%; width: 4px; height: 4px; }
  .particle:nth-child(16) { top: 5%; left: 75%; width: 3px; height: 3px; }
  .particle:nth-child(17) { top: 60%; left: 95%; width: 2px; height: 2px; }
  .particle:nth-child(18) { top: 80%; left: 10%; width: 5px; height: 5px; }
  .particle:nth-child(19) { top: 95%; left: 65%; width: 3px; height: 3px; }
  .particle:nth-child(20) { top: 15%; left: 90%; width: 4px; height: 4px; }
  .particle:nth-child(21) { top: 35%; left: 5%; width: 2px; height: 2px; }
  .particle:nth-child(22) { top: 70%; left: 65%; width: 3px; height: 3px; }
  .particle:nth-child(23) { top: 25%; left: 40%; width: 5px; height: 5px; }
  .particle:nth-child(24) { top: 55%; left: 85%; width: 2px; height: 2px; }
  .particle:nth-child(25) { top: 85%; left: 35%; width: 4px; height: 4px; }
  .particle:nth-child(26) { top: 45%; left: 20%; width: 3px; height: 3px; }
  .particle:nth-child(27) { top: 65%; left: 75%; width: 2px; height: 2px; }
  .particle:nth-child(28) { top: 20%; left: 30%; width: 5px; height: 5px; }
  .particle:nth-child(29) { top: 75%; left: 45%; width: 3px; height: 3px; }
  .particle:nth-child(30) { top: 40%; left: 60%; width: 4px; height: 4px; }
  .particle:nth-child(31) { top: 12%; left: 15%; width: 2px; height: 2px; }
  .particle:nth-child(32) { top: 28%; left: 35%; width: 4px; height: 4px; }
  .particle:nth-child(33) { top: 42%; left: 55%; width: 3px; height: 3px; }
  .particle:nth-child(34) { top: 18%; left: 75%; width: 5px; height: 5px; }
  .particle:nth-child(35) { top: 38%; left: 85%; width: 2px; height: 2px; }
  .particle:nth-child(36) { top: 58%; left: 18%; width: 4px; height: 4px; }
  .particle:nth-child(37) { top: 68%; left: 38%; width: 3px; height: 3px; }
  .particle:nth-child(38) { top: 78%; left: 58%; width: 5px; height: 5px; }
  .particle:nth-child(39) { top: 48%; left: 72%; width: 2px; height: 2px; }
  .particle:nth-child(40) { top: 88%; left: 28%; width: 4px; height: 4px; }
  .particle:nth-child(41) { top: 32%; left: 88%; width: 3px; height: 3px; }
  .particle:nth-child(42) { top: 72%; left: 88%; width: 5px; height: 5px; }
  .particle:nth-child(43) { top: 8%; left: 52%; width: 2px; height: 2px; }
  .particle:nth-child(44) { top: 52%; left: 8%; width: 4px; height: 4px; }
  .particle:nth-child(45) { top: 92%; left: 48%; width: 3px; height: 3px; }
  .particle:nth-child(46) { top: 7%; left: 78%; width: 5px; height: 5px; }
  .particle:nth-child(47) { top: 62%; left: 98%; width: 2px; height: 2px; }
  .particle:nth-child(48) { top: 82%; left: 12%; width: 4px; height: 4px; }
  .particle:nth-child(49) { top: 97%; left: 68%; width: 3px; height: 3px; }
  .particle:nth-child(50) { top: 17%; left: 92%; width: 5px; height: 5px; }

/* Mobile optimizations */
@media (max-width: 768px) {
    /* Hide particle canvas on mobile/tablet */
    /* .particle-canvas {
        display: none !important;
    } */
    
    .content-overlay{
        gap: 0px;
    }
    .stat-text{
        align-items: center;
    }
    .stats-section{
        width: 100%;
        justify-content: space-around;
    }
    .main-menu{
        display: none;
    }
    .koraxon-header{
        padding: 0px 10px;
        padding-top: 30px;
    }
    .particle-canvas {
        width: 220px;
        height: 280px; /* Keep height visible */
        bottom: 40px;
    }
    
    .stats-section {
        gap: 2rem;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .content-overlay{
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .particle-canvas {
        width: 200px;
        height: 250px; /* Keep height visible */
        bottom: 40px;
    }
    
    .stats-section {
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        position: relative;
    }

    .stat-label:after{
        display: none;
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, #DEFA39, transparent);
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
}

/* Low-end device optimizations */
@media (max-width: 320px) {
    .particle-canvas {
        width: 150px;
        height: 220px; /* Keep height visible */
        bottom: 40px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
  /* Optimize hero background for mobile */
  .hero {
    background-attachment: scroll; /* Better mobile performance */
    background-size: cover;
    background-position: center;
  }
  
  /* Optimize hero SVG for mobile performance */
  .hero svg {
    width: 100%;
    height: 100%;
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

/* Additional responsive breakpoints */
@media (max-width: 480px) {
  .hero {
    height: 100%;
  }
  
  .hero svg {
    width: 100%;
    height: 100%;
  }

  .stat-number{
    margin-bottom: 0px;
  }
  .logo-text{
    font-size: 18px;
  }
}

/* Ensure SVG maintains aspect ratio while covering full area */
@media (min-width: 769px) {
  .hero svg {
    width: 100%;
    height: 100%;
  }
} 

/* Animation System - Desktop Optimized */
.anim_fade {
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.3, 1.84);
    transform: translateZ(0); /* Force GPU acceleration */
}

.anim_fade.anim_active {
    opacity: 1;
}

/* Fade Up Animation */
.anim_fade_up {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    will-change: opacity, transform;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.3, 1.84);
}

.anim_fade_up.anim_active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

/* Fade Down Animation */
.anim_fade_down {
    opacity: 0;
    transform: translateY(-30px) translateZ(0);
    will-change: opacity, transform;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.3, 1.84);
}

.anim_fade_down.anim_active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

/* Fade Right Animation */
.anim_fade_right {
    opacity: 0;
    transform: translateX(-50px) translateZ(0);
    will-change: opacity, transform;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.3, 1.84);
}

.anim_fade_right.anim_active {
    opacity: 1;
    transform: translateX(0) translateZ(0);
}

/* Fade Left Animation */
.anim_fade_left {
    opacity: 0;
    transform: translateX(50px) translateZ(0);
    will-change: opacity, transform;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.3, 1.84);
}

.anim_fade_left.anim_active {
    opacity: 1;
    transform: translateX(0) translateZ(0);
}

/* Scale Animation */
.anim_fade_scale {
    opacity: 0;
    transform: scale(0.8) translateZ(0);
    will-change: opacity, transform;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.3, 1.84);
}

.anim_fade_scale.anim_active {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

/* Delay Classes */
.anim_delay_1 {
    transition-delay: 0.1s;
}

.anim_delay_2 {
    transition-delay: 0.2s;
}

.anim_delay_3 {
    transition-delay: 0.3s;
}

.anim_delay_4 {
    transition-delay: 0.3s;
}

.anim_delay_5 {
    transition-delay: 0.4s;
}

.anim_delay_6 {
    transition-delay: 0.5s;
}

.anim_delay_7 {
    transition-delay: 0.6s;
}

.anim_delay_8 {
    transition-delay: 0.7s;
}

.anim_delay_9 {
    transition-delay: 0.8s;
}

.anim_delay_10 {
    transition-delay: 0.9s;
}

/* Responsive Animation Adjustments */
@media (max-width: 768px) {
    /* Disable complex animations on mobile for better performance */
    /* .anim_fade_up,
    .anim_fade_down,
    .anim_fade_right,
    .anim_fade_left,
    .anim_fade_scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    } */
    
    /* Keep only simple fade animations on mobile */
    .anim_fade {
        opacity: 0;
        transition: opacity 0.3s ease-out;
    }
    
    .anim_fade.anim_active {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .anim_fade_up {
        transform: translateY(20px);
    }
    
    .anim_fade_down {
        transform: translateY(-20px);
    }
} 

/* App Section Styles */
.app-section {
    background-color: #0a0a0a;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    top: -80px;
}

.app-section-bg {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.features-section .app-section-bg{
    top: 200px;
    left:0;
}
.app-section2 .app-section-bg{
    top: -10%;
    right: 10%;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column - Text Content */
.app-text-content {
    color: white;
    padding: 10px;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.app-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    margin:0;
    margin-bottom: 20px;
    color: #08d374;
    background: linear-gradient(135deg, #DEFA39 0%, #0dd874 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.app-description {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #b0b0b0;
    max-width: 500px;
}

.app-cta-btn {
    background-color: #d1ff02;
    color: #0e1014;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    position: relative;
    left: calc(50% - 130px);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(222, 250, 57, 0.3);
}

.app-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(222, 250, 57, 0.4);
    color: #0e1014;
    background-color: #95ee4d;
    border-color: unset;
}

/* Right Column - App Image */
.app-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Hide particle canvas on tablets */
    /* .particle-canvas {
        display: none !important;
    } */
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .app-section2 .app-content{
        display: flex;
        flex-direction: column-reverse;
    }
    
    .app-text-content {
        text-align: center;
    }
    
    .app-tagline {
        font-size: 3rem;
    }
    .app-description{
        margin: auto;
        margin-bottom: 40px;
    }
    .app-cta-btn{
        left:0;
    }
    .app-section{
        padding: 40px 0;
    }
    .app-image-container{
        left:-50px;
    }
    .app-section2 .app-image-container{
        left: auto;
        right: -50px;
    }
}

@media (max-width: 768px) {
    .app-section {
        padding: 40px 0;
    }
    
    .app-title {
        font-size: 1.2rem;
    }
    
    .app-tagline {
        font-size: 2.5rem;
    }
    
    .app-image {
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    /* Mobile: Make SVG title text wrap to 2 lines */
    .title-text {
        font-size: 2.5rem !important;
    }
    
    /* Adjust SVG viewBox for better text wrapping */
    .title-svg {
        min-width: 500px !important;
        width: 500px !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .app-tagline {
        font-size: 2rem;
    }
    
    .app-image {
        max-width: 300px;
    }
} 

/* Features Section Styles */
.features-section {
    background-color: #0a0a0a;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    top:-80px;
}

/* Section Header */
.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-top:15px;
}

.features-title .highlight {
    background: linear-gradient(135deg, #f0f0f0 0%, #9b9b9b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

/* Feature Cards */
.feature-card {
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    position: relative;
    height: 200px;
    width: 300px;
    min-width: 300px;
    margin: 15px;
    left: 0;
}

.feature-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    opacity: 1;
}
.feature-box-hover{
    position: absolute;
    top: 0;
    left: 7.5px;
    width: 305px;
    border-radius: 20px;
    height: 100%;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: -1.5px -2px 3px #76842a6b;
}
.feature-box-hover:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: linear-gradient(to bottom, #d1ff025c, transparent);
}
.feature-card:hover .feature-box-hover{
    opacity:1;
}
.feature-box-inside{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}
.feature-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    opacity: 1;
}
.feature-box-bg img{
    width: 100%;
    height: 100%;
}

/* Coming Soon Label */
.coming-soon-label {
    position: absolute;
    top: 20px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #defa39;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

/* Feature Icons */
.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 3;
    margin-top: 30px;
    left: 25px;
}

.feature-icon i {
    font-size: 2.3rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
}
.feature-icon.feature-icon-dollar {
    left: 29px;
}

/* Feature Content */
.feature-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: left;
    position: relative;
    z-index: 3;
    margin-top: 20px;
}

.feature-description {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 3;
}
.feature-icon{
    left: 24px;
    top: -15px;
}
.feature-title{
    margin-top: 18px;
    font-size: 0.8rem;
    padding: 0 15px;
}
.feature-description{
    font-size: 0.7rem;
    padding: 0 15px;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .app-content{
        gap: 20px;
    }
    .features-section {
        padding: 40px 0;
    }
    
    .features-header {
        margin-bottom: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    
} 

/* Title Text Styles */
.title-text {
    font-size: 3.8rem;
    font-weight: 700;
    text-anchor: middle;
}

.title-text-mobile {
    font-size: 3.8rem;
    font-weight: 700;
    text-anchor: middle;
    display: none;
}

@media (max-width: 600px) {
    /* Mobile: Hide desktop version, show mobile version */
    .header-icons{
        display: none;
    }
    .title-text {
        display: none;
    }
    
    .title-text-mobile {
        display: block;
    }
    .box-animate-started .cta-section{
        display: none;
    }
    .content-overlay{
        flex-direction: column-reverse;
    }
    .stats-section{
        flex-direction: column;
        gap: 1rem;
    }
    .stat-text{
        flex-direction: row;
    }
    .stat-number{
        margin-bottom: 0;
        margin-right: 10px;
    }
    .hero-wrapper.particles-started .stats-section{
        gap: 0.8rem;
    }
    .app-section{
        padding: 60px 0;
    }
    .app-text-content{
        text-align: left;
        max-width: 100vw;
        padding-right: 120px;
    }
    .app-description{
        margin-bottom: 0px;
    }
    .app-title {
        font-size: 1rem;
    }
    .app-tagline {
        font-size: 2rem;
        max-width: 300px;
    }
    .dao-community-section .app-tagline{
        max-width: 100%;
    }
    .app-section2 .app-tagline{
        max-width: 100%;
    }
    .app-section2 .app-text-content{
        padding-right: 0;
    }
    .app-content{
        gap: 20px;
    }
    .app-image-container{
        left: auto;
        right: -20px;
        width: 100%;
    }
    .app-image {
        max-width: 470px;
        width: 470px;
    }
    .app-cta-btn {
        left: 0;
        margin-top: 20px;
    }
    .features-header{
        display: none;
    }
    .anim_delay_1, .anim_delay_2, .anim_delay_3, .anim_delay_4, .anim_delay_5, .anim_delay_6, .anim_delay_7, .anim_delay_8, .anim_delay_9, .anim_delay_10{
        transition-delay: 0.1s;
    }
    .features-section{
        padding: 30px 0;
    }
    .feature-box-bg img{
        width: 100%;
        height: 100%;
    }
    .app-section2 {
        padding: 10px 0;
    }
    .app-section2 .app-content{
        display: flex;
        flex-direction: column-reverse;
    }
    .app-section2 .app-image-container{
        left:-50px;
        right: auto;
    }
} 

@media (max-width:420px) {
    .content-overlay{
        top: -120px;
        gap:30px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-icon {
    display: flex;
    flex-wrap: wrap;
    width: 20px;
    height: 20px;
    gap: 2px;
    position: relative;
    top: 3px;
}

.menu-icon span {
    width: 8px;
    height: 8px;
    background: #d1ff02;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  will-change: transform;
  transform: translateX(100%) translateZ(0);
  max-width: 320px;
  height: calc(100vh - 90px);
  background: rgba(14, 16, 20, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.mobile-menu-overlay.active {
    transform: translateX(0) translateZ(0);
}

/* Dark overlay behind mobile menu */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo .logo-text {
    color: #DEFA39;
    font-weight: 600;
    font-size: 1.2rem;
}

.mobile-menu-close {
    cursor: pointer;
}

.mobile-menu-close .menu-icon {
    transform: rotate(45deg);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 250px);
}
.mobile-menu-nav::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-nav::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.mobile-menu-nav::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #365d32 0%, #DEFA39 50%, #365d32 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #DEFA39 0%, #365d32 50%, #DEFA39 100%);
    box-shadow: 0 0 10px rgba(222, 250, 57, 0.4);
    transform: scaleX(1.2);
}

.mobile-menu-nav::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox Scrollbar */
.mobile-menu-nav {
    scrollbar-width: thin;
    scrollbar-color: #defa3940 transparent;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    margin-bottom: 2px;
}

.mobile-menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.mobile-menu-nav a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.mobile-menu-nav a:hover {
    color: #DEFA39;
    padding-left: 5px;
}

.mobile-menu-nav a:hover i {
    transform: scale(1.1);
}

.mobile-menu-nav a.active {
    color: #d1ff02;
    background-color: #d1ff0240;
    padding-left: 5px;
}

.mobile-menu-nav .arrow {
    /* color: #DEFA39; */
    font-weight: bold;
    margin-left:20px;
}

/* Mobile Submenu Section */
.mobile-submenu-section {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-submenu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-submenu-section li {
    margin: 0;
    padding: 0;
}

.mobile-submenu-section a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    border-bottom: none;
}

.mobile-submenu-section a:hover {
    color: #DEFA39;
    background: rgba(222, 250, 57, 0.1);
}

.mobile-submenu-section a.active {
    color: #DEFA39;
    background: rgba(222, 250, 57, 0.15);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.mobile-menu-footer p {
    color: #b0b0b0;
    font-size: 0.5rem;
    margin: 5px 0;
    text-align: center;
}

/* Show mobile menu toggle on small screens */
@media (max-width: 1050px) {
    .main-menu{
        display: none;
    }
    .koraxon-header{
        padding: 0px 10px;
        padding-top: 30px;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .koraxon-header {
        justify-content: space-between;
    }
}
@media (max-width: 600px) {
    .mobile-menu-toggle {
        display: block;
    }
    .koraxon-header {
        justify-content: space-between;
    }
}

/* Partners Section */
.partners-section {
    padding: 20px 0;
    position: relative;
    background-color: #0a0a0a;
    top: -80px;
}
.partners-section .container{
    max-width: unset;
    margin: 0 auto;
    padding: 0;
}
.partners-content:after{
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 100%;
    height: 40%;
    background: #0a0a0a9e;
    z-index: 0;
    filter: blur(100px);
    pointer-events: none;
}

.partners-content {
    background: #DEFA39;
    padding: 150px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partners-logos::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.partners-logos:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

/* Circle Logo */
.logo-circle {
    width: 60px;
    height: 60px;
    border: 3px solid black;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-line {
    width: 40px;
    height: 3px;
    background: black;
    border-radius: 2px;
}

/* MetaMask Logo */
.metamask-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: black;
}

.metamask-logo .meta {
    font-size: 1.4rem;
    line-height: 1;
}

.metamask-logo .mask {
    font-size: 1.2rem;
    line-height: 1;
}

/* Star Logo */

/* Partners Page Styles */
.partners-page {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.partners-page .partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-page .partners-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
    background: linear-gradient(135deg, #24e06ba3, #defa39ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 320px;
    margin: auto;
}

.partners-page .partners-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.partners-page .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-page .partner-item {
    background: linear-gradient(135deg, #defa39c2, #defa395c);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-page .partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.partners-page .partner-logo-container {
    margin-bottom: 20px;
}

.partners-page .partner-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #DEFA39;
    text-shadow: 0px 0px 7px black;
    margin: 0;
}

.partners-page .no-partners {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #8B9CA8;
    font-size: 1.1rem;
}

/* Responsive Design for Partners */
@media (max-width: 768px) {
    .partners-logos {
        gap: 40px;
        padding: 15px 0;
    }
    
    .partners-page .partners-title {
        font-size: 2rem;
    }
    
    .partners-page .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .partners-page .partner-item {
        padding: 20px;
    }
}
.logo-star {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-star svg {
    width: 50px;
    height: 50px;
}
.partner-logo-box{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    position: relative;
    z-index: 5;
}
.partner-logo-box svg{
    height: 100%;
    pointer-events: none;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .partners-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    
    .partners-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .partners-logos {
        gap: 40px;
    }
    
    .partner-logo {
        min-width: 100px;
    }
}

@media (max-width: 600px) {
    .partners-logos {
        gap: 30px;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .partners-content{
        padding: 80px 40px;
    }
    .partners-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .partners-logos {
        gap: 30px;
        flex-direction: column;
    }
    
    .partner-logo {
        min-width: 80px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-line {
        width: 30px;
    }
    
    .metamask-logo .meta {
        font-size: 1.2rem;
    }
    
    .metamask-logo .mask {
        font-size: 1rem;
    }
    
    .logo-star svg {
        width: 40px;
        height: 40px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #0a0a0a;
    position: relative;
    top: -80px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #7c7c7c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ffffff1f;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(246 246 246 / 20%) 0%, transparent 70%);
    pointer-events: none;
}
.faq-item::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20px;
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, transparent, #c3c3c3b8, transparent);
    pointer-events: none;
}
.faq-item.active::after {
    background: linear-gradient(to right, transparent, #d1ff02, transparent);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin: 0 !important;
    flex: 1;
    text-shadow: 1px 1px 1px #d1ff029c;
}

/* Override any inline styles from TinyMCE */
.faq-question h3 span,
.faq-question h3 p {
    font-size: inherit !important;
    color: inherit !important;
    font-family: inherit !important;
    background-color: transparent !important;
}

.faq-answer-content > span,
.faq-answer-content > p,
.faq-answer-content > span > p,
.faq-answer-content > p > span,
.faq-answer-content > span > span,
.faq-answer-content li, .faq-answer-content li > span,
.faq-answer-content strong, .faq-answer-content strong > span {
    font-size: 0.75rem !important;
    color: #e6e6e6ad !important;
    font-family: inherit !important;
    background-color: transparent !important;
    text-align: justify !important;
}

article.faq-single-item .faq-single-answer > span,
article.faq-single-item .faq-single-answer > p,
article.faq-single-item .faq-single-answer > span > p,
article.faq-single-item .faq-single-answer > p > span,
article.faq-single-item .faq-single-answer > span > span,
article.faq-single-item .faq-single-answer li, article.faq-single-item .faq-single-answer li > span,
article.faq-single-item .faq-single-answer strong, article.faq-single-item .faq-single-answer strong > span {
    font-size: 1rem !important;
    color: #e6e6e6ad !important;
    font-family: inherit !important;
    background-color: transparent !important;
    text-align: justify !important;
}

article.faq-single-item h1 * {
    font-size: 2rem !important;
    color: #bababa !important;
}
article.faq-single-item h2 * {
    font-size: 1.5rem !important;
    color: #bababa !important;
}
article.faq-single-item h3 * {
    font-size: 1.25rem !important;
    color: #bababa !important;
}
article.faq-single-item h4 * {
    font-size: 1rem !important;
    color: #bababa !important;
}
article.faq-single-item h5 * {
    font-size: 0.75rem !important;
    color: #bababa !important;
}
article.faq-single-item h6 * {
    font-size: 0.5rem !important;
    color: #bababa !important;
}

.faq-arrow {
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

/* Arrow hover effects */
.faq-question:hover .faq-arrow {
    color: #d1ff02;
}

.faq-item.active .faq-arrow {
    color: #d1ff02;
}

.faq-answer {
    overflow: hidden;
    padding: 0 30px;
    max-height: 0;
}
.faq-answer-content{
    transform: translateY(10px) translateZ(0);
    opacity:0;
    will-change: opacity, transform;
    transition: opacity 0.5s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-type-archive-faq .faq-answer{
    transition: all 0.3s ease-in-out;
    will-change: padding, max-height;
}
.post-type-archive-faq .faq-answer-content{
    transform: translateY(-10px) translateZ(0);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: none;
}
.faq-item.active .faq-answer-content {
    transform: translateY(0px) translateZ(0);
    opacity:1;
}

.faq-answer p {
    line-height: 1.6 !important;
    margin: 0 !important;
    font-size: 0.75rem !important;
    color: #e6e6e6ad !important;
    font-family: inherit !important;
    background-color: transparent !important;
    text-align: justify !important;
}
/* .faq-answer p *,
.faq-answer p span,
.faq-answer p div,
.faq-answer p p {
    font-size: 0.75rem !important;
    color: #e6e6e6ad !important;
    font-family: inherit !important;
    background-color: transparent !important;
    text-align: justify !important;
} */
.faq-answer > p,
.faq-answer > p > span,
.faq-answer > span,
.faq-answer > span > p,
.faq-answer > span > span,
.faq-answer li,
.faq-answer li > span,
.faq-answer strong,
.faq-answer strong > span
 {
    font-size: 0.75rem !important;
    color: #e6e6e6ad !important;
    font-family: inherit !important;
    background-color: transparent !important;
    text-align: justify !important;
}

/* Hover effects */
.faq-item:not(.active):hover {
    background: #dbdbdb14;
}

/* .faq-item.active:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
} */

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section{
        padding: 50px 0;
    }
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem !important;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px 25px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem !important;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
}

/* FAQ Page Styles */
.faq-page-wrapper {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.faq-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="noise" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23noise)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}
.faq-single-wrapper{
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.faq-page-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d1ff02 0%, #a8d100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-page-subtitle .highlight {
    color: #d1ff02;
    font-weight: 600;
}

/* FAQ Filter Container */
.faq-filter-container {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* FAQ Filter Buttons - Using Roadmap Year Navigation Styles */
.faq-filter-buttons {
    display: flex;
    gap: 1rem 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
button.faq-filter-btn:hover, button.faq-filter-btn:focus, button.faq-filter-btn:active{
    outline: unset;
    box-shadow: unset;
    border: unset;
    background: unset;
    color: unset;
    text-decoration: unset;
}
button.faq-filter-btn {
    appearance: none;
    -webkit-appearance: none;
    padding: 0px;
    min-width: 94px;
    min-height: 35px;
    border-radius: 17.5px;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    color: silver;
    overflow: hidden;
    border: unset;
    background: transparent;
    transform: translateZ(0) scale(0.95);
    -webkit-transform: translateZ(0) scale(0.95);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
}
button.faq-filter-btn.active{
    color: #DEFA39;
    transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
}
button.faq-filter-btn:not(.active):hover{
    color: white;
    transform: translateZ(0) scale(0.9);
    -webkit-transform: translateZ(0) scale(0.9);
}

/* button.faq-filter-btn {
    background: none;
    border: unset;
    color: rgba(255, 255, 255, 0.7);
    padding: 1.1rem 0.4rem 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.65rem;
    line-height: 2;
    width: 125px;
    margin: 5px 10px;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12rem;
    white-space: normal;
} */

/* button.faq-filter-btn:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 35%;
    width: 30%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

button.faq-filter-btn:after {
    content: '';
    position: absolute;
    top: 2px;
    left: -8%;
    width: 116%;
    height: 116%;
    background-image: url(./static/Pill.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
} */
button.faq-filter-btn:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 17.5px;
    background: linear-gradient(-145deg, transparent, silver, transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
button.faq-filter-btn.active:before{
    background: linear-gradient(-145deg, transparent, #defa39, transparent);
    opacity: 1;
}
button.faq-filter-btn > div{
    position: absolute;
    left: 25%;
    bottom: -50%;
    width: 50%;
    height: 100%;
    border-radius: 50%;
    background: #c0c0c04d;
    filter: blur(10px);
    z-index: 3;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform, filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
button.faq-filter-btn.active > div{
    background: #defa3991;
}
button.faq-filter-btn > span {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid #8080804d;
    border-radius: 17.5px;
    line-height: 2;
    z-index: 2;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    position: relative;
    top: 1px;
    left: 1px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform, background-color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
button.faq-filter-btn.active > span{
    background: #373b24;
    border: 0px solid transparent;
}
button.faq-filter-btn:not(.active):hover > span{
    border: 1px solid #80808082;
}
button.faq-filter-btn:after {
    content: "";
    position: absolute;
    left: 25%;
    width: 50%;
    height: 1px;
    bottom: 0;
    background: silver;
    border-radius: 2px;
    pointer-events: none;
    z-index: 3;
    transform: translateZ(0) scaleX(0.5);
    -webkit-transform: translateZ(0) scaleX(0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background-color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
button.faq-filter-btn.active:after{
    background: #DEFA39;
    transform: translateZ(0) scaleX(1);
    -webkit-transform: translateZ(0) scaleX(1);
}
button.faq-filter-btn:not(.active):hover:after{
    color: white;
}

button.faq-filter-btn i {
    font-size: 0.8rem;
    display: none;
}

/* ========================================
   SUPPORT PAGE STYLES
   ======================================== */

.support-wrapper {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

/* Breadcrumbs */
.support-breadcrumbs {
    margin-bottom: 3rem;
}

.support-breadcrumbs .breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.support-breadcrumbs .breadcrumb-list li {
    color: rgba(255, 255, 255, 0.7);
}

.support-breadcrumbs .breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-breadcrumbs .breadcrumb-list li a:hover {
    color: #DEFA39;
}

.support-breadcrumbs .breadcrumb-list li.separator {
    color: rgba(255, 255, 255, 0.4);
}

.support-breadcrumbs .breadcrumb-list li.current {
    color: #DEFA39;
}

/* Support Header */
.support-header {
    text-align: center;
    margin-bottom: 4rem;
}

.support-title {
    font-size: 3rem;
    font-weight: 700;
    width: 200px;
    color: #ffffff;
    margin: 0 auto 1rem auto;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(45deg, white, #9e9e9e, rgb(111 135 4), #a0a0a0, white) text;
}

.support-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.2rem 0;
    line-height: 1.4;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(45deg, white, rgb(112 112 112)) text;
    text-shadow: 0px 0px 7px silver;
}

.support-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}
input[type=text].form-input, input[type=email].form-input{
    min-width: 300px;
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
    box-sizing: content-box;
    padding: 1rem 1.5rem;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(51, 51, 51);
    border-image: initial;
    border-radius: 50px;
    transition: 0.3s;
    outline: none;
}

input[type=text].form-input::placeholder,
input[type=email].form-input::placeholder,
textarea.form-textarea::placeholder {
    color: #666;
}

input[type=text].form-input:focus,
input[type=email].form-input:focus,
textarea.form-textarea:focus {
    border-color: #DEFA39;
    box-shadow: 0 0 0 2px rgba(222, 250, 57, 0.2);
    background: transparent;
}

textarea.form-textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 25px;
    background: transparent;
    border: 1px solid #8080804d;
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
    box-sizing: border-box;
    padding: 1rem 1.5rem;
    transition: 0.3s;
    outline: none;
    max-width: 100%;
    min-width: 300px;
}

/* File Upload Area */
.file-upload-area {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid gray;
    border-radius: 17.5px;
    border-color: rgb(51, 51, 51);
    padding: 20px 10px;
    background: #d1ff021c;
    cursor: pointer;
    position: relative;
    min-height: 120px;
}
input[type=file].file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}

input[type=file].file-upload-area:hover {
    border-color: #DEFA39;
    background: rgba(222, 250, 57, 0.05);
}

.upload-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.5rem 0;
}

.upload-limit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
    z-index: 1;
}

/* File Preview */
.file-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(222, 250, 57, 0.1);
    border: 2px solid #DEFA39;
    border-radius: 17.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.file-preview-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 400px;
}

.file-preview-icon {
    width: 40px;
    height: 40px;
    background: #DEFA39;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.2rem;
}

.file-preview-info {
    flex: 1;
    min-width: 0;
}

.file-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

.file-remove-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-remove-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Upload Progress */
.upload-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 17.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #DEFA39, #c4e635);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Status Messages */
.form-status {
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.05);
    display: none;
}

/* Newsletter status */
.newsletter-status {
    margin-top: 0.75rem;
    font-size: 0.95rem;
}
.newsletter-status.success { color: #DEFA39; }
.newsletter-status.error { color: #ff6b6b; }

/* 404 Page */
.page-404-wrapper {
    min-height: calc(100vh - 120px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem 2rem;
}

.page-404-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(222,250,57,0.25) 0%, rgba(222,250,57,0.0) 60%);
    filter: blur(20px);
    pointer-events: none;
    display: none;
}

.page-404-content {
    position: relative;
    text-align: center;
    max-width: 960px;
    z-index: 1;
}

.nf-icon-404 {
    width: 86px;
    height: 86px;
    margin: 0 auto 58px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(222, 250, 57, 0.25) inset, 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DEFA39;
    font-weight: 700;
    font-size: 22px;
    border: 1px solid #DEFA39;
    position: relative;
}
.nf-icon-404:after {
    content: '';
    position: absolute;
    top: 10%;
    width: 100%;
    height: 2px;
    background: #DEFA39;
}
.nf-icon-underline {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(222, 250, 57, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.nf-icon-underline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-47%);
    width: 120px;
    height: 2px;
    background: #DEFA39;
    z-index: 1;
}
.nf-icon-underline svg{
    width: 120%;
    position: relative;
    left: -10%;
    top: 10px;
}

.nf-title {
    margin: 0 0 22px;
    font-size: 140px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
    color: #eaeaea;
    text-shadow: 0 0 28px rgba(222,250,57,0.25);
}
.nf-title .nf-word { color: transparent; -webkit-text-stroke: 1px #DEFA39; text-shadow: 0 0 10px rgba(222,250,57,0.15); }
.nf-title .nf-o { color: #DEFA39;
    padding: 0 22px;
    border-radius: 24px;
    display: inline-block;
}

.nf-btn {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: #DEFA39;
    color: #0a0a0a;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(222,250,57,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nf-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 45px rgba(222,250,57,0.45); color: #defa39; }

.nf-subtitle {
    margin: 28px auto 0;
    max-width: 900px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 30px;
    font-weight: 500;
    text-shadow: 0 6px 22px rgba(255, 255, 255, 0.55), 0 0 35px rgba(222, 250, 57, 0.65);
}

@media (max-width: 768px) {
    .page-404-wrapper { padding: 1rem; }
    .nf-title { font-size: 96px; }
    .nf-subtitle { font-size: 24px; padding: 0 0.5rem; }
    .nf-icon-404 { width: 76px; height: 76px; font-size: 20px; }
    .nf-icon-underline { top: 75px; }
    .nf-title .nf-word{ display: block; }
}

@media (max-width: 420px) {
    .nf-title { font-size: 80px; }
    .nf-subtitle { font-size: 22px; }
}

.form-status.success {
    border-color: #DEFA39;
    background: rgba(222, 250, 57, 0.1);
}

.form-status.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.form-status.info {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.status-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.status-message:last-child { margin-bottom: 0; }

.status-message.success { border-left: 3px solid #DEFA39; padding-left: 0.75rem; }
.status-message.error { border-left: 3px solid #ff6b6b; padding-left: 0.75rem; }
.status-message.info { border-left: 3px solid #4ecdc4; padding-left: 0.75rem; }

.status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.form-status.success .status-icon {
    background: #DEFA39;
    color: #0a0a0a;
}

.form-status.error .status-icon {
    background: #ff6b6b;
    color: #ffffff;
}

.form-status.info .status-icon {
    background: #4ecdc4;
    color: #ffffff;
}

.status-content {
    flex: 1;
}

.status-text {
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.status-details {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Turnstile Container */
.turnstile-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.cf-turnstile {
    transform: scale(0.9);
    transform-origin: center;
}

/* Rate limit headers */
.rate-limit-info {
    background: linear-gradient(45deg, transparent, #363636, transparent);
    border: 1px solid #353535;
    border-radius: 8px;
    padding: 0.75rem;
    margin: 1rem 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.rate-limit-info h4 {
    color: #DEFA39;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.rate-limit-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

.rate-limit-info li {
    margin: 0.25rem 0;
}

/* Checkbox */
.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #DEFA39;
    cursor: pointer;
}

/* Submit Button */
.submit-button {
    width: 300px;
    padding: 1rem 2rem;
    background: #DEFA39;
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
    display: block;
}

.submit-button:hover {
    background: #c4e635;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(222, 250, 57, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Section Separator */
.section-separator {
    height: 3px;
    background: linear-gradient(90deg, transparent, #defa39, transparent);
    margin: 1rem 0 3rem;
    opacity: 1;
}

/* Telegram Section */
.telegram-section {
    text-align: center;
}

.telegram-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

.telegram-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.telegram-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.telegram-button {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 17.5px;
    padding: 0.6rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 160px;
    text-align: center;
    font-size: 0.85rem;
    box-sizing: content-box;
}
.telegram-button:after{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 35%;
    width: 30%;
    height: 2px;
    background: #d1ff02;
}

.telegram-button:hover {
    background: rgba(222, 250, 57, 0.1);
    border: 1px solid #DEFA39;
    color: #DEFA39;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(222, 250, 57, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-container {
        padding: 1.5rem 1rem 3rem;
    }
    
    .support-title {
        font-size: 2.5rem;
    }
    
    .support-subtitle {
        font-size: 1.3rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .telegram-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .telegram-button {
        width: 100%;
        max-width: 280px;
    }
    
    .form-input,
    .form-textarea,
    .submit-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .submit-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .support-breadcrumbs{
        margin-bottom: 1.5rem;
    }

    .support-header{
        margin-bottom: 2rem;
    }
    
    .support-title {
        font-size: 2rem;
        margin: 0 0 1rem 0;
        text-align: left;
    }
    
    .support-subtitle {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .support-description {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .telegram-title {
        font-size: 1.5rem;
    }
    
    .telegram-description {
        font-size: 0.8rem;
    }
    
    .form-input,
    .form-textarea,
    .submit-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    input[type=text].form-input, input[type=email].form-input{
        min-width:200px;
    }
    
    .file-preview-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .file-preview-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .file-name {
        font-size: 0.8rem;
    }
    
    .file-size {
        font-size: 0.7rem;
    }
    
    .progress-bar {
        max-width: 250px;
    }

    .active-round-section .progress-bar{
        max-width: 100%;
    }
    
    .form-status {
        margin: 1rem 0;
        padding: 0.75rem;
    }
    
    .status-message {
        gap: 0.75rem;
    }
    
    .status-text {
        font-size: 0.9rem;
    }
    
    .status-details {
        font-size: 0.8rem;
    }
}

/* FAQ Search Container */
.faq-search-container {
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ Search - Matching Whitepaper Search */
.faq-search {
    margin: 2rem 1.5rem 1rem;
    position: relative;
    z-index: 10;
    padding: 1rem;
    transition: all 0.3s ease;
}

.faq-search .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-search .search-input-wrapper input[type="text"] {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    height: 45px;
    padding-left: 50px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    will-change: transform, border-color, box-shadow;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-search .search-input-wrapper input[type="text"]:hover,
.faq-search .search-input-wrapper input[type="text"]:focus {
    border: 1px solid #defa394a;
    box-shadow: 0 0 0 3px rgba(222, 250, 57, 0.1), 0 4px 15px rgba(222, 250, 57, 0.2);
    background: rgba(255, 255, 255, 0.12);
    transform: translateZ(0) scale(1.0);
    -webkit-transform: translateZ(0) scale(1.0);
}

.faq-search .search-icon {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, color;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.faq-search .search-input-wrapper input[type="text"]:focus + .search-icon {
    color: #DEFA39;
    transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
}

.faq-search-input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.faq-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faq-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #00BFFF;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.faq-search-input:focus + .search-icon {
    color: #00BFFF;
}

/* Mobile FAQ Search Adjustments */
@media (max-width: 768px) {
    .faq-search {
        margin: 1rem 1.5rem;
        margin-top: 2rem;
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .faq-search .search-input-wrapper input[type="text"] {
        height: 40px;
        font-size: 0.8rem;
    }
    
    .faq-search .search-icon {
        font-size: 0.9rem;
        left: 12px;
    }
}

/* FAQ Item Filter States */
.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.faq-item.hidden {
    display: none;
}

.faq-item.fade-out {
    opacity: 0;
    transform: translateZ(0) translateY(-10px);
    -webkit-transform: translateZ(0) translateY(-10px);
}

.faq-item.fade-in {
    opacity: 1;
    transform: translateZ(0) translateY(0);
    -webkit-transform: translateZ(0) translateY(0);
}

.faq-page-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-accordion {
    margin-bottom: 4rem;
}

.faq-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.faq-empty-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.faq-empty-state h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-empty-state p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

.faq-contact-section {
    text-align: center;
    padding: 3rem;
    position: relative;
    z-index: 2;
    color: #b7b7b7;
}
.faq-contact-section h3{
    color: white;
}

.faq-contact-content h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-contact-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d1ff0242;
}

.faq-contact-buttons .btn-primary {
    background: #d1ff02;
    color: #000000;
}

.faq-contact-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 255, 2, 0.3);
    border: 1px solid #d1ff0242;
    background: #a8d100;
}

.faq-contact-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-contact-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
    border: 1px solid #d1ff0242;
}
.faq-single-contact h3 {
    color: white;
}
.faq-single-contact > p {
    color: silver;
}

/* FAQ Page Mobile Responsive */
@media (max-width: 768px) {
    .faq-page-title {
        font-size: 2rem;
    }
    
    .faq-page-subtitle {
        font-size: 1rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-contact-buttons .btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Single FAQ Styles */
.faq-single-wrapper {
    padding: 2rem 0;
    min-height: 60vh;
}

.faq-single-header {
    margin-bottom: 2rem;
}

.faq-breadcrumbs {
    margin-bottom: 1rem;
}

.faq-breadcrumbs a {
    color: #DEFA39;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    padding: 5px 15px;
    background: transparent;
    border-radius: 17.5px;
    border: 1px solid #d1ff0242;
}

.faq-breadcrumbs a:hover {
    color: #DEFA39;
    background: #d1ff0230;
    border: 1px solid #DEFA39;
}

.faq-single-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-single-question h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.3;
}

.faq-single-answer {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #adaea6;
}

.faq-single-meta {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-date {
    font-size: 0.9rem;
    margin: 0;
    color: #adaea6;
    font-weight: 700;
}

.faq-single-navigation {
    margin: 2rem 0;
}

.faq-nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.faq-nav-prev,
.faq-nav-next {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    min-width: 200px;
    width: 220px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
}

.faq-nav-prev::before,
.faq-nav-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    transform: translateX(-100%);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(222, 250, 57, 0.1), transparent);
    transition: transform 0.5s ease;
}

.faq-nav-prev::before {
    transform: translateX(100%);
}

.faq-nav-next:hover::before {
    transform: translateX(100%);
}

.faq-nav-prev:hover::before {
    transform: translateX(-100%);
}

.faq-nav-prev:hover,
.faq-nav-next:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(222, 250, 57, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(222, 250, 57, 0.1);
    color: #ffffff;
}

.faq-nav-prev:hover .nav-label,
.faq-nav-next:hover .nav-label {
    color: #DEFA39;
}

.faq-nav-prev:hover .nav-title,
.faq-nav-next:hover .nav-title {
    color: #ffffff;
}

.faq-nav-next:hover .nav-arrow {
    color: #DEFA39;
    transform: translateX(5px);
}

.faq-nav-prev:hover .nav-arrow {
    color: #DEFA39;
    transform: translateX(-5px);
}

.faq-nav-prev.disabled,
.faq-nav-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.3);
}

.faq-nav-prev.disabled:hover,
.faq-nav-next.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.faq-single-contact {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive for Single FAQ */
@media (max-width: 768px) {
    .faq-single-question h1 {
        font-size: 1.5rem;
    }
    
    .faq-single-item {
        padding: 1.5rem;
    }
    
    .faq-nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-nav-prev,
    .faq-nav-next {
        text-align: center;
    }
}


/* ===== DAO Community ===== */
.dao-community-section {
    position: relative;
    padding: 80px 40px;
    background-color: #0a0a0a;
    overflow: hidden;
    top:-81px;
}

.dao-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.dao-copy {
    color: #b0b0b0;
    line-height: 1.6;
}

.dao-desc {
    max-width: 34ch;
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}
  
  /* ===== Map & Markers ===== */
  .dao-map {
    position: relative;
    width: 100%;
    text-align: center;
    max-width: 500px;
    margin: auto;
  }
  .dao-map img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
  }
  .dao-community-section .app-section-bg{
    top: -40px;
    left: -10%;
    transform: scaleY(0.4);
  }
  .dao-community-section .app-tagline{
    background: linear-gradient(-45deg, #dbfc44, #2f3712);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .map-marker {
    --size: 14px;
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #d7ff52;
    box-shadow:
      0 0 8px 3px rgba(198, 255, 86, 0.65),
      0 0 20px 8px rgba(198, 255, 86, 0.25);
    animation: markerPulse 2.4s infinite ease-in-out;
  }
  
  @keyframes markerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50%      { transform: translate(-50%, -50%) scale(2); opacity: 0.4; }
  }
  
  @media (max-width: 1000px) {
    .dao-wrapper { flex-direction:column-reverse; text-align: center; gap:10px;}
    .dao-community-section {padding: 20px;}
    .app-description {margin-bottom: 10px;}
    .dao-copy    { margin-bottom: 2.5rem; }
    .dao-desc    { margin: 0 auto; }
    .dao-community-section .app-section-bg{
        top: -20%;
        left: -10%;
        transform: scaleY(0.5);
    }
  }

/* ===== Newsletter Subscription Section ===== */
.newsletter-section {
    position: relative;
    padding: 130px 20px 80px;
    background-color: #0a0a0a;
    overflow: hidden;
    text-align: center;
    top:-81px;
}

.newsletter-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
}

.newsletter-spotlight {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(222, 250, 57, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.newsletter-spotlight::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-47%);
    width: 120px;
    height: 2px;
    background: #DEFA39;
    z-index: 1;
}
.newsletter-spotlight svg{
    width: 100%;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, white, white, #dbfc44, white, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.form-group {
    position: relative;
}

input[type="email"].newsletter-input {
    width: 300px;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: content-box;
}

input[type="email"].newsletter-input::placeholder {
    color: #666;
}

input[type="email"].newsletter-input:focus {
    border-color: #DEFA39;
    box-shadow: 0 0 0 2px rgba(222, 250, 57, 0.2);
}

.newsletter-btn {
    width: 300px;
    padding: 1rem 2rem;
    background: #DEFA39;
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-btn:hover {
    background: #c4e635;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(222, 250, 57, 0.3);
}

.newsletter-btn:active {
    transform: translateY(0);
}

/* Newsletter Responsive Design */
@media (max-width: 768px) {
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .newsletter-title{
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.85rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* ===== Blog Section ===== */
.blog-section {
    position: relative;
    padding: 80px 20px;
    background-color: #0a0a0a;
    overflow: hidden;
    top:-81px;
}
.blog-section:after{
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width:80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #d1ff02, transparent);
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    align-items: center;
    justify-content: center;
}

.blog-card {
    transition: all 0.3s ease;
    position: relative;
    width:320px;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card:hover .blog-card-link {
    color: inherit;
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border: 1px solid #d1ff0238;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.blog-card:hover .blog-image-container{
    box-shadow: 0 10px 30px rgba(222, 250, 57, 0.1);
    border-color: #defa397d;
}
.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-image.loaded {
    opacity: 1;
}

.blog-categories {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.blog-category {
    background: rgba(222, 250, 57, 0.9);
    color: #0a0a0a;
    padding: 3px 7px;
    border-radius: 20px;
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 10px;
}

.blog-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin:0;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.75rem;
    color: #8f8e8e;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-loading {
    text-align: center;
    padding: 3rem;
    color: #b0b0b0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top: 3px solid #DEFA39;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.blog-cta {
    text-align: center;
}

.blog-cta-btn {
    display: inline-block;
    padding: 12px 50px;
    background: transparent;
    color: #d1ff02;
    text-decoration: none;
    border: 1px solid #DEFA39;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.blog-cta-btn:hover {
    background: #DEFA39;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(222, 250, 57, 0.3);
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-card {
        margin: 0 1rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
    }
}

#ast-scroll-top{
    background-color: #d1ff02;
    color: #000000;
    font-size: 15px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px #d1ff02;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    background-color: #0a0a0a;
    padding: 4rem 0 2rem;
    overflow: hidden;
}
.home .footer{
    margin-top: -85px;
}
.footer-spotlight {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.footer-spotlight svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #666, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1050px;
    margin: 0 auto;
}

/* Left Column - Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #DEFA39;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.footer-description {
    font-size: 0.75rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #b0b0b0;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: #DEFA39;
    background: rgba(222, 250, 57, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-copyright {
    margin-top: auto;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: #666;
    margin: 0.2rem 0;
    line-height: 1.4;
}

/* Middle and Right Columns */
.footer-column-wrapper {
    display: flex;
    gap: 50px;
    flex-direction: row;
    min-width: 320px;
    align-items: start;
    justify-content: center;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    text-align: left;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 400;
    color: #e3e3e3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.8rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #DEFA39;
    transform: translateX(5px);
}

/* Footer Link Tiers */
/* .footer-link-main {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
} */

.footer-link-secondary {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link-tertiary {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}
.footer-line-split{
    width:90%;
    height: 1px;
    background-color: #66666678;
    margin: 0 auto;
    margin-bottom: 1rem;
    display: none;
}
.footer-copyright.footer-copyright2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-top: -30px;
}
.footer-copyright.footer-copyright2{
    display: none;
}
.newsletter-footer-spotlight{
    display: none;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 6rem 1rem 2rem;
    }
    .page-template-page-support .footer{
        padding-top: 0;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:2rem;
    }
    
    .footer-brand {
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-copyright {
        display: none;
    }
    .footer-copyright.footer-copyright2{
        display: flex;
    }
    .footer-copyright p{
        font-size: 0.6rem;
    }
    .footer-column-wrapper{
        flex-direction: column;
        align-items: start;
        justify-content: start;
        width: 100%;
        padding-left: 10%;
        gap: 50px;
    }
    .footer-column{
        width: 50%;
    }
    .footer-line-split{
        display: block;
    }
    .footer-heading{
        margin: 0;
        font-weight: 600;
    }
    .footer-links{
        gap: 0.3rem;
    }
    .footer-column{
        gap: 0.5rem;
    }
    .footer-links{
        margin-left: 8px;
    }
    .footer-link{
        width: 100%;
    }
    .newsletter-footer-spotlight{
        display: block;
        top:30px;
    }
    .footer::before{
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-brand-name {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .footer-heading {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
}

/* ========================================
   WHITEPAPER DOCUMENTATION SYSTEM STYLES - DARK COSMIC THEME
   ======================================== */



/* Header icon specific styles */
.koraxon-header .dropdown-toggle .fas {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.koraxon-header .dropdown-toggle:hover .fas {
    transform: rotate(180deg);
}

.koraxon-header .header-icons .fas {
    font-size: 16px;
    margin-right: 0;
}

.koraxon-header .btn-open-app .fas {
    margin-left: 8px;
    font-size: 12px;
}

/* Cosmic Background with Speckles */
.page .particles-container, .single-whitepaper .particles-container{
    position: absolute;
    opacity:0.4;
}
.whitepaper-container {
    display: flex;
    min-height: 100vh;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Sidebar Styling - Enhanced Sticky Navigation */
.whitepaper-sidebar {
    width: 320px;
    min-width: 280px;
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    position: sticky !important;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    margin-bottom: 140px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3), 0 0px 7px rgb(209 255 2 / 25%);
    /* background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(17, 17, 17, 0.95) 100%); */
    transition: all 0.6s ease-in-out;
    z-index: 1000;
}

/* Custom Scrollbar - Beautiful and Tiny */
.whitepaper-sidebar::-webkit-scrollbar, .whitepaper-search-results::-webkit-scrollbar {
    width: 6px;
}

.whitepaper-sidebar::-webkit-scrollbar-track, .whitepaper-search-results::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.whitepaper-sidebar::-webkit-scrollbar-thumb, .whitepaper-search-results::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #365d32 0%, #DEFA39 50%, #365d32 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whitepaper-sidebar::-webkit-scrollbar-thumb:hover, .whitepaper-search-results::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #DEFA39 0%, #365d32 50%, #DEFA39 100%);
    box-shadow: 0 0 10px rgba(222, 250, 57, 0.4);
    transform: scaleX(1.2);
}

.whitepaper-sidebar::-webkit-scrollbar-corner, .whitepaper-search-results::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox Scrollbar */
.whitepaper-sidebar {
    scrollbar-width: thin;
    scrollbar-color: #defa3940 transparent;
}

/* Enhanced Navigation Menu Styles */
.whitepaper-sidebar .nav-grid {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.whitepaper-sidebar .nav-box {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.whitepaper-sidebar .nav-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(222, 250, 57, 0.1), transparent);
    transition: left 0.5s ease;
}

.whitepaper-sidebar .nav-box:hover::before {
    left: 100%;
}

.whitepaper-sidebar .nav-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(222, 250, 57, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(222, 250, 57, 0.1);
}

.whitepaper-sidebar .nav-box.active {
    background: linear-gradient(135deg, rgba(222, 250, 57, 0.15) 0%, rgba(54, 93, 50, 0.1) 100%);
    border-color: #DEFA39;
    box-shadow: 0 4px 20px rgba(222, 250, 57, 0.2);
}

/* Restore original whitepaper-section styles */
.whitepaper-section {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whitepaper-section:last-child {
    border-bottom: none;
}

.whitepaper-section-title {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    padding-left: 5px;
    user-select: none;
    -webkit-user-select: none;
}

.whitepaper-section.active .whitepaper-section-title:before {
    content: '';
    position: absolute;
    top: calc(50% - 15px);
    left: 0;
    height: 30px;
    width: 3px;
    background: #d1ff02;
}

/* Font Awesome section arrow */
.section-arrow {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.whitepaper-section-title:hover .section-arrow {
    color: #DEFA39;
}

.whitepaper-section.active .section-arrow {
    color: #DEFA39;
}

.whitepaper-section-title a {
    color: inherit;
    text-decoration: none;
    display: block;
    flex: 1;
    padding: 0.35rem 1.5rem;
    width: 100%;
    position: relative;
    z-index: 1;
}
.whitepaper-section-title > i {
    font-weight: 900;
    display: block;
    position: absolute;
    right: 0;
    line-height: 27px;
    font-size: 12px;
    color: rgb(255 255 255 / 60%);
    z-index: 0;
}

.whitepaper-section:not(.active) .whitepaper-section-title a:hover {
    color: #d1ff02;
}

.whitepaper-section.active.active .whitepaper-section-title a{
    color: #d1ff02;
}

/* Dropdown functionality */
.whitepaper-section.expanded .whitepaper-pages {
    max-height: none;
    opacity: 1;
    transform: translateY(0);
    padding: 0.5rem 0;
}

.whitepaper-section.expanded .section-arrow {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}



.whitepaper-sidebar .nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.whitepaper-sidebar .nav-box:hover .nav-label,
.whitepaper-sidebar .nav-box.active .nav-label {
    color: #DEFA39;
}

.whitepaper-sidebar .nav-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.whitepaper-sidebar .nav-box:hover .nav-title,
.whitepaper-sidebar .nav-box.active .nav-title {
    color: #ffffff;
}

.whitepaper-sidebar .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.whitepaper-sidebar .nav-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.whitepaper-sidebar .nav-box:hover .nav-arrow,
.whitepaper-sidebar .nav-box.active .nav-arrow {
    color: #DEFA39;
}

.whitepaper-sidebar .nav-box.expanded .nav-arrow {
    transform: rotate(180deg);
    color: #DEFA39;
}

/* Sub-navigation styles */
.whitepaper-sidebar .nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0.5rem;
}

.whitepaper-sidebar .nav-box.expanded .nav-submenu {
    max-height: 500px;
}

.whitepaper-sidebar .nav-submenu .nav-box {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.whitepaper-sidebar .nav-submenu .nav-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(222, 250, 57, 0.2);
}

.whitepaper-sidebar .nav-submenu .nav-box.active {
    background: rgba(222, 250, 57, 0.1);
    border-color: #DEFA39;
}

/* Ensure proper spacing for navigation grid */
.whitepaper-sidebar .whitepaper-navigation {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Smooth scrolling for navigation */
.whitepaper-sidebar .nav-box a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* Loading animation for navigation */
.whitepaper-sidebar .nav-box.loading {
    position: relative;
    overflow: hidden;
}

.whitepaper-sidebar .nav-box.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(222, 250, 57, 0.2), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.whitepaper-sidebar-header {
    padding: 2rem 1.5rem 1rem;
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: auto;
}
.whitepaper-particles-container, .roadmap-particles-container, .faq-particles-container, .support-particles-container, .error-404-particles-container{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity:0.4;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.whitepaper-sidebar-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}
.whitepaper-sidebar-header h6{
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.whitepaper-sidebar-header p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
}

/* Enhanced Search Box Styling */
.whitepaper-search {
    margin: 2rem 1.5rem 1rem;
    position: relative;
    z-index: 10;
    padding: 1rem;
    transition: all 0.3s ease;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    align-items: center;
}
.search-input-wrapper > i {
    margin-left: 20px;
}
.search-input-wrapper input[type="text"]{
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    height: 45px;
    padding-left: 50px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    will-change: transform, border-color, box-shadow;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.search-input-wrapper input[type="text"]:hover, .search-input-wrapper input[type="text"]:focus{
    border: 1px solid #defa394a;
    box-shadow: 0 0 0 3px rgba(222, 250, 57, 0.1), 0 4px 15px rgba(222, 250, 57, 0.2);
    background: rgba(255, 255, 255, 0.12);
    transform: translateZ(0) scale(1.0);
    -webkit-transform: translateZ(0) scale(1.0);
}

.search-icon {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, color;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.search-input-wrapper input[type="text"]:focus + .search-icon {
    color: #DEFA39;
    transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
}

.whitepaper-search-input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.whitepaper-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.whitepaper-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #00BFFF;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.whitepaper-search-input:focus + .search-icon {
    color: #00BFFF;
}

/* Search Options */
.search-options {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding: 0 4px;
    padding-left: 100px;
    position: absolute;
    top: -25px;
    width: 190px;
    justify-content: center;
}
.search-options:before {
    content: 'Search Type:';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    font-size: 0.7rem;
    line-height: 2.5;
    color: #d1ff02;
    padding-left: 10px;
}
@media (max-width: 600px) {
    .search-options{
        width: 160px;
    }
}

.search-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.search-option input[type="radio"] {
    display: none;
}

.option-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 2px 10px;
    border-radius: 20px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 70px;
    text-align: center;
}

.search-option input[type="radio"]:checked + .option-label {
    color: #d1ff02;
    background: rgba(0, 191, 255, 0.1);
    border-color: #d1ff02;
}

.search-option:hover .option-label {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

/* Search Results */
.whitepaper-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: none;
}

.whitepaper-search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgb(209 255 2 / 10%);
}

.search-result-item.active {
    background: rgba(0, 191, 255, 0.15);
}

.search-result-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
}

.search-result-excerpt {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-section {
    font-size: 0.7rem;
    color: #d1ff02;
    margin-top: 4px;
    font-weight: 500;
}

.search-no-results {
    padding: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Search highlight */
.search-result-item mark {
    background: rgba(0, 191, 255, 0.3);
    color: #ffffff;
    padding: 0 2px;
    border-radius: 2px;
}

/* Search Results Header */
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.search-type-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #d1ff02;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Search Result Enhancements */
.search-result-title {
    /* display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px; */
}

.search-score {
    font-size: 0.7rem;
    color: #d1ff02;
    background: rgba(0, 191, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
}

.match-type {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Navigation Styling */
.section-link:hover, .section-link:focus, .section-link:active,
.whitepaper-page-link:hover, .whitepaper-page-link:focus, .whitepaper-page-link:active{
    outline: unset;
    box-shadow: unset;
    border: unset;
    background: unset;
    color: unset;
    text-decoration: unset;
}
.whitepaper-navigation {
    padding: 1rem 0;
}

.whitepaper-pages {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Mobile performance optimizations */
    will-change: max-height, opacity, transform;
    transform: translateY(-10px) translateZ(0);
    -webkit-transform: translateY(-10px) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.whitepaper-page-item {
    margin: 0;
}

.whitepaper-page-link {
    display: block;
    padding: 0.5rem 1.5rem 0.5rem 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    /* border-left: 2px solid transparent; */
    position: relative;
    /* Mobile performance optimizations */
    will-change: color, background-color;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.whitepaper-page-link .page-link-icon {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whitepaper-page-item.active .whitepaper-page-link {
    color: #d1ff02;
    /* background: rgb(209 255 2 / 13%);
    border-left-color: #d1ff02; */
    font-weight: 500;
}

.whitepaper-page-item.active .whitepaper-page-link .page-link-icon {
    opacity: 1;
}

/* Mobile optimizations for dropdown animations */
@media (max-width: 768px) {
    .whitepaper-pages {
        /* Optimize transitions for mobile */
        transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .whitepaper-page-link {
        /* Optimize touch interactions */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        padding: 0.75rem 1.5rem 0.75rem 2.5rem; /* Larger touch target */
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .whitepaper-pages {
            transition: none;
        }
        
        .whitepaper-page-link {
            transition: none;
        }
    }
}

/* Main Content Area */
.whitepaper-content {
    flex: 1;
    padding: 2rem;
    background: transparent;
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
}

.whitepaper-main {
    max-width: 100%;
    margin: 0 auto;
}

/* Page Header */
.whitepaper-page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.whitepaper-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.whitepaper-page-excerpt {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Breadcrumbs */
.whitepaper-breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    max-width: 100%;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #00BFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-item.current span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Page Content */
.whitepaper-page-content {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    overflow-x: hidden;
    max-width: 100%;
    word-wrap: break-word;
    word-break: break-word;
}

.whitepaper-page-content h1,
.whitepaper-page-content h2,
.whitepaper-page-content h3,
.whitepaper-page-content h4,
.whitepaper-page-content h5,
.whitepaper-page-content h6 {
    color: #ffffff;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.whitepaper-page-content h1 { font-size: 2rem; }
.whitepaper-page-content h2 { font-size: 1.75rem; }
.whitepaper-page-content h3 { font-size: 1.5rem; }
.whitepaper-page-content h4 { font-size: 1.25rem; }
.whitepaper-page-content h5 { font-size: 1.1rem; }
.whitepaper-page-content h6 { font-size: 1rem; }

.whitepaper-page-content p {
    margin: 0 0 1.5rem 0;
}

.whitepaper-page-content ul,
.whitepaper-page-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.whitepaper-page-content li {
    margin: 0.5rem 0;
}

.whitepaper-page-content blockquote {
    border-left: 4px solid #00BFFF;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(0, 191, 255, 0.1);
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0 4px 4px 0;
}

.whitepaper-page-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875em;
    color: #00BFFF;
}

.whitepaper-page-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whitepaper-page-content pre code {
    background: none;
    padding: 0;
    color: #ffffff;
}
.whitepaper-page-content > *:first-child{
    margin-top:0 !important;
}

/* Navigation Buttons */
.whitepaper-page-navigation {
    margin-top: 1rem;
    padding-top: 1rem;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.whitepaper-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.whitepaper-nav-prev,
.whitepaper-nav-next {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    min-width: 200px;
    width:220px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
}

.whitepaper-nav-prev::before,
.whitepaper-nav-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    transform: translateX(-100%);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(222, 250, 57, 0.1), transparent);
    transition: transform 0.5s ease;
}
.whitepaper-nav-prev::before{
    transform: translateX(100%);
}

.whitepaper-nav-next:hover::before {
    transform: translateX(100%);
}
.whitepaper-nav-prev:hover::before{
    transform: translateX(-100%);
}

.whitepaper-nav-prev:hover,
.whitepaper-nav-next:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(222, 250, 57, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(222, 250, 57, 0.1);
    color: #ffffff;
}

.whitepaper-nav-prev:hover .nav-label,
.whitepaper-nav-next:hover .nav-label {
    color: #DEFA39;
}

.whitepaper-nav-prev:hover .nav-title,
.whitepaper-nav-next:hover .nav-title {
    color: #ffffff;
}

.whitepaper-nav-next:hover .nav-arrow {
    color: #DEFA39;
    transform: translateX(5px);
}
.whitepaper-nav-prev:hover .nav-arrow{
    color: #DEFA39;
    transform: translateX(-5px);
}

.whitepaper-nav-prev.disabled,
.whitepaper-nav-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.3);
}

.whitepaper-nav-prev.disabled:hover,
.whitepaper-nav-next.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.nav-arrow {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-text {
    display: flex;
    flex-direction: column;
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.nav-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: inherit;
    line-height: 1.3;
}

/* Related Pages */
.whitepaper-related {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.whitepaper-related h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.whitepaper-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.whitepaper-related-list li {
    margin: 0.5rem 0;
}

.whitepaper-related-list a {
    color: #00BFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.whitepaper-related-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-item a {
    color: #DEFA39;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.current span {
    color: #999;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #666;
}

/* Page Content */
.whitepaper-page-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 1rem;
}

.whitepaper-page-content p {
    margin-bottom: 1.5rem;
}

.whitepaper-page-content ul,
.whitepaper-page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.whitepaper-page-content li {
    margin-bottom: 0.5rem;
}

.whitepaper-page-content blockquote {
    border-left: 4px solid #DEFA39;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #ccc;
}

.whitepaper-page-content code {
    background: #333;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
}

.whitepaper-page-content pre {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid #333;
}

.whitepaper-page-content pre code {
    background: none;
    padding: 0;
    color: #ffffff;
}

/* Page Navigation */
.whitepaper-page-navigation {
    margin: 1rem 0;
    padding: 1rem 0;
    /* border-top: 1px solid #333; */
}

.whitepaper-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}

.whitepaper-nav-prev,
.whitepaper-nav-next {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    max-width: 45%;
    min-height: 60px;
    position: relative;
    overflow: hidden;
}

.whitepaper-nav-prev:hover,
.whitepaper-nav-next:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(222, 250, 57, 0.3);
    border: 1px solid rgba(222, 250, 57, 0.3);
}

.whitepaper-nav-prev.disabled,
.whitepaper-nav-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.whitepaper-nav-prev.disabled:hover,
.whitepaper-nav-next.disabled:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #333;
}

.nav-arrow {
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-text {
    margin: 0 1rem;
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Related Pages */
.whitepaper-related {
    margin: 3rem 0;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
}

.whitepaper-related h3 {
    color: #DEFA39;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.whitepaper-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.whitepaper-related-list li {
    margin-bottom: 0.5rem;
}

.whitepaper-related-list a {
    color: #DEFA39;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whitepaper-related-list a:hover {
    color: #ffffff;
}

/* Archive Page Styles */
.whitepaper-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.whitepaper-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #DEFA39;
}

.whitepaper-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin: 0;
}

.whitepaper-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Featured Pages */
.whitepaper-featured {
    margin-bottom: 4rem;
}

.whitepaper-featured h2 {
    color: #DEFA39;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.whitepaper-featured-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.whitepaper-featured-card:hover {
    border-color: #DEFA39;
    transform: translateY(-2px);
}

.whitepaper-featured-card h3 {
    color: #DEFA39;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.whitepaper-featured-card h3 a {
    color: inherit;
    text-decoration: none;
}

.whitepaper-featured-card p {
    color: #ccc;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.whitepaper-read-more {
    color: #DEFA39;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whitepaper-read-more:hover {
    color: #ffffff;
}

/* Sections Grid */
.whitepaper-sections {
    margin-bottom: 4rem;
}

.whitepaper-sections h2 {
    color: #DEFA39;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.whitepaper-section-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.whitepaper-section-card:hover {
    border-color: #DEFA39;
    transform: translateY(-2px);
}

.whitepaper-section-card h3 {
    color: #DEFA39;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.whitepaper-section-card h3 a {
    color: inherit;
    text-decoration: none;
}

.whitepaper-section-card p {
    color: #ccc;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.whitepaper-section-pages {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.whitepaper-section-pages li {
    margin-bottom: 0.5rem;
}

.whitepaper-section-pages a {
    color: #DEFA39;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.whitepaper-section-pages a:hover {
    color: #ffffff;
}

.whitepaper-section-link {
    color: #DEFA39;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whitepaper-section-link:hover {
    color: #ffffff;
}
.whitepaper-mobile-toggle:after {
    content: 'White paper topics';
    font-size: 14px;
    position: absolute;
    width: 200px;
    left: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}
.whitepaper-mobile-header{
    display: none;
}

button.whitepaper-mobile-close:hover, button.whitepaper-mobile-close:focus, button.whitepaper-mobile-close:active{
    outline: unset;
    box-shadow: unset;
    border: unset;
    background: unset;
    color: unset;
    text-decoration: unset;
}
button.whitepaper-nav-prev:hover, button.whitepaper-nav-prev:focus, button.whitepaper-nav-preve:active, 
button.whitepaper-nav-next:hover, button.whitepaper-nav-next:focus, button.whitepaper-nav-next:active{
    width: 100%;
    background: #DEFA39;
    color: #000;
}
.whitepaper-mobile-toggle-header {
    display: none;
}
/* Responsive Design */
@media (max-width: 900px) {
    /* Mobile Toggle Button */
    .whitepaper-mobile-toggle {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 12px;
        color: #ffffff;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        will-change: transform, background-color;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Header Mobile Toggle Button */
    .whitepaper-mobile-toggle-header {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 12px;
        color: #ffffff;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        will-change: transform, background-color;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        margin-left: 10px;
        display: none;
    }

    .whitepaper-mobile-toggle:hover,
    .whitepaper-mobile-toggle-header:hover {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0px 0px 12px #DEFA39;
        color: #DEFA39;
        transform: translateZ(0) scale(1.05);
        -webkit-transform: translateZ(0) scale(1.05);
    }

    /* Mobile Sidebar */
    .whitepaper-sidebar {
        position: fixed !important;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        z-index: 100000;
        background: #0a0a0a;
        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border-right: none;
        border-bottom: 1px solid #333;
        will-change: transform;
        transform: translateX(-100%) translateZ(0);
        -webkit-transform: translateX(-100%) translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile Header */
    .whitepaper-mobile-header {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        backdrop-filter: blur(15px);
        z-index: 10;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .mobile-header-content {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .mobile-header-icon {
        font-size: 1.2rem;
        color: #DEFA39;
    }

    .mobile-header-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
    }

    .whitepaper-mobile-close {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.2rem;
        cursor: pointer;
        padding: 8px;
        border-radius: 6px;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background-color;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
    }

    .whitepaper-mobile-close:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        transform: translateZ(0) scale(1.1);
        -webkit-transform: translateZ(0) scale(1.1);
    }

    /* Container and Content adjustments */
    .whitepaper-container {
        flex-direction: column;
        /* will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; */
    }

    .whitepaper-content {
        margin-left: 0;
        max-width: 100%;
        padding: 1rem;
        overflow-x: hidden;
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .whitepaper-nav-prev, .whitepaper-nav-next {
        padding: 1rem 0.5rem;
        max-width: 100%;
        width: 100%;
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
    }

    /* Sidebar header adjustments */
    .whitepaper-sidebar-header {
        padding-top: 6rem;
    }

    /* Mobile navigation adjustments */
    .whitepaper-navigation {
        padding: 1rem 1.5rem;
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .whitepaper-nav-links {
        /* flex-direction: column; */
        gap: 1rem;
    }

    .whitepaper-section-title {
        font-size: 1.1rem;
        padding: 1rem 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile dropdown optimizations */
    .whitepaper-section.expanded .whitepaper-pages {
        max-height: none;
        padding: 0.5rem 0;
    }

    .whitepaper-page-link {
        padding: 0.75rem 1rem 0.75rem 2rem;
        font-size: 0.95rem;
        will-change: transform, background-color;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
    }

    /* Mobile search adjustments */
    .whitepaper-search {
        margin: 1rem 1.5rem;
        margin-top: 4rem;
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Typography adjustments */
    .whitepaper-page-title {
        font-size: 2rem;
        word-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }

    /* Grid adjustments */
    .whitepaper-featured-grid,
    .whitepaper-sections-grid {
        grid-template-columns: 1fr;
    }
    .whitepaper-page-navigation{
        margin: 1rem 0;
        padding: 1rem 0;
    }
}
@media (max-width: 768px) {
    .whitepaper-page-content{
        margin-bottom: 1rem;
    }
    .whitepaper-page-navigation{
        margin: 0 0 1rem;
        padding: 2rem 0;
    }
    .whitepaper-nav-prev, .whitepaper-nav-next{
        justify-content: space-around;
        width: 300px;
    }
}
@media (max-width: 600px) {
    .whitepaper-nav-links{
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .whitepaper-nav-prev, .whitepaper-nav-next{
        justify-content: space-around;
        width: 300px;
    }
}
@media (max-width: 480px) {
    
    .whitepaper-sidebar-header h2 {
        font-size: 1.3rem;
    }
    
    .whitepaper-page-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
    
    .whitepaper-header h1 {
        font-size: 2.5rem;
    }
    
    .whitepaper-featured-card,
    .whitepaper-section-card {
        padding: 1.5rem;
    }
}

/* ========================================
   ROADMAP STYLES
   ======================================== */

.roadmap-wrapper_main, .whitepaper-wrapper, .faq-wrapper_main, .support-wrapper_main, .page_pre_items, .error-404-wrapper, .search-wrapper_main, .rounds-wrapper_main, .last-updates-wrapper_main, .our-story-wrapper_main, .partners-wrapper_main {
    overflow: hidden;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
/* Desktop override: allow sticky sidebar to work within whitepaper */
@media (min-width: 901px) {
    .whitepaper-container {
        position: relative;
        overflow: visible;
    }
    .whitepaper-sidebar {
        position: sticky !important;
        top: 90px;
        height: calc(100vh - 110px);
        max-height: calc(100vh - 110px);
        margin-bottom: 63px;
    }
    .whitepaper-content{
        padding-top: 0;
    }
}
.roadmap-wrapper {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background texture */
.roadmap-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(222, 250, 57, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(222, 250, 57, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Year Navigation */
.roadmap-year-navigation {
    position: sticky;
    top: 0;
    z-index: 100;
    /* background: rgba(10, 10, 10, 0.95); */
    /* backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding-left: 20px;
}

.year-nav-btn {
    background: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.year-nav-btn:hover {
    color: #DEFA39;
}

.year-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.3);
}

.year-nav-btn.disabled:hover {
    color: rgba(255, 255, 255, 0.3);
}
button.year-btn:hover, button.year-btn:focus, button.year-btn:active,
button.year-nav-btn:hover, button.year-nav-btn:focus, button.year-nav-btn:active{
    outline: unset;
    box-shadow: unset;
    border: unset;
    background: unset;
    color: unset;
    text-decoration: unset;
}

.year-buttons {
    display: flex;
    gap: 0.5rem;
}

.year-btn {
    background: none;
    border: unset;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8rem;
    position: relative;
}
.year-btn:before{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 35%;
    width: 30%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.year-btn:after{
    content: '';
    position: absolute;
    top: 2px;
    left: -8%;
    width: 116%;
    height: 116%;
    background-image: url(./static/Pill.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.year-btn:hover {
    border: unset;
    color: white;
    background-color: unset;
}
.year-btn:hover:before {
    background-color: white;
}


.year-btn.active {
    color: #defa39;
    font-size: 0.9rem;
    font-weight: 500;
    padding-top: 1rem;
}
.year-btn.active:after{
    opacity: 1;
}
.year-btn.active:before{
    background-color: transparent;
}

/* Roadmap Header Styles */
.roadmap-header {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.roadmap-breadcrumbs {
    margin-bottom: 1rem;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.roadmap-breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.roadmap-breadcrumbs a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.current-page {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.roadmap-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.roadmap-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 2rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    opacity: 0.9;
}

.roadmap-description {
    margin-bottom: 3rem;
}

.roadmap-description p {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 800px;
}

.roadmap-cta {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.roadmap-cta span {
    margin-right: 0.5rem;
}

.whitepaper-link {
    color: #00d573;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whitepaper-link:hover {
    color: #00ff8c;
    text-shadow: 0 0 8px rgba(0, 213, 115, 0.4);
}

/* Timeline Container */
.roadmap-timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
    min-height: 400px; /* Minimum height to prevent collapse */
}

.roadmap-timeline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    padding-left: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.roadmap-timeline.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

/* Individual Timeline Line Segments - Each step has its own line */
.roadmap-step-item::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

/* Last item doesn't need line extension */
.roadmap-step-item:last-child::before {
    bottom: 0;
}

/* Active/Highlighted line segments */
.roadmap-step-item.highlighted::before {
    background: rgba(222, 250, 57, 0.3);
    box-shadow: 0 0 10px rgba(222, 250, 57, 0.2);
}

.roadmap-step-item.completed::before {
    background: rgba(76, 175, 80, 0.3);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

.roadmap-step-item.in-progress::before {
    background: rgba(255, 152, 0, 0.3);
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.2);
}

/* Roadmap Step Items */
.roadmap-step-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.roadmap-step-item.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Fallback: Show content if JavaScript is disabled or fails */
.no-js .roadmap-step-item,
.roadmap-step-item.no-animation {
    opacity: 1;
    transform: translateX(0);
}

/* Marker Styles - Enhanced Design */
.roadmap-marker {
    position: absolute;
    left: calc(1.5rem - 6px);
    top: 0.5rem;
    z-index: 2;
}

.marker-circle {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
}

.roadmap-marker.highlighted .marker-circle {
    background: #DEFA39;
    border-color: #DEFA39;
    box-shadow: 
        0 0 0 2px rgba(222, 250, 57, 0.3),
        0 0 20px rgba(222, 250, 57, 0.5),
        0 8px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.roadmap-marker.completed .marker-circle {
    background: #00d573;
    box-shadow: 0px 0px 5px #00d573, 0px 0px 10px #00d573ab, 0px 0px 15px #00d5735e, 0px 0px 20px #00d5733d;
}

.roadmap-marker.in-progress .marker-circle {
    background: #FF9800;
    border-color: #FF9800;
    box-shadow: 
        0 0 0 2px rgba(255, 152, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    animation: roadmapPulse 2s infinite;
}
@keyframes roadmapPulse {
    0%, 100% {
        scale: 1;
        opacity: 1; }
    50% {
        scale: 1.6;
        opacity: 0.8; }
}

.roadmap-marker.in-progress .marker-circle::before {
    background: rgba(255, 255, 255, 0.8);
}

/* Content Styles - Enhanced Design */
.roadmap-content {
    border-radius: 16px;
    padding: 0 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.roadmap-step-title {
    color: #ffffff;
    font-size: 1rem;
    padding-top: 4px;
    padding-left: 10px;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.roadmap-step-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

.roadmap-step-content ul {
    margin: 1.5rem 0;
    padding-left: 1.8rem;
}

.roadmap-step-content li {
    margin: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.roadmap-step-content li::marker {
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

.roadmap-step-content h1,
.roadmap-step-content h2,
.roadmap-step-content h3,
.roadmap-step-content h4,
.roadmap-step-content h5,
.roadmap-step-content h6 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    line-height: 1.3;
}

.roadmap-step-content p {
    margin: 1rem 0;
}

.roadmap-step-content strong {
    /* color: #DEFA39; */
    font-weight: 700;
}

.roadmap-step-content a {
    color: #DEFA39;
    text-decoration: none;
    border-bottom: 1px solid rgba(222, 250, 57, 0.3);
    transition: all 0.3s ease;
}

.roadmap-step-content a:hover {
    border-bottom-color: #DEFA39;
}

/* Empty State */
.roadmap-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.roadmap-empty p {
    font-size: 1.1rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .roadmap-header {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .roadmap-title {
        font-size: 2.5rem;
    }
    
    .roadmap-subtitle {
        font-size: 1.25rem;
    }
    
    .roadmap-description p {
        font-size: 1rem;
    }
    
    .roadmap-year-navigation {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .year-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .roadmap-timeline-container {
        padding: 0px;
    }
    
    .roadmap-timeline {
        padding: 2rem 1rem;
        padding-left: 2rem;
    }
    
    .roadmap-timeline::before {
        left: 1rem;
    }
    
    /* .roadmap-marker {
        left: -2rem;
    } */
    
    /* .roadmap-content {
        padding: 1.5rem;
    } */
    
    .roadmap-step-title {
        /* font-size: 1.3rem; */
    }
    
    .roadmap-step-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .year-buttons {
        gap: 0.25rem;
    }
    
    .year-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .roadmap-timeline-container {
        padding: 0px;
    }
    
    /* .roadmap-content {
        padding: 1.5rem 0.75rem;
        padding: 1rem;
    } */
    
    .roadmap-step-title {
        /* font-size: 1.2rem; */
    }
}

/* ========================================
   OUR STORY PAGE STYLES
   ======================================== */
body.koraxon-theme.page-template-page-our-story{
    background-color: #001d04;
}
.our-story-wrapper {
    /* background: #1A1D1F; */
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
.our-story-wrapper_main{
    height: 200vh;
}

/* Hero Section */
.our-story-hero {
    padding: 80px 0 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgb(255 255 255 / 40%);
    line-height: 1.2;
    color: #8f8f8f;
    background: linear-gradient(120deg, #ffffff 0%, #787878 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 0.9rem;
    color:white;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-flask-wrap {
    position: relative;
}

.hero-flask {
    width: 140px;
    height: 212px;
    margin: 0 auto;
    position: relative;
    background: url(./static/our-story-top.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 3;
    left:30px;
}

.hero-flask-effect {
    position: absolute;
    left: 0;
    top: -100px;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-flask-effect > svg {
    width: 100%;
}
.hero-flask-effect2 > svg {
    position: absolute;
    left: 0px;
    top: 200px;
}

/* Section Styles */
.our-story-section {
    padding: 20px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.page-template-page-our-story .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.section-description {
    font-size: 0.8rem;
    color: #969696;
    line-height: 1.6;
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.mission-column,
.vision-column {
    text-align: left;
}

.column-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #8f8f8f;
    background: linear-gradient(135deg, #ffffff 0%, #858585 30%, #3f3f3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 0px 3px #0000003d;
}

div.column-content, .column-content p, .column-content .mission-content {
    font-size: 0.85rem;
    color: #D3D3D3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission-list {
    margin-top: 20px;
    padding-left: 20px;
}

.mission-list li {
    font-size: 0.85rem;
    color: #D3D3D3;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Rare Elements Section */
.rare-elements-section {
    padding: 100px 0 20px;
    text-align: center;
    position: relative;
}

.elements-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 30px;
}

.elements-flask {
    width: 200px;
    height: 200px;
    margin: 40px auto 0;
    position: relative;
}
.hero-flask-wrap2 .hero-flask {
    left: 0;
    background: url(./static/our-story-btm.svg);
    width: 159px;
    height: 150px;
}
.hero-flask-wrap2 .hero-flask-effect{
    top: -140px;
}
.hero-flask-wrap2 .hero-flask-effect2 > svg{
    top: 190px;
}
.page-template-page-our-story .elements-content .section-title{
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgb(255 255 255);
    position: relative;
    z-index: 8;
}
.page-template-page-our-story .elements-content .section-description{
    color: #dcdcdc;
}
.hero-flask-effect_4{
    height: 100vh;
}
/* Features Section */
.page-template-page-our-story .features-section,
.page-template-page-our-story .bottom-features-section {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    background: transparent;
    top: 0;
    padding-top: 0;
    margin-top: 50px;
}
.page-template-page-our-story .features-section .our-story-wrapper_main{
    pointer-events: none;
}

.page-template-page-our-story .feature-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.page-template-page-our-story .feature-item {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 300px;
}
.page-template-page-our-story .feature-item_special{
    width: 100%;
    margin: 20px auto;
    padding: 10px;
}
.page-template-page-our-story .feature-item_special .section-title{
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    color: #8f8f8f;
    background: linear-gradient(90deg, #ffffff 0%, #3f3f3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    margin-top: 10px;
}

.page-template-page-our-story .feature-icon {
    width: 97px;
    height: 101px;
    margin: 0 auto;
    font-size: 2rem;
    background: url(./static/our-story-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    text-shadow: 0 0 10px rgba(160, 255, 160, 0.5);
    left: 0;
    top: 0;
}

.page-template-page-our-story .feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
    color: #8f8f8f;
    background: linear-gradient(180deg, #ffffff 0%, #3f3f3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.page-template-page-our-story.feature-description {
    font-size: 0.8rem;
    color: #9a9a9a;
    line-height: 1.6;
}

/* Early Stage Section */
.page-template-page-our-story .early-stage-section {
    padding: 100px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.page-template-page-our-story .early-stage-content {
    position: relative;
}

.page-template-page-our-story .early-stage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0FFA0;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(160, 255, 160, 0.5);
}

/* Tokenomics Section */
.page-template-page-our-story .tokenomics-section {
    padding: 100px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}
.page-template-page-our-story .tokenomics-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background: linear-gradient(to bottom, #001d05, #0c0c0c);
    z-index: -1;
    pointer-events: none;
}
.page-template-page-our-story .tokenomics-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff 0%, #4bc610 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0px 0px 5px #0000005e;
}

.page-template-page-our-story .tokenomics-description {
    font-size: 0.85rem;
    color: #e6e6e6;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-template-page-our-story .footer{
        padding: 2rem 1rem 2rem;
    }
    .page-template-page-our-story .newsletter-footer-spotlight{
        top: -50px;
    }
    .page-template-page-our-story .hero-title {
        font-size: 2.5rem;
    }
    
    .page-template-page-our-story .section-title,
    .page-template-page-our-story .column-title {
        font-size: 1.2rem;
    }
    
    .page-template-page-our-story .tokenomics-title {
        font-size: 2.5rem;
    }
    
    .page-template-page-our-story .mission-vision-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .page-template-page-our-story .feature-grid {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .page-template-page-our-story .hero-title {
        font-size: 2rem;
    }
    
    .page-template-page-our-story .section-title,
    .page-template-page-our-story .column-title {
        font-size: 1.1rem;
    }
    
    .page-template-page-our-story .tokenomics-title {
        font-size: 2rem;
    }
    
    .page-template-page-our-story .hero-description,
    .page-template-page-our-story .section-description,
    .page-template-page-our-story .column-content p,
    .page-template-page-our-story.feature-description,
    .page-template-page-our-story .tokenomics-description {
        font-size: 0.8rem;
    }
}

/* ========================================
   OUR STORY ADMIN META BOX STYLES
   ======================================== */

.our-story-config {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.our-story-config h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #DEFA39;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content-section {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    border-left: 4px solid #DEFA39;
}

.content-section h4 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.list-item input {
    flex: 1;
}

.remove-list-item {
    background: #dc3545 !important;
    color: white !important;
    border: none !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

.remove-list-item:hover {
    background: #c82333 !important;
}

.features-container .feature-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.features-container .feature-item h5 {
    margin-top: 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.remove-feature {
    background: #dc3545 !important;
    color: white !important;
    border: none !important;
    margin-top: 10px !important;
}

.remove-feature:hover {
    background: #c82333 !important;
}

/* ========================================
   WHITEPAPER LANDING PAGE STYLES
   ======================================== */

.whitepaper-landing {
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
}

.whitepaper-landing-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0;
    text-align: center;
}

.whitepaper-landing-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #DEFA39;
}

.whitepaper-landing-subtitle {
    font-size: 1.3rem;
    color: #DEFA39;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.whitepaper-landing-description {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.whitepaper-landing-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #DEFA39;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #DEFA39;
    border-color: #DEFA39;
}

.btn-secondary:hover {
    background: #DEFA39;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.whitepaper-landing-sections {
    padding: 4rem 0;
}

.whitepaper-landing-sections h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 3rem 0;
    color: #DEFA39;
}

.whitepaper-landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.whitepaper-landing-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.whitepaper-landing-card:hover {
    border-color: #DEFA39;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(222, 250, 57, 0.1);
}

.whitepaper-landing-card-header h3 {
    color: #DEFA39;
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.whitepaper-landing-card-header p {
    color: #ccc;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.whitepaper-landing-pages {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.whitepaper-landing-pages li {
    margin-bottom: 0.5rem;
}

.whitepaper-landing-pages a {
    color: #DEFA39;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.whitepaper-landing-pages a:hover {
    color: #ffffff;
}

.whitepaper-landing-link {
    color: #DEFA39;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whitepaper-landing-link:hover {
    color: #ffffff;
}

.whitepaper-landing-featured {
    background: #1a1a1a;
    padding: 4rem 0;
}

.whitepaper-landing-featured h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 3rem 0;
    color: #DEFA39;
}

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

.whitepaper-landing-featured-card {
    background: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.whitepaper-landing-featured-card:hover {
    border-color: #DEFA39;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(222, 250, 57, 0.1);
}

.whitepaper-landing-featured-card h3 {
    color: #DEFA39;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.whitepaper-landing-featured-card h3 a {
    color: inherit;
    text-decoration: none;
}

.whitepaper-landing-featured-card p {
    color: #ccc;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.whitepaper-landing-read-more {
    color: #DEFA39;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whitepaper-landing-read-more:hover {
    color: #ffffff;
}

.no-content {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    padding: 3rem 0;
}

/* Responsive Design for Landing Page */
@media (max-width: 768px) {
    .whitepaper-landing-content h1 {
        font-size: 2.5rem;
    }
    
    .whitepaper-landing-subtitle {
        font-size: 1.1rem;
    }
    
    .whitepaper-landing-description {
        font-size: 1rem;
    }
    
    .whitepaper-landing-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .whitepaper-landing-sections h2,
    .whitepaper-landing-featured h2 {
        font-size: 2rem;
    }
    
    .whitepaper-landing-grid,
    .whitepaper-landing-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .whitepaper-landing-card,
    .whitepaper-landing-featured-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .whitepaper-landing-hero {
        padding: 4rem 0;
    }
    
    .whitepaper-landing-content h1 {
        font-size: 2rem;
    }
    
    .whitepaper-landing-subtitle {
        font-size: 1rem;
    }
    
    .whitepaper-landing-description {
        font-size: 0.9rem;
    }
    
    .whitepaper-landing-sections,
    .whitepaper-landing-featured {
        padding: 2rem 0;
    }
    
    .whitepaper-landing-sections h2,
    .whitepaper-landing-featured h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   WHITEPAPER JAVASCRIPT FEATURES
   ======================================== */

/* Code copy button */
.code-copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #DEFA39;
    color: #1a1a1a;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.code-copy-btn:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

/* Table of Contents */
.whitepaper-toc {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.whitepaper-toc h3 {
    color: #DEFA39;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.whitepaper-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.whitepaper-toc li {
    margin-bottom: 0.5rem;
}

.whitepaper-toc a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.whitepaper-toc a:hover {
    color: #DEFA39;
}

.whitepaper-toc .toc-h2 {
    font-weight: 600;
    padding-left: 0;
}

.whitepaper-toc .toc-h3 {
    padding-left: 1rem;
}

.whitepaper-toc .toc-h4 {
    padding-left: 2rem;
}

/* Loading indicator */
.whitepaper-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    color: #DEFA39;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid #DEFA39;
    z-index: 9999;
    font-weight: 600;
}

/* Mobile toggle for whitepaper */
.whitepaper-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    box-shadow: 0px 0px 12px white;
    transition: all 0.3s ease;
}
.whitepaper-mobile-toggle.active {
    border: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0px 0px 2px #DEFA39;
    color: #DEFA39;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    z-index: 9999;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.notification-success {
    border-color: #4CAF50;
}

.notification-error {
    border-color: #f44336;
}

.notification-info {
    border-color: #2196F3;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-message {
    color: #ffffff;
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
}

.notification-close:hover {
    color: #ffffff;
}

/* Responsive design for whitepaper features */
@media (max-width: 900px) {
    .whitepaper-mobile-toggle {
        display: block;
    }
    .whitepaper-container{
        z-index: 4;
        min-height: unset;
    }
    .whitepaper-container.mobile-open{
        z-index: 6;
    }
    
    .whitepaper-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .whitepaper-toc {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ========================================
 * PAGE TEMPLATE STYLES (Dark Cosmic Theme)
 * ======================================== */

.page {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    position: relative;
    overflow-x: hidden;
}
.page-template-page-roadmap, .page-template-page-whitepaper{
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Global overflow prevention for whitepaper pages */
.page-template-page-whitepaper * {
    max-width: 100%;
    box-sizing: border-box;
}

.page-template-page-whitepaper h1,
.page-template-page-whitepaper h2,
.page-template-page-whitepaper h3,
.page-template-page-whitepaper h4,
.page-template-page-whitepaper h5,
.page-template-page-whitepaper h6,
.page-template-page-whitepaper p,
.page-template-page-whitepaper span,
.page-template-page-whitepaper div {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}
/* ========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Global GPU acceleration for mobile */
@media (max-width: 900px) {
    /* Optimize scrolling performance */
    html, body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Optimize all interactive elements */
    button, a, input, textarea, select {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Optimize images and media */
    img, video, canvas {
        max-width: 100%;
        height: auto;
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    /* Optimize animations */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Page container */
.page .site-main {
    position: relative;
    z-index: 2;
    background: transparent;
}

.page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

/* Page content */
.page .page-content {
    padding: 3rem;
    margin: 2rem 0;
    min-height: 100vh;
}

/* Page breadcrumbs */
.page .page-breadcrumbs {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.page .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #999;
}

.page .breadcrumb-item a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page .breadcrumb-item a:hover {
    color: #DEFA39;
}

.page .breadcrumb-separator {
    color: #666;
}

.page .breadcrumb-item.current span {
    color: #DEFA39;
    font-weight: 500;
}

/* Page header */
.page .entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.page .entry-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
}

.page .entry-subtitle {
    font-size: 1.5rem;
    color: #E0E0E0;
    margin: 0;
    font-weight: 400;
    opacity: 0.8;
}

/* Page thumbnail */
.page .page-thumbnail {
    margin: 2rem 0;
    overflow: hidden;
}

.page .page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page content text */
.page .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
}

.page .entry-content h1,
.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4,
.page .entry-content h5,
.page .entry-content h6 {
    color: #FFFFFF;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.page .entry-content h1 { font-size: 2.5rem; }
.page .entry-content h2 { font-size: 2rem; }
.page .entry-content h3 { font-size: 1.75rem; }
.page .entry-content h4 { font-size: 1.5rem; }
.page .entry-content h5 { font-size: 1.25rem; }
.page .entry-content h6 { font-size: 1.1rem; }

.page .entry-content p {
    margin-bottom: 1.5rem;
    color: #E0E0E0;
}

.page .entry-content ul,
.page .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page .entry-content li {
    margin-bottom: 0.5rem;
    color: #E0E0E0;
}

.page .entry-content blockquote {
    background: rgba(222, 250, 57, 0.05);
    border-left: 4px solid #DEFA39 !important;
}

.page .entry-content code {
    background: rgba(222, 250, 57, 0.1);
    color: #DEFA39;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
}

.page .entry-content pre {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
}

.page .entry-content pre code {
    background: none;
    color: #E0E0E0;
    padding: 0;
}

/* Page links */
.page .entry-content a {
    color: #DEFA39;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.page .entry-content a:hover {
    color: #FFFFFF;
    border-bottom-color: #DEFA39;
    text-shadow: 0 0 10px rgba(222, 250, 57, 0.5);
}

/* Page comments */
.page .page-comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page links navigation */
.page .page-links {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page .page-links a {
    color: #DEFA39;
    text-decoration: none;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page .page-links a:hover {
    background: rgba(222, 250, 57, 0.1);
    color: #FFFFFF;
}

/* Responsive design for page template */
@media (max-width: 768px) {
    .page .container {
        padding: 1rem;
    }
    
    .page .page-content {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .page .entry-title {
        font-size: 2rem;
    }
    
    .page .entry-content h1 { font-size: 1.75rem; }
    .page .entry-content h2 { font-size: 1.5rem; }
    .page .entry-content h3 { font-size: 1.25rem; }
    .page .entry-content h4 { font-size: 1.1rem; }
    .page .entry-content h5 { font-size: 1rem; }
    .page .entry-content h6 { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .page .page-content {
        padding: 1.5rem;
    }
    
    .page .entry-title {
        font-size: 1.75rem;
    }
    
    .page .entry-content {
        font-size: 1rem;
    }
}

/* AJAX Navigation Styles */
.loading-overlay {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: start;
    z-index: 9999;
    backdrop-filter: blur(5px);
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    /* Mobile performance optimizations */
    will-change: opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.loading-overlay.show {
    opacity: 1;
}

.loading-overlay .loading-spinner {
    background-image: url(./static/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    border: unset;
    margin-top: 70px;
    box-shadow: unset;
    animation: pulse 1s ease-in-out infinite;
    /* Mobile performance optimizations */
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes pulse {
    0%, 100% {     
        rotate: 0deg;
        scale: 1;
        opacity: 1; 
    }
    50% { 
        rotate: 28deg;
        scale: 0.9;
        opacity: 0.8; 
    }
}

/* Mobile performance optimizations for animations */
@media (max-width: 768px) {
    .loading-overlay {
        /* Reduce backdrop-filter on mobile for better performance */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    
    .loading-overlay .loading-spinner {
        /* Optimize animation for mobile */
        animation: pulse 1.2s ease-in-out infinite;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .loading-overlay {
            transition: none;
        }
        
        .loading-overlay .loading-spinner {
            animation: none;
        }
    }
}

/* Mobile Menu Search */
.mobile-menu-search {
    padding: 10px 0px 0px;
      margin: 10px auto;
      border-top: 1px solid #26272a;
  }
  
  .mobile-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
    transition: all 0.3s ease;
  }
  
  .mobile-search-input-wrapper:focus-within,
  .mobile-search-input-wrapper.focused {
    border-color: #d1ff02;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(209, 255, 2, 0.1);
  }
  .mobile-search-input-wrapper input[type="text"],
  .mobile-search-input-wrapper input[type="text"]:hover,
  .mobile-search-input-wrapper input[type="text"]:focus{
    color: white
  }
  
  .mobile-search-icon {
    color: #9ca3af;
    font-size: 14px;
    margin-right: 8px;
    flex-shrink: 0;
  }
  
  .mobile-search-input {
    flex: 1;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    padding: 0;
    margin-right: 8px;
  }
  
  .mobile-search-input::placeholder {
    color: #9ca3af;
  }
  
  .mobile-search-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    box-sizing: border-box;
  }
  
  .mobile-search-btn:hover, .mobile-search-btn:active {
    background: rgba(209, 255, 2, 0.1);
    border: 1px solid #d1ff02;
    color: #d1ff02;
  }
  
  .mobile-search-blog {
    background: linear-gradient(135deg, rgba(209, 255, 2, 0.1), rgba(209, 255, 2, 0.05));
    border-color: rgba(209, 255, 2, 0.2);
  }
  
  .mobile-search-blog:hover, .mobile-search-blog:active {
    background: linear-gradient(135deg, rgba(209, 255, 2, 0.2), rgba(209, 255, 2, 0.1));
  }
  
  .mobile-search-site {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  }
  
  .mobile-search-site:hover, .mobile-search-site:active {
    background: linear-gradient(135deg, rgba(209, 255, 2, 0.1), rgba(209, 255, 2, 0.05));
    border-color: #d1ff02;
    color: #d1ff02;
  }



/* Navigation link hover effects */
.whitepaper-navigation a,
.whitepaper-breadcrumbs a {
    transition: all 0.2s ease-in-out;
    /* Mobile performance optimizations */
    will-change: transform, color;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.whitepaper-navigation a:hover,
.whitepaper-breadcrumbs a:hover {
    color: white;
    transform: translateX(5px) translateZ(0);
    -webkit-transform: translateX(5px) translateZ(0);
}

/* Mobile optimizations for navigation */
@media (max-width: 768px) {
    .whitepaper-navigation a,
    .whitepaper-breadcrumbs a {
        /* Optimize touch interactions */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .whitepaper-navigation a,
        .whitepaper-breadcrumbs a {
            transition: none;
        }
        
        .whitepaper-navigation a:hover,
        .whitepaper-breadcrumbs a:hover {
            transform: none;
            -webkit-transform: none;
        }
    }
}

/* Active state improvements */
.whitepaper-navigation a.active,
.whitepaper-breadcrumbs a.active {
    color: #d1ff02;
    font-weight: 600;
    transform: translateX(0px);
    position: relative;
}
.img_page__1{
    position: absolute;
    top:0;
    left:0;
    width: auto;
    height: 100%;
}
.img_page__2{
    position: absolute;
    top:0;
    left:0;
    width: auto;
    height: 100%;
}
.img_page__3{
    position: absolute;
    top:0;
    right:0;
    width: auto;
    height: 100%;
}
.img_page__4{
    position: absolute;
    top:0;
    right:0;
    width: 100vw;
    height: auto;
}
.img_page__4 svg{
    width: 100%;
}
@media (max-width: 768px) {
    .page-template-page-roadmap .footer {
        padding: 2rem 1rem 2rem;
    }
    .page-template-page-roadmap .container {
        padding: 3.5rem 0 0;
    }
    .page-template-page-roadmap .container{
        padding: 5rem 0 0;
    }
    .page-template-page-roadmap .newsletter-footer-spotlight{
        top:0;
    }
}


/* Search Modal Styles */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .search-modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .search-overlay {
    width: 100%;
    height: 100%;
    background: rgba(14, 16, 20, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .search-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
  }
  
  .search-modal.active .search-container {
    transform: translateY(0);
  }
  
  .search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .search-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
  }
  
  .search-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .search-close:hover {
    color: #D1FF00;
    background: rgba(209, 255, 0, 0.1);
  }
  
  .search-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
  }
  
  .search-input-group:focus-within {
    border-color: #D1FF00;
    box-shadow: 0 0 20px rgba(209, 255, 0, 0.2);
  }
  
  .search-input {
    flex: 1;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    padding: 0;
  }
  
  .search-input::placeholder {
    color: #9ca3af;
  }
  
  .search-submit {
    background: #D1FF00;
    border: none;
    color: #0e1014;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 12px;
  }
  
  .search-submit:hover {
    background: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 255, 0, 0.3);
  }
  
  .search-suggestions h4 {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .suggestion-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .suggestion-tag:hover {
    background: rgba(209, 255, 0, 0.1);
    border-color: #D1FF00;
    color: #D1FF00;
    transform: translateY(-2px);
  }
  
  /* Body scroll prevention when search is open */
  body.search-open {
    overflow: hidden;
  }
  
  /* Responsive Search Modal */
  @media (max-width: 768px) {
    .search-container {
      padding: 30px 20px;
      margin: 20px;
    }
    
    .search-header h3 {
      font-size: 20px;
    }
    
    .search-input-group {
      padding: 12px;
    }
    
    .search-input {
      font-size: 14px;
    }
    
    .search-submit {
      padding: 10px 12px;
      font-size: 14px;
    }
    
    .suggestion-tags {
      gap: 8px;
    }
    
    .suggestion-tag {
      padding: 6px 12px;
      font-size: 12px;
    }
  }
  
  /* Search Results Page Styles */
  .search-results-header {
    padding: 60px 0 0px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
  }
  
  .search-header-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .search-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  
  .search-subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin: 0;
  }
  
  .search-results-content {
    padding: 60px 0;
    position: relative;
  }
  
  .search-results-list {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}
  
  .search-result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    align-items: start;
  }
  
  .search-result-card:hover {
    border-color: rgba(209, 255, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  .result-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 150px;
  }
  
  .result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .search-result-card:hover .result-image img {
    transform: scale(1.05);
  }
  
  .result-categories {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
  }
  
  .result-categories .category-tag {
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .result-categories .category-tag:hover {
    background: #D1FF00;
    color: #0e1014;
  }
  
  .result-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .result-meta {
    display: flex;
    gap: 10px;
    color: #9ca3af;
    font-size: 14px;
  }
  
  .result-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
  }
  
  .result-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .result-title a:hover {
    color: #D1FF00;
  }
  
  .result-excerpt {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
  }
  
  .search-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
  .pagination-links {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .pagination-links a,
  .pagination-links span {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .pagination-links a:hover {
    background: rgba(209, 255, 0, 0.1);
    border-color: #D1FF00;
    color: #D1FF00;
  }
  
  .pagination-links .current {
    background: #D1FF00;
    color: #0e1014;
    border-color: #D1FF00;
  }
  
  /* No Results */
  .no-results {
    text-align: center;
    padding: 60px 20px;
  }
  
  .no-results-icon {
    font-size: 64px;
    color: #9ca3af;
    margin-bottom: 30px;
  }
  
  .no-results h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .no-results p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .no-results .search-suggestions h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
  }

/* Search Modal Styles - Enhanced Version */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    will-change: opacity, visibility;
    transform: translateZ(0);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(1200px 600px at 50% 0%, rgba(209,255,2,0.08), transparent 60%), rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(14px) saturate(120%);
}

.search-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.98);
    width: min(1200px, 92%);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(209, 255, 2, 0.12);
    border-radius: 28px;
    padding: 28px 28px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
    box-shadow: 0 0 0 1px rgba(209,255,2,0.06), 0 30px 80px rgba(0,0,0,0.45), inset 0 0 40px rgba(209,255,2,0.04);
    backdrop-filter: blur(5px);
}

.search-modal.active .search-modal-content {
    transform: translate(-50%, -50%) scale(1);
    border-color: rgba(209, 255, 2, 0.18);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.search-modal-header h3 {
    color: #d1ff02;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.search-modal-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.search-modal-close:hover {
    color: #d1ff02;
    background: rgba(209, 255, 2, 0.1);
    transform: scale(1.1) translateZ(0);
}

/* Search Tabs */
.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.search-tab {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    will-change: transform, background-color, border-color;
    transform: translateZ(0);
}

.search-tab.active {
    background: rgba(209, 255, 2, 0.1);
    border-color: #d1ff02;
    color: #d1ff02;
}

.search-tab:hover {
    background: rgba(209, 255, 2, 0.05);
    border-color: rgba(209, 255, 2, 0.3);
    transform: translateY(-2px) translateZ(0);
}

.search-tab i {
    font-size: 16px;
}

/* Search Input Container */
.search-input-container {
    margin-bottom: 25px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 18px 20px;
}

.search-input-wrapper input[type="text"].search-input {
    background: rgba(13, 15, 20, 0.6);
    border: 1px solid rgba(209, 255, 2, 0.12);
    border-radius: 999px;
    transition: all 0.25s ease;
    will-change: border-color, box-shadow, background-color;
    box-shadow: inset 0 0 0 1px rgba(209,255,2,0.06), 0 8px 30px rgba(0,0,0,0.35);
    margin-left: 30px;
}

.search-input-wrapper input[type="text"].search-input:focus-within,
.search-input-wrapper input[type="text"].search-input:hover,
.search-input-wrapper input[type="text"].search-input:active,
.search-input-wrapper input[type="text"].search-input:focus,
.search-input-wrapper input[type="text"].search-input:-internal-autofill-selected {
    border-color: #d1ff02;
    background: rgba(13, 15, 20, 0.75);
    box-shadow: 0 0 0 4px rgba(209, 255, 2, 0.08), 0 12px 40px rgba(0,0,0,0.45);
    color: white !important;
}

.search-icon {
    color: #aab1b9;
    font-size: 20px;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    color: #e8f0e6;
    font-size: 20px;
    padding: 6px 0;
    outline: none;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-submit {
    background: linear-gradient(180deg, #d1ff02, #b6e100);
    color: #0e1014;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 6px 20px rgba(209,255,2,0.25);
}

.search-submit:hover {
    background: #b8e600;
    transform: scale(1.05) translateZ(0);
}

/* Search Results */
.search-results {
    max-height: 380px;
    overflow-y: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 18px;
    
    /* Custom scrollbar styles */
    scrollbar-width: thin;
    scrollbar-color: rgba(209, 255, 2, 0.3) rgba(255, 255, 255, 0.05);
}

/* Webkit scrollbar styles (Chrome, Safari, Edge) */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin: 4px 0;
}

.search-results::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(209, 255, 2, 0.4), rgba(209, 255, 2, 0.2));
    border-radius: 3px;
    border: 1px solid rgba(209, 255, 2, 0.1);
    transition: all 0.3s ease;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(209, 255, 2, 0.6), rgba(209, 255, 2, 0.4));
    box-shadow: 0 0 8px rgba(209, 255, 2, 0.3);
}

.search-results::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, rgba(209, 255, 2, 0.8), rgba(209, 255, 2, 0.6));
}

.search-result-item {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.25s ease;
    will-change: background-color, transform;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(209, 255, 2, 0.06);
}

.search-result-item:hover .search-result-thumbnail {
    transform: scale(1.05);
}

.search-result-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
    will-change: transform;
}

.search-result-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(209, 255, 2, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-categories {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    display: none;
}

.search-result-category {
    background: rgba(209, 255, 2, 0.1);
    color: #d1ff02;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-title {
    color: #e9ff7a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.search-result-excerpt {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    max-width: 600px;
}

.search-result-whitepaper .search-result-excerpt, 
.search-result-faq .search-result-excerpt {
    display: none;
}

.search-result-item.search-result-whitepaper, 
.search-result-item.search-result-faq {
    align-items: center;
    justify-content: space-between;
}

.search-result-item.search-result-faq {
    align-items: flex-start;
    border-left: 3px solid rgba(168, 85, 247, 0.3);
    padding-left: 25px;
}

.search-result-item.search-result-faq:hover {
    border-left-color: #a855f7;
    background: rgba(168, 85, 247, 0.08);
}

.search-result-faq .search-result-title {
    color: #c084fc;
}

.search-result-meta {
    color: #6b7280;
    font-size: 12px;
}

/* Search Loading */
.search-loading {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(209, 255, 2, 0.2);
    border-top: 3px solid #d1ff02;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.no-results p {
    margin: 10px 0;
    font-size: 16px;
}

/* Search Actions */
.search-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.view-all-results {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #d1ff02, #b6e100);
    color: #0e1014;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 6px 20px rgba(209,255,2,0.25);
}

.view-all-results:hover {
    background: #b8e600;
    transform: scale(1.05) translateZ(0);
    color: #0e1014;
    text-decoration: none;
}

.view-all-results i {
    font-size: 12px;
}

/* Enhanced Search Results Page Styles */
.search-results-header {
    padding: 60px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Search Breadcrumb */
.search-breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9ca3af;
}

.breadcrumb-content a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
    color: #d1ff02;
}

.breadcrumb-separator {
    color: #6b7280;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* Search Page Input */
.search-page-input {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-page-input .search-input-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-page-input .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(13, 15, 20, 0.6);
    border: 1px solid rgba(209, 255, 2, 0.12);
    border-radius: 999px;
    padding: 18px 20px;
    transition: all 0.25s ease;
    will-change: border-color, box-shadow, background-color;
    box-shadow: inset 0 0 0 1px rgba(209,255,2,0.06), 0 8px 30px rgba(0,0,0,0.35);
}

.search-page-input .search-input-wrapper:focus-within {
    border-color: #d1ff02;
    background: rgba(13, 15, 20, 0.75);
    box-shadow: 0 0 0 4px rgba(209, 255, 2, 0.08), 0 12px 40px rgba(0,0,0,0.45);
}

.search-page-input .search-icon {
    color: #aab1b9;
    font-size: 20px;
    margin-right: 12px;
}

.search-page-input .search-input[type="text"] {
    flex: 1;
    background: none;
    border: none;
    color: #e8f0e6;
    font-size: 18px;
    padding: 6px 0;
    outline: none;
}

.search-page-input .search-input[type="text"]::placeholder {
    color: #9ca3af;
}

.search-clear {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear:hover {
    color: #d1ff02;
    background: rgba(209, 255, 2, 0.1);
}

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

.search-info {
    flex: 1;
}

.search-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.search-query {
    color: #d1ff02;
    text-shadow: 0 0 20px rgba(209, 255, 2, 0.5);
}

.search-subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin: 0;
}

.search-actions-header {
    flex-shrink: 0;
}

.btn-search-modal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #d1ff02, #b6e100);
    color: #0e1014;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 6px 20px rgba(209,255,2,0.25);
}

.btn-search-modal:hover {
    background: #b8e600;
    transform: scale(1.05) translateZ(0);
    color: #0e1014;
    text-decoration: none;
}

.btn-search-modal i {
    font-size: 12px;
}

/* Search Results Content */
.search-results-content {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.search-result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.search-result-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(209, 255, 2, 0.2);
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.result-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.result-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-card:hover .result-thumbnail {
    transform: scale(1.05);
}

.result-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(209, 255, 2, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 48px;
}

.result-categories {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.result-category {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.result-content {
    padding: 20px;
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 12px;
}

.result-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.result-title a:hover {
    color: #d1ff02;
}

.result-excerpt {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-meta {
    display: flex;
    gap: 15px;
    color: #6b7280;
    font-size: 12px;
}

.result-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.result-meta i {
    font-size: 10px;
}

/* Search Pagination */
.search-pagination {
    text-align: center;
    margin-top: 50px;
}

.pagination-links {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pagination-links a,
.pagination-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-links a:hover {
    background: rgba(209, 255, 2, 0.1);
    border-color: #d1ff02;
    color: #d1ff02;
    transform: translateY(-2px);
}

.pagination-links .current {
    background: #d1ff02;
    color: #0e1014;
    border-color: #d1ff02;
}

/* Responsive Search Results Page */
@media (max-width: 768px) {
    .search-header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .search-title {
        font-size: 28px;
    }
    
    .search-subtitle {
        font-size: 16px;
    }
    
    .search-results-list {
        margin: 0 20px;
    }
    
    .result-image {
        height: 180px;
    }
    
    .result-content {
        padding: 15px;
    }
    
    .result-title {
        font-size: 16px;
    }
    
    .result-excerpt {
        font-size: 13px;
    }
    
    .result-meta {
        font-size: 11px;
    }
    
    .search-page-input .search-input-wrapper {
        padding: 15px 18px;
    }
    
    .search-page-input .search-input[type="text"] {
        font-size: 16px;
    }
    
    .breadcrumb-content {
        font-size: 13px;
        gap: 8px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .search-modal-content {
        width: 95%;
        padding: 20px 10px;
    }
    
    .search-tabs {
        flex-direction: column;
    }
    
    .search-modal-header h3 {
        font-size: 20px;
    }
    
    .search-input-wrapper {
        padding: 12px;
    }
    
    .search-input {
        font-size: 16px;
    }
    
    .search-submit {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .search-result-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-result-image {
        width: 100%;
        height: 120px;
    }
    
    .search-result-title {
        font-size: 14px;
    }
    
    .search-result-excerpt {
        font-size: 12px;
    }
}

/* Enhanced Search Page Styles - Matching Blog Design */
.search-results-header {
    padding: 10px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.search-info {
    flex: 1;
}

.search-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.search-query {
    color: #d1ff02;
    text-shadow: 0 0 20px rgba(209, 255, 2, 0.5);
}

.search-subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin: 0;
}

.search-actions-header {
    flex-shrink: 0;
}

.btn-search-modal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #d1ff02, #b6e100);
    color: #0e1014;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    will-change: transform;
    transform: translateZ(0);
    box-shadow: 0 6px 20px rgba(209,255,2,0.25);
}

.btn-search-modal:hover {
    background: #b8e600;
    transform: scale(1.05) translateZ(0);
    color: #0e1014;
    text-decoration: none;
}

.btn-search-modal i {
    font-size: 12px;
}
.search-modal .search-input-wrapper > i {
    margin-left: 0px;
}

/* Search Breadcrumb - Matching Blog Design */
.search-breadcrumb {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9ca3af;
}

.breadcrumb-content a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
    color: #d1ff02;
}

.breadcrumb-separator {
    color: #6b7280;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* Search Page Input - Matching Blog Design */
.search-page-input {
    padding: 10px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.search-page-input .search-input-container {
    margin: 0 auto;
    padding: 0 20px;
}

.search-page-input .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(13, 15, 20, 0.6);
    border: 1px solid rgba(209, 255, 2, 0.12);
    border-radius: 999px;
    padding: 6px 20px;
    transition: all 0.25s ease;
    will-change: border-color, box-shadow, background-color;
    box-shadow: inset 0 0 0 1px rgba(209,255,2,0.06), 0 8px 30px rgba(0,0,0,0.35);
}

.search-page-input .search-input-wrapper:focus-within {
    border-color: #d1ff02;
    background: rgba(13, 15, 20, 0.75);
    box-shadow: 0 0 0 4px rgba(209, 255, 2, 0.08), 0 12px 40px rgba(0,0,0,0.45);
}

.search-page-input .search-icon {
    color: #aab1b9;
    font-size: 20px;
    margin-right: 12px;
}

.search-page-input .search-input[type="text"] {
    flex: 1;
    background: none;
    border: none;
    color: #e8f0e6;
    font-size: 18px;
    padding: 6px 0;
    outline: none;
}

.search-page-input .search-input[type="text"]::placeholder {
    color: #9ca3af;
}

.search-clear {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear:hover {
    color: #d1ff02;
    background: rgba(209, 255, 2, 0.1);
}

/* Category Filter Styles */
.search-category-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.filter-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.filter-btn:hover {
    background: rgba(209, 255, 2, 0.1);
    border-color: #d1ff02;
    color: #d1ff02;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(209, 255, 2, 0.15);
    border-color: #d1ff02;
    color: #d1ff02;
    box-shadow: 0 0 0 3px rgba(209, 255, 2, 0.1);
}

.filter-btn i {
    font-size: 16px;
}

/* Updated Search Result Items - Matching Image Design */
.search-result-item {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.result-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.result-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.result-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.result-item-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.result-item-title a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Category-specific title colors to match icons */
.search-result-item[data-category="whitepaper"] .result-item-title a {
    color: #d1ff02;
}

.search-result-item[data-category="whitepaper"] .result-item-title a:hover {
    color: #ffffff;
}

.search-result-item[data-category="roadmap"] .result-item-title a {
    color: #ff69b4;
}

.search-result-item[data-category="roadmap"] .result-item-title a:hover {
    color: #ffffff;
}

.search-result-item[data-category="faq"] .result-item-title a {
    color: #9370db;
}

.search-result-item[data-category="faq"] .result-item-title a:hover {
    color: #ffffff;
}

.search-result-item[data-category="about"] .result-item-title a {
    color: #00bfff;
}

.search-result-item[data-category="about"] .result-item-title a:hover {
    color: #ffffff;
}

.search-result-item[data-category="contact"] .result-item-title a {
    color: #32cd32;
}

.search-result-item[data-category="contact"] .result-item-title a:hover {
    color: #ffffff;
}

/* Default for other categories */
.search-result-item[data-category="page"] .result-item-title a {
    color: #ffffff;
}

.search-result-item[data-category="page"] .result-item-title a:hover {
    color: #d1ff02;
}

.result-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    flex-shrink: 0;
}

.result-item-category {
    font-weight: 500;
}

.result-item-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.result-item-date {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-options {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .result-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .result-item-right {
        align-self: flex-end;
        font-size: 12px;
        padding-left: 40px;
    }
    
    .search-result-item {
        padding: 15px 20px;
    }
    
    .result-item-title {
        font-size: 14px;
    }
    
    .result-item-right {
        font-size: 12px;
    }
}

/* Pagination Styles */
.search-pagination {
    margin-top: 40px;
    text-align: center;
}

.search-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 4px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-pagination .page-numbers:hover {
    background: rgba(209, 255, 2, 0.1);
    border-color: #d1ff02;
    color: #d1ff02;
    transform: translateY(-2px);
}

.search-pagination .page-numbers.current {
    background: rgba(209, 255, 2, 0.15);
    border-color: #d1ff02;
    color: #d1ff02;
    box-shadow: 0 0 0 3px rgba(209, 255, 2, 0.1);
}

.search-pagination .page-numbers.prev,
.search-pagination .page-numbers.next {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 100px;
}

.search-pagination .page-numbers.prev i,
.search-pagination .page-numbers.next i {
    font-size: 12px;
}

.search-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

.search-pagination .page-numbers.dots:hover {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    transform: none;
}

/* Filter button styles */
.filter-btn {
    text-decoration: none;
    display: inline-flex;
    border: none;
    background: none;
    cursor: pointer;
}

.filter-btn:hover {
    text-decoration: none;
}
.search-input-wrapper .search-input[type="search"],
.search-input-wrapper.search-input[type="search"]:hover,
.search-input-wrapper.search-input[type="search"]:focus{
    color: white !important;
    padding-left: 25px;
}

@media (max-width: 768px) {
    .search-results-header {
        flex-direction: column;
    }
    .search-title{
        margin: 0;
    }
    .search-subtitle{
        font-size: 12px;
    }
    .search-category-filter{
        padding: 5px;
    }
    .filter-options{
        flex-direction: row;
    }
}
.no-results{
    background: transparent !important;
}

/* No Results Page Styling */
.no-results {
    text-align: center;
    padding: 60px 20px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 64px;
    color: #d1ff02;
    margin-bottom: 30px;
    opacity: 0.7;
}

.no-results h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.no-results p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Search Again Section */
.search-again {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.search-again h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.search-again .search-input-container {
    max-width: 500px;
    margin: 0 auto;
}

/* Suggestions Section */
.suggestions {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.suggestions h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
}

.suggestions li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s ease;
}

.suggestions li:hover {
    background: rgba(209, 255, 2, 0.1);
    border-color: rgba(209, 255, 2, 0.2);
    color: #d1ff02;
    transform: translateY(-2px);
}

/* Popular Content Section */
.popular-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.popular-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.popular-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-content: center;
}

.popular-content li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.popular-content li:hover {
    background: rgba(209, 255, 2, 0.1);
    border-color: rgba(209, 255, 2, 0.2);
    transform: translateY(-2px);
}

.popular-content a {
    color: #d1ff02;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.popular-content a:hover {
    color: #ffffff;
}

/* Responsive Design for No Results */
@media (max-width: 768px) {
    .no-results {
        padding: 40px 20px;
    }
    
    .no-results-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .no-results h2 {
        font-size: 24px;
    }
    
    .no-results p {
        font-size: 16px;
    }
    
    .search-again,
    .suggestions,
    .popular-content {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .suggestions ul,
    .popular-content ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .suggestions li,
    .popular-content li {
        padding: 12px 15px;
        font-size: 13px;
    }
}
.search-single-wrapper{
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}


/* =========================
     SCAN INTRO (bottom-fixed)
  ========================= */
/* Intro container matches the card’s placement */
.kwrapper{
    position: absolute;
    width: clamp(320px, 92vw, 420px);
    height: 215px;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: none;
}
.kintro {
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
    z-index: 10001;
    pointer-events: none;
    will-change: transform, opacity;
    animation: intro-out 0.38s ease-out 2.20s forwards;
}

/* Wrapper and SVG must stretch to the container */
.kintro__wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.kintro__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Rectangle drawing */
.kintro__rect {
    fill: none;
    stroke: #defa39bf;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1366;
    stroke-dashoffset: 1366;
    will-change: stroke-dashoffset;
    animation: rect-draw 0.8s ease-in-out 0.05s forwards;
}

/* Barcode */
.kintro__barcode {
    top: 40px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    filter: contrast(110%);
    will-change: opacity;
    animation: bc-in 0.28s ease-out 0.62s forwards;
    position: relative;
    margin: auto;
}
.kintro__barcode .bar {
    display: block;
    background: #DEFA39;
    height: 100%;
}
/* Simple varied widths */
.b1 { width: 2px; }
.b2 { width: 6px; }
.b3 { width: 3px; }
.b4 { width: 8px; }
.b5 { width: 4px; }
.b6 { width: 2px; }
.b7 { width: 10px; }
.b8 { width: 3px; }
.b9 { width: 5px; }
.b10 { width: 2px; }
.b11 { width: 7px; }
.b12 { width: 4px; }
.b13 { width: 6px; }
.b14 { width: 3px; }
.b15 { width: 9px; }

.kintro__barcode .bar.bar-desktop{
    display: none;
}
@media (min-width: 769px) {
    .kintro__barcode .bar.bar-desktop{
        display: block;
    }
}

/* Scan line */
.kintro .scan {
    position: absolute;
    left: 5%;
    right: 0;
    width: 90%;
    top: -10%;
    height: 22px;
    background: linear-gradient(180deg, rgba(222, 250, 57, 0) 0%, rgba(222, 250, 57, 0.35) 50%, rgba(222, 250, 57, 0) 100%);
    opacity: 0.85;
    will-change: transform;
    animation: scan-pass 1.3s ease-in-out 0.78s forwards;
    mix-blend-mode: screen
}

/* Animations for intro */
@keyframes rect-draw   { to { stroke-dashoffset: 0; } }
@keyframes bc-in       { to { opacity:1; } }
@keyframes scan-pass   { from { transform: translateY(-30%); }
                        to   { transform: translateY(610%); } }
@keyframes intro-out   { to { opacity:0; transform: translate(0%, 6px); } }

/* =========================
    KORAXON SALE CARD
========================= */
.ksale {
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    width: 100%;
    transform: scale(0.9);
    background: linear-gradient(90deg, rgb(8 10 12 / 52%), rgb(8 10 12 / 82%));
    color: white;
    z-index: 10000;
    border-radius: 18px;
    /* border: 1px solid rgba(255, 255, 255, 0.06); */
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.45), 0 -2px 10px rgba(0, 0, 0, 0.35);
    padding: 14px 16px 12px;
    overflow: hidden;
    opacity: 0;
    will-change: transform, opacity;
    animation: ks-fade-up 0.34s ease-out 2.30s forwards;
}
div#ksale-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #defa3963, #defa39, transparent, transparent, transparent);
}
@keyframes ks-fade-up{
to{ opacity:1; transform: scale(1); }
}

/* Close */
.ksale__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0;
}
.ksale__close:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Countdown */
.ksale__countdown {
    color: #DEFA39;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    margin-right: 36px;
    margin-bottom: 6px;
    opacity: 0.95;
    text-align: right;
}

/* Header */
.ksale__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.ksale__title {
    display: flex;
    flex-direction: column;
}

.ksale__eyebrow {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    opacity: 0.78;
    position: absolute;
    top: 12px;
    text-align: left;
}

.ksale__round {
    color: #DEFA39;
    font-weight: 800;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.ksale__round span {
    font-weight: 900;
}

.ksale__price {
    text-align: right;
    min-width: 98px;
}

.ksale__priceLabel {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0.75;
}

.ksale__priceValue {
    color: #25E06B;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}

/* Progress */
.kbar{ margin-top:10px; position:relative; }
.kbar::before{
content:""; position:absolute; left:0; right:0; bottom:-10px; height:14px;
background: radial-gradient(60% 60% at 50% 0, rgba(222,250,57,.25), transparent 70%);
filter: blur(8px); pointer-events:none;
}
.kbar, .kbar__fill{ height:14px; border-radius:999px; }
.kbar{ background: rgba(255,255,255,.08); }
.kbar__fill{ 
    background: linear-gradient(90deg, transparent, #4ca13f82, #24e06b);
    /* transition: width .25s ease; */
    will-change: width;
    position: relative;
    z-index: 5;
 }

.kbar__topline{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 2px;
 }
.kbar__amount{ 
    color: #24e06b;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-shadow: 0px 0px 3px black;
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    text-align: left;
    white-space: nowrap;
 }
.kbar__amount b{ 
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 10px;
 }
.kbar__percent{ 
    color: #223016;
    padding: 3px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    line-height: 0.8;
    position: absolute;
    right: 0;
    top: 0;
 }
.kbar__scale{ 
    color: #9aa2a9;
    font-weight: 600;
    font-size: 10px;
    line-height: 1.2;
    opacity: .8;
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    text-align: right;
    white-space: nowrap;
 }

/* Next row */
.ksale__next{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
    margin-top: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    margin-top: 25px;
 }
.ksale__nextLabel{ 
    color:#b8bec5;
    font-weight:600;
    font-size:13px;
    line-height:1.2; 
}
.ksale__nextValue{ 
    color:inherit;
    font-weight:600;
    font-size:13px;
    line-height:1.2; 
}

/* CTA + more */
.ksale__cta{
    width: 80%;
    height: 30px;
    background: #DEFA39;
    color: #0B0D10;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-sizing: border-box;
    margin: 10px auto 0;
    transition: all 0.3s;
    will-change: background-color;
}
.ksale__cta:hover{ 
    background:#24e06b;
}
.ksale__more{ 
    display:block;
    text-align:center;
    margin-top:8px;
    color:#b7bec6;
    font-weight:600;
    font-size:12px;
    line-height: 1;
    text-decoration: none;
    margin-top: 10px;
    color: #b7bec6;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
}
.ksale__more:hover{ color:#d3d8de; }

a.ksale__more:after {
    content: '→';
    padding-left: 5px;
}

@media (min-width: 769px) {
    .kwrapper{
        width: 600px;
    }
}

/* =========================
   SALE ROUNDS PAGE STYLES
   ========================= */

.sale-rounds-page {
    padding: 30px 0;
    min-height: 100vh;
    position: relative;
}

.sale-rounds-header {
    text-align: center;
    margin-bottom: 60px;
}

.sale-rounds-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #DEFA39;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(222, 250, 57, 0.3);
}

.sale-rounds-subtitle {
    font-size: 1.2rem;
    color: #b8bec5;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

/* Active Round Section */
.active-round-section {
    margin-bottom: 80px;
}

.active-round-card {
    background: linear-gradient(135deg, rgba(8, 10, 12, 0.95), rgba(8, 10, 12, 0.9));
    border: 1px solid rgba(222, 250, 57, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: auto;
}

.active-round-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DEFA39, transparent);
}

.active-round-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.round-info .round-status {
    display: inline-block;
    background: #25E06B;
    color: #0B0D10;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.round-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #DEFA39;
    margin-bottom: 10px;
}

.countdown {
    color: #b8bec5;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-info .current-price {
    text-align: right;
}

.price-label {
    display: block;
    color: #b8bec5;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #25E06B;
}

/* Progress Section */
.progress-section {
    margin-bottom: 30px;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #25E06B, #DEFA39);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.amount-raised {
    color: #25E06B;
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-percent {
    background: rgba(222, 250, 57, 0.2);
    color: #DEFA39;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

.raise-goal {
    text-align: center;
}

.goal-text {
    color: #b8bec5;
    font-size: 0.9rem;
}

/* Next Round Info */
.next-round-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.next-label {
    color: #b8bec5;
    font-weight: 600;
}

.next-value {
    color: #DEFA39;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Round Actions */
.round-actions {
    text-align: center;
}

.invest-button {
    background: #DEFA39;
    color: #0B0D10;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 250, 57, 0.3);
}

.invest-button:hover {
    background: #25E06B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 224, 107, 0.4);
}

/* All Rounds Section */
.all-rounds-section {
    margin-top: 80px;
}

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

.round-card {
    background: linear-gradient(135deg, rgba(8, 10, 12, 0.9), rgba(8, 10, 12, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.round-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(222, 250, 57, 0.3);
}

.round-card.active-round {
    border-color: rgba(37, 224, 107, 0.5);
    box-shadow: 0 0 20px rgba(37, 224, 107, 0.2);
}

.round-card.ended-round {
    opacity: 0.7;
}

.round-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.round-number .round-label {
    display: block;
    color: #b8bec5;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.round-number .round-value {
    font-size: 2rem;
    font-weight: 800;
    color: #DEFA39;
}

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

.round-status-badge.active {
    background: #25E06B;
    color: #0B0D10;
}

.round-status-badge.upcoming {
    background: #DEFA39;
    color: #0B0D10;
}

.round-status-badge.ended {
    background: #6c757d;
    color: white;
}

.round-card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.round-price {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.round-price .price-label {
    display: block;
    color: #b8bec5;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.round-price .price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #25E06B;
}

.round-progress {
    margin: 15px 0;
}

.round-progress .progress-bar {
    height: 8px;
    margin-bottom: 10px;
}

.round-progress .progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.round-progress .progress-percent {
    color: #DEFA39;
    font-weight: 700;
}

.round-progress .progress-amount {
    color: #b8bec5;
}

.round-goal {
    text-align: center;
    padding: 10px;
    background: rgba(222, 250, 57, 0.1);
    border-radius: 8px;
}

.round-goal .goal-amount {
    color: #DEFA39;
    font-weight: 700;
    font-size: 1.1rem;
}

.round-countdown,
.round-upcoming,
.round-ended {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

.round-countdown {
    background: rgba(37, 224, 107, 0.1);
    color: #25E06B;
}

.round-upcoming {
    background: rgba(222, 250, 57, 0.1);
    color: #DEFA39;
}

.round-ended {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.round-actions {
    text-align: center;
    margin-top: 15px;
}

.invest-button-small {
    background: #DEFA39;
    color: #0B0D10;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invest-button-small:hover {
    background: #25E06B;
    transform: translateY(-2px);
}

/* No Rounds State */
.no-rounds {
    text-align: center;
    padding: 80px 20px;
}

.no-rounds-content h2 {
    color: #DEFA39;
    font-size: 2rem;
    margin-bottom: 20px;
}

.no-rounds-content p {
    color: #b8bec5;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sale-rounds-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .active-round-card {
        padding: 25px;
    }
    
    .active-round-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }
    .price-label{
        text-align: center;
    }
    
    .rounds-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .round-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .sale-rounds-page {
        padding: 20px 0;
    }
    
    .sale-rounds-title {
        font-size: 2rem;
    }
    
    .active-round-card {
        padding: 20px;
    }
    
    .round-title {
        font-size: 2rem;
    }
}

/* Compact on small screens */
@media (max-width:480px){
    .ksale__round{ 
        font-size:26px;
    }
    .ksale__cta{ 
        height:28px;
    }
}
.kwrapper.k_static .ksale__close{
    display: none;
}
.kwrapper.k_static .ksale__countdown{
    margin-right: 0;
}

/* Toast Notification Styles */
#toast-container {
    position: fixed;
    bottom: 100px;
    right: -3px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}
#toast-container.pop{
    opacity: 1;
    visibility: visible;
    /* pointer-events: auto; */
}

.koraxon-toast {
    position: relative;
    background: linear-gradient(45deg, black, #323907, black);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(222, 250, 57, 0.2);
    border-right: 1px solid transparent;
    border-radius: 16px 0 0 16px;
    padding: 20px;
    margin-bottom: 15px;
    min-width: 320px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: 0 0px 40px rgb(221 251 55 / 42%);
}

.koraxon-toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-text {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 16px;
    font-weight: 600;
    color: #DEFA39;
    margin-bottom: 4px;
    line-height: 1.3;
}

.toast-message {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    color: #DEFA39;
    background: rgba(222, 250, 57, 0.1);
}

/* Toast Sale Card Styles */
.toast-sale-card {
    margin-top: 10px;
}

.toast-sale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.toast-sale-round {
    font-size: 14px;
    font-weight: 600;
    color: #DEFA39;
}

.toast-sale-status {
    font-size: 12px;
    color: #25E06B;
    background: rgba(37, 224, 107, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.toast-sale-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.toast-price-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.toast-price-value {
    font-size: 16px;
    font-weight: 600;
    color: #DEFA39;
}

.toast-sale-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.toast-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #DEFA39 0%, #25E06B 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.toast-progress-text {
    font-size: 12px;
    font-weight: 600;
    color: #DEFA39;
    min-width: 35px;
    text-align: right;
}

/* Toast Trigger Button (Integrated) */
.toast-trigger-button {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 11px 0 0 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 0px 15px rgb(209 255 2 / 70%);
    border: 1px solid transparent;
    padding: 0;
    opacity:1;
}

.toast-trigger-button:hover {
    background: rgba(222, 250, 57, 0.1);
    border: 1px solid rgba(222, 250, 57, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.toast-trigger-button:active {
    transform: translateY(-50%) scale(0.95);
}
.koraxon-toast.show .toast-trigger-button{
    opacity:0;
}
.toast-trigger-button > svg{
    position: relative;
    top:3px;
    width: 28px;
    height: 28px;
}

/* Mobile responsive for toast */
@media (max-width: 768px) {
    
}

/* iPhone SE and small devices */
@media (max-width: 600px) and (max-height: 750px) {
    
}

/* Last Updates Page Styles */
.last-updates-page {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

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

/* Breadcrumb */
.last-updates-page .breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.last-updates-page .breadcrumb a {
    color: #DEFA39;
    text-decoration: none;
    transition: color 0.3s ease;
}

.last-updates-page .breadcrumb a:hover {
    color: #25E06B;
}

.last-updates-page .breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Page Header */
.last-updates-page .breadcrumb {
    padding-left: 30px;
}
.last-updates-page .page-header {
    text-align: left;
    margin-bottom: 60px;
    padding-left: 30px;
}

.last-updates-page .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.last-updates-page .page-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.last-updates-page .page-description {
    font-size: 1.1rem;
    color: #b8bec5;
    max-width: 800px;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    text-align: left;
}

/* Filters */
.last-updates-page .filters-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.last-updates-page .filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 40%;
}

.last-updates-page .filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.last-updates-page .filter-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.last-updates-page .filter-select:focus, .last-updates-page .filter-select:hover, .last-updates-page .filter-select:active {
    outline: none;
    border-color: #DEFA39;
    background: rgba(222, 250, 57, 0.1);
    color: white;
}

.last-updates-page .filter-select option {
    background: #0B0D10;
    color: #ffffff;
}

/* Timeline - Using Roadmap Design */
.last-updates-page .timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
    min-height: 400px;
}

.last-updates-page .timeline-line {
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

.last-updates-page .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
    padding-left: 30px;
    margin-left: 50px;
}

.last-updates-page .timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Individual Timeline Line Segments */
.last-updates-page .timeline-item::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

/* Last item doesn't need line extension */
.last-updates-page .timeline-item:last-child::before {
    bottom: 0;
}

/* Latest item gets highlighted line */
.last-updates-page .timeline-item.latest::before {
    background: #25E06B;
    box-shadow: 0 0 10px #25E06B;
}

.last-updates-page .timeline-marker {
    position: absolute;
    left: 0;
    top: 0.5rem;
    z-index: 2;
}

.last-updates-page .version-pill {
    width: 60px;
    height: auto;
    border-radius: 12px;
    padding: 5px;
    background: #5d5d5d;
    color: white;
    border: unset;
    position: relative;
    left: -10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.last-updates-page .version-pill.latest {
    background: #25E06B;
    color: black;
    transform: scale(1.1);
}

.last-updates-page .timeline-content {
    border-radius: 16px;
    padding: 0 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
}

.last-updates-page .timeline-content:hover {
    background: transparent;
    border: none;
    transform: none;
}

.last-updates-page .update-header {
    margin-bottom: 0.5rem;
    position: absolute;
    left: -100px;
    top: 50px;
    font-size: 10px;
    padding-left: 10px;
    width: 80px;
}

.last-updates-page .update-date-category {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4px;
    padding-left: 10px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    text-align: center;
    padding: 0;
}

.last-updates-page .update-date {
    font-weight: 600;
    color: #ffffff;
    font-size: 10px;
}

.last-updates-page .update-category {
    font-size: 12px;
    letter-spacing: 0.5px;
    font-size: 10px;
    width: 100%;
    text-align: left;
    text-transform: capitalize;
    background: transparent;
    border: unset;
    padding: 0;
    padding-left: 3px;
    border-left: 1px solid gray;
}

.last-updates-page .update-title {
    color: #ffffff;
    font-size: 1rem;
    padding-top: 10px;
    padding-left: 10px;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.last-updates-page .update-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

.last-updates-page .update-content ul {
    margin: 1.5rem 0;
    padding-left: 1.8rem;
}

.last-updates-page .update-content li {
    margin: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.last-updates-page .update-content li::marker {
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

/* Pagination */
.last-updates-page .pagination-container {
    margin-top: 60px;
    text-align: center;
}

.last-updates-page .pagination-container .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.last-updates-page .pagination-container .page-numbers li {
    margin: 0;
}

.last-updates-page .pagination-container .page-numbers a,
.last-updates-page .pagination-container .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.last-updates-page .pagination-container .page-numbers a:hover,
.last-updates-page .pagination-container .page-numbers .current {
    background: #DEFA39;
    border-color: #DEFA39;
    color: #0B0D10;
}

.last-updates-page .pagination-container .page-numbers .prev,
.last-updates-page .pagination-container .page-numbers .next {
    width: auto;
    padding: 0 16px;
}

/* No Updates */
.last-updates-page .no-updates {
    text-align: center;
    padding: 80px 20px;
}

.last-updates-page .no-updates h3 {
    color: #DEFA39;
    font-size: 2rem;
    margin-bottom: 20px;
}

.last-updates-page .no-updates p {
    color: #b8bec5;
    font-size: 1.1rem;
}

/* Admin Meta Box Styles */
.last-updates-config {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.last-updates-config h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #DEFA39;
    padding-bottom: 10px;
}

.categories-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.categories-section h4 {
    margin-top: 0;
    color: #333;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.category-item input {
    flex: 1;
}

.remove-category {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.remove-category:hover {
    background: #c82333 !important;
}

.update-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #DEFA39;
}

.update-item h4 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.remove-update {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
    margin-top: 10px;
}

.remove-update:hover {
    background: #c82333 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .last-updates-page .last-updates-page {
        padding: 20px 0;
    }
    
    .last-updates-page .page-title {
        font-size: 2.5rem;
    }
    
    .last-updates-page .page-subtitle {
        font-size: 1.5rem;
    }
    
    .last-updates-page .filters-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .last-updates-page .filter-select {
        min-width: 250px;
    }
    .last-updates-page .filter-group{
        width: auto;
    }
    
    .last-updates-page .timeline-line {
        left: 1rem;
    }
    
    .last-updates-page .update-title {
        font-size: 1rem;
    }
    .page-template-page-last-updates .footer-brand{
        position: relative;
        top: 10px;
    }
    .page-template-page-last-updates .newsletter-footer-spotlight{
        top: -20px;
    }
    body.search.search-results .newsletter-footer-spotlight{
        top:10px;
    }
    body.search.search-results .search-single-wrapper{
        padding: 4rem 0 0;
    }
    .page-template-page-sale-rounds .newsletter-footer-spotlight, .page-template-page-partners .newsletter-footer-spotlight{
        top: -50px;
    }
    .page-template-page-sale-rounds .footer, .page-template-page-partners .footer{
        padding: 4rem 1rem 2rem;
    }
}

@media (max-width: 600px) {
    .last-updates-page .timeline-item {
        margin-left: 5px;
    }
    .last-updates-page .update-title{
        padding-bottom: 15px;
    }
    .last-updates-page .update-header{
        position: absolute;
        left: 48px;
        top: 30px;
        font-size: 10px;
        padding-left: 0;
        width: calc(100% - 40px);
    }
    .last-updates-page .update-category{
        padding-left: 13px;
    }
    .last-updates-page .update-date-category{
        flex-direction: row;
    }

}

@media (max-width: 480px) {
    .last-updates-page .page-title {
        font-size: 2rem;
    }
    
    .last-updates-page .page-subtitle {
        font-size: 1.2rem;
    }
}