* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --background: #040404;
    --primary: #470faf;
    --primary-dark: #19025d;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.1);
    --border-bright: rgba(255, 255, 255, 0.2);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #470faf 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #c393fd 0%, #3b82f6 100%);
    --glow: 0 0 20px rgba(71, 15, 175, 0.3);
  }
  
  body {
    font-family: 'Tahoma', serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(71, 15, 175, 0.1) 0%, transparent 20%),
      radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 20%);
    background-attachment: fixed;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #c393fd, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }
  
  h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
  }
  
  a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--primary);
  }
  
  .btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: var(--glow);
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 15, 175, 0.4);
  }
  
  .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
  }
  
  @keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
  }
  
  .btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid var(--border-bright);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  .btn-secondary:hover {
    background-color: var(--card-hover);
    border-color: var(--border);
  }
  
  .btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
  }
  
  .logo a {
    display: flex;
    align-items: center;
  }
  
  .header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
  }
  
  .logo span {
    color: var(--primary);
  }
  
  .nav-desktop {
    display: flex;
    gap: 2.5rem;
  }
  
  .nav-desktop a {
    color: var(--text-muted);
    transition: color 0.3s ease;
  }
  
  .nav-desktop a:hover {
    color: var(--text);
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-mobile {
    display: none;
    flex-direction: column;
    padding: 20px;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  
  .nav-mobile a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: block;
    transition: color 0.3s ease;
  }
  
  .nav-mobile a:hover {
    color: var(--primary);
  }
  
  .nav-mobile button {
    margin-top: 20px;
  }
  
  .hero {
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(71, 15, 175, 0.15) 0%, rgba(4, 4, 4, 0) 100%);
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(71, 15, 175, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #c393fd, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
  }
  
  .hero-text {
    max-width: 750px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    flex-direction: column;
  }
  
  .stats {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .stats:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(71, 15, 175, 0.15);
    border-color: rgba(71, 15, 175, 0.3);
  }
  
  .stats-title {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .stats-numbers {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: countUp 2s ease-out forwards;
  }
  
  @keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--text-dim);
  }
  
  .token-creator {
    padding: 50px 0;
    text-align: center;
  }
  
  .section-text {
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    overflow: hidden;
  }
  
  .form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(71, 15, 175, 0.15);
    border-color: rgba(71, 15, 175, 0.3);
  }
  
  .form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(71, 15, 175, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .token-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .form-row {
    display: flex;
    gap: 2rem;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  input, textarea, select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    transition: all 0.3s ease;
    width: 100%;
  }
  
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(71, 15, 175, 0.15);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
  }
  
  select option {
    background: #1a1a1a;
    color: white;
    padding: 14px;
  }
  
  select:hover {
    border-color: var(--primary);
    background-color: rgba(71, 15, 175, 0.1);
  }
  
  .form-hint {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
  
  .image-upload {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  
  .image-upload:hover {
    border-color: var(--primary);
    background-color: rgba(71, 15, 175, 0.1);
  }
  
  .image-upload-text {
    color: var(--text-dim);
  }
  
  .advanced-options {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 1rem;
  }
  
  .advanced-options h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
  
  .checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .checkbox input {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  .checkbox input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  .checkbox label {
    font-size: 1rem;
    color: var(--text);
  }
  
  .fee-text {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 1rem;
  }
  
  .features {
    padding: 100px 0;
    text-align: center;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
  }
  
  .feature {
    background: linear-gradient(180deg, rgba(71, 15, 175, 0.05) 0%, rgba(4, 4, 4, 0) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
  }
  
  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: linear-gradient(180deg, rgba(71, 15, 175, 0.1) 0%, rgba(4, 4, 4, 0) 100%);
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
  }
  
  .feature h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
  
  .feature p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  .cta-box {
    background: linear-gradient(45deg, rgba(71, 15, 175, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(71, 15, 175, 0.2);
    border-radius: 20px;
    padding: 3.5rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease;
  }
  
  .cta-box h3 {
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
  }
  
  .cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .third-party-mentions {
      padding: 100px 0;
      text-align: center;
  }
  
  .third-party-mentions h2 {
      margin-bottom: 1.5rem;
  }
  
  .mentions-grid {
      display: flex;
      justify-content: center;
      gap: 3rem;
      align-items: center;
      flex-wrap: wrap;
  }
  
  .mentions-grid img {
      height: 50px; /* Adjust as needed */
      opacity: 0.7;
      transition: opacity 0.3s ease;
  }
  
  .mentions-grid a:hover img {
      opacity: 1;
  }
  
  .team {
      padding: 100px 0;
      text-align: center;
  }
  
  .team h2 {
      margin-bottom: 1.5rem;
  }
  
  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }
  
  .team-member {
      background-color: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .team-member:hover {
      background-color: var(--card-hover);
      transform: translateY(-5px);
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  }
  
  .team-member img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
  }
  
  .team-member h3 {
      margin-bottom: 0.5rem;
      font-size: 1.25rem;
  }
  
  .team-member p {
      color: var(--text-muted);
      margin-bottom: 1rem;
  }
  
  .team-member a {
      color: var(--primary);
      display: inline-block;
      margin-top: 0.5rem;
  }
  
  .testimonials {
      padding: 100px 0;
      text-align: center;
  }
  
  .testimonials h2 {
      margin-bottom: 1.5rem;
  }
  
  .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }
  
  .testimonial {
    background: linear-gradient(180deg, rgba(71, 15, 175, 0.05) 0%, rgba(4, 4, 4, 0) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
  }
  
  .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: linear-gradient(180deg, rgba(71, 15, 175, 0.1) 0%, rgba(4, 4, 4, 0) 100%);
  }
  
  .testimonial p {
      font-style: italic;
      margin-bottom: 1rem;
      color: var(--text);
  }
  
  .testimonial-author {
      color: var(--text-muted);
      font-size: 0.9rem;
  }
  
  .footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  
  .footer-info p {
    color: var(--text-dim);
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .footer-logo span {
    color: var(--primary);
  }
  
  .footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: white;
    transform: translateX(5px);
  }
  
  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-bottom p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  .footer-legal {
    display: flex;
    gap: 2rem;
  }
  
  .footer-legal a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .footer-legal a:hover {
    color: white;
  }
  
  .security-badge {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background-color: rgba(76, 175, 80, 0.1);
      border: 1px solid rgba(76, 175, 80, 0.3);
      color: var(--text-dim);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-size: 0.8rem;
  }
  
  .security-badge img {
      height: 24px;
  }
  
  @media (max-width: 768px) {
    .header {
      position: relative;
    }
    
    .nav-desktop {
      display: none;
    }
    
    .menu-toggle {
      display: block;
    }
    
    .form-row {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    
    .footer-legal {
      margin-top: 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .stats-numbers {
      flex-direction: column;
      gap: 1rem;
    }
    
    .feature {
      margin-bottom: 1rem;
    }
  
      .third-party-mentions {
          padding: 60px 0;
      }
  
      .mentions-grid {
          gap: 2rem;
      }
  
      .mentions-grid img {
          height: 40px;
      }
  
      .team {
          padding: 60px 0;
      }
  
      .team-grid {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
  
      .testimonials {
          padding: 60px 0;
      }
  
      .testimonial-grid {
          grid-template-columns: 1fr;
      }
  
      .footer {
          padding: 4rem 0 2rem;
      }
  
      .footer-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
      }
  
      .footer-bottom {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
  
      .footer-legal {
          margin-top: 1rem;
          flex-direction: column;
          gap: 0.75rem;
      }
  }
  
  @media (min-width: 769px) {
    .nav-mobile {
      display: none !important;
    }
  }
  
  .image-preview {
    position: relative;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
  }
  
  .image-preview img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
  }

  /* Documentation Styles */
  .documentation {
    padding: 55px 0;
    text-align: left;
  }

  .docs-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    margin-top: 3rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
  }

  .docs-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
  }

  .docs-nav h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .docs-nav ul {
    list-style: none;
  }

  .docs-nav li {
    margin-bottom: 0.5rem;
  }

  .docs-nav a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .docs-nav a:hover,
  .docs-nav a.active {
    background-color: var(--card-hover);
    color: var(--text);
  }

  .docs-content {
    max-width: 800px;
  }

  .docs-section {
    margin-bottom: 3rem;
  }

  .docs-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text);
  }

  .docs-section h4 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text);
  }

  .docs-section p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .docs-section ul,
  .docs-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }

  .docs-section li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .docs-section strong {
    color: var(--text);
  }

  .faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }

  .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text);
  }

  .faq-item p {
    margin-bottom: 0;
    color: var(--text-muted);
  }

  @media (max-width: 768px) {
    .docs-container {
      grid-template-columns: 1fr;
    }

    .docs-sidebar {
      position: relative;
      top: 0;
      margin-bottom: 2rem;
    }

    .docs-nav {
      display: flex;
      overflow-x: auto;
      padding-bottom: 1rem;
    }

    .docs-nav ul {
      display: flex;
      gap: 1rem;
    }

    .docs-nav li {
      margin-bottom: 0;
    }

    .docs-nav a {
      white-space: nowrap;
    }
  }

  /* Loading Overlay */
  .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 4, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .loading-content {
    text-align: center;
    color: var(--text);
    max-width: 400px;
    padding: 2rem;
  }

  .loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary);
    border-top: 4px solid transparent;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(71, 15, 175, 0.3);
  }

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

  .loading-steps {
    margin-top: 2rem;
    text-align: left;
  }

  .step {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.3s ease;
  }

  .step.active {
    background: var(--primary);
    color: white;
  }

  /* Success Modal */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 4, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .modal-content {
    background: linear-gradient(180deg, rgba(71, 15, 175, 0.05) 0%, rgba(4, 4, 4, 0) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.5s ease;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), #6b46c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(71, 15, 175, 0.3);
  }

  .token-details {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }

  .token-details p {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
  }

  .token-details strong {
    color: var(--text);
  }

  .modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  /* Enhanced Form Styles */
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(71, 15, 175, 0.15);
    transform: translateY(-2px);
  }

  .checkbox input:checked + label {
    color: var(--primary);
  }

  /* Token Preview Card */
  .token-preview {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    display: none;
  }

  .token-preview.active {
    display: block;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  html {
    scroll-behavior: smooth;
  }

  /* Ensure the token creation section has proper padding for scroll positioning */
  #create {
    scroll-margin-top: 100px;
  }

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

  input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(71, 15, 175, 0.2);
    cursor: pointer;
    position: relative;
  }

  input[type="range"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--slider-percentage, 0%);
    background: var(--gradient-1);
    border-radius: 4px;
    transition: width 0.1s ease;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: var(--gradient-1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(71, 15, 175, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
  }

  input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(71, 15, 175, 0.6);
  }

  input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: var(--gradient-1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(71, 15, 175, 0.4);
    position: relative;
    z-index: 2;
  }

  input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(71, 15, 175, 0.6);
  }

  input[type="range"]::-moz-range-progress {
    background: var(--gradient-1);
    height: 8px;
    border-radius: 4px;
  }

  .slider-container {
    position: relative;
    padding: 20px 0;
    margin: 10px 0;
  }

  .slider-value {
    position: absolute;
    top: -5px;
    right: 0;
    background: var(--gradient-1);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 15, 175, 0.3);
    backdrop-filter: blur(5px);
  }

  .slider-container:hover .slider-value {
    transform: translateY(-100%) scale(1.05);
  }

  /* Staking Info Grid */
  .staking-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
  }

  .info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  .info-value {
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* Staking Loading Overlay */
  .staking-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 4, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .staking-loading-content {
    text-align: center;
    color: var(--text);
    max-width: 400px;
    padding: 2rem;
  }

  .staking-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary);
    border-top: 4px solid transparent;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(71, 15, 175, 0.3);
  }

  .staking-loading-steps {
    margin-top: 2rem;
    text-align: left;
  }

  .staking-step {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.3s ease;
  }

  .staking-step.active {
    background: var(--primary);
    color: white;
  }

  .security-trust {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(71, 15, 175, 0.05) 0%, rgba(4, 4, 4, 0) 100%);
  }

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

  .security-item {
    background: linear-gradient(180deg, rgba(71, 15, 175, 0.05) 0%, rgba(4, 4, 4, 0) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
  }

  .security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .security-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }

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

  .security-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
  }

  .trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .trust-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
  }

  .trust-badge img {
    height: 32px;
    width: auto;
  }

  .trust-badge span {
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  @media (max-width: 768px) {
    .security-grid {
      grid-template-columns: 1fr;
    }

    .trust-badges {
      flex-direction: column;
      align-items: center;
    }

    .trust-badge {
      width: 100%;
      max-width: 300px;
    }
  }

  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
    filter: blur(0.5px);
  }

  .floating-element:nth-child(1) { top: 20%; left: 10%; }
  .floating-element:nth-child(2) { top: 60%; left: 80%; }
  .floating-element:nth-child(3) { top: 80%; left: 20%; }
  .floating-element:nth-child(4) { top: 30%; left: 70%; }

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

  .live-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    margin-top: 1rem;
  }

  .counter-label {
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  .counter-number {
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .pulse-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  /* Live Activity Notification */
  .live-activity {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 1000;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Countdown Timer */
  .countdown-timer {
    background: linear-gradient(45deg, #ff4d4d, #ff8533);
    padding: 15px 25px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
    animation: pulse 2s infinite;
  }

  .countdown-label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .countdown-time {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: monospace;
  }

  /* Scarcity Indicator */
  .scarcity-indicator {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .scarcity-label {
    color: #ff4d4d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .scarcity-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 12px 0;
  }

  .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff4d4d, #ff8533);
    transition: width 0.5s ease;
  }

  .scarcity-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }

  /* FOMO Trigger */
  .fomo-trigger {
    background: rgba(255, 77, 77, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid rgba(255, 77, 77, 0.2);
    animation: fadeInOut 2s infinite;
  }

  .fomo-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fomo-icon {
    font-size: 20px;
  }

  .fomo-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }

  /* Animations */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }

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

  /* Staking Rewards Overlay */
  .staking-rewards-overlay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(71, 15, 175, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .rewards-content {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .rewards-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .rewards-icon:hover {
    transform: scale(1.1);
  }

  .rewards-info {
    display: flex;
    flex-direction: column;
  }

  .rewards-label {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .rewards-amount {
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

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

  @keyframes grow {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .staking-rewards-overlay.show {
    animation: grow 0.3s ease forwards;
  }

  .rewards-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(71, 15, 175, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
  }

  .rewards-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
  }

  .tooltip-content {
    color: white;
  }

  .tooltip-content h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: var(--text);
  }

  .stake-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .stake-amount {
    font-weight: 600;
  }

  .stake-apy {
    color: var(--text-muted);
    font-size: 0.9rem;
  }