 <style>
    body {
      background: linear-gradient(to bottom, #fff0f5, #fff9e6);
      color: #1a1a1a;
      min-height: 100vh;
    }
    
    .timer {
      font-family: monospace;
    }
    
    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    /* New Wallet Modal Styles */
.wallet-modal {
  background: white;
  border-radius: 16px;
  width: 360px;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.wallet-option {
  display: flex;
  align-items: center;
  padding: 12px;
  margin: 8px 0;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid #e5e7eb;
}
.wallet-option:hover {
  background: #f5f5f5;
}
.dark .wallet-option:hover {
  background: #374151;
}
.wallet-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 8px;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.installed-badge {
  background: #10B981;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: auto;
}
.qr-container {
  text-align: center;
  padding: 20px;
}

    /* Dark mode styles */
    .dark {
      background: #111827 !important;
      color: #f0f0f0 !important;
    }

    .dark .bg-white {
      background-color: #1f2937 !important;
      color: #f0f0f0 !important;
    }

    .dark .text-gray-600 {
      color: #d1d5db !important;
    }

    .dark .text-gray-500 {
      color: #9ca3af !important;
    }

    .dark .bg-gray-200 {
      background-color: #374151 !important;
    }

    .dark .text-blue-600 {
      color: #60a5fa !important;
    }
    
    /* Dark mode text fixes */
    .dark h1,
    .dark h2,
    .dark h3,
    .dark .section-title,
    .dark p,
    .dark span,
    .dark div,
    .dark li,
    .dark summary,
    .dark .timer,
    .dark .stage-label,
    .dark .font-mono,
    .dark .font-bold,
    .dark .font-semibold {
      color: #f0f0f0 !important;
    }
    
    .dark .bg-gray-100 {
      background-color: #374151 !important;
      color: #f0f0f0 !important;
    }

    .dark .text-gray-600.dark\\:text-gray-300 {
      color: #d1d5db !important;
    }

   /* Floating animation */
    .logo-float {
      animation: fluffi-float 12s ease-in-out infinite;
    }

   @keyframes fluffi-float {
  0%, 100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  }
  50% { 
    transform: translateY(-8px) scale(1.02) rotate(1deg); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
}
        /* Logo styling */
    .logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: white;
      padding: 5px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .dark .logo-container {
      background: #374151;
    }
    
    .logo-container img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 50%;
    }

    /* Progress bar styling */
    .progress-bar {
      width: 100%;
      height: 8px;
      background: #f0f0f0;
      border-radius: 4px;
      overflow: hidden;
    }
    
    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #4CAF50, #2E7D32);
      transition: width 0.5s ease;
    }

    /* Enhanced styling for presale section */
    .fluio-status-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .stage-progress {
      flex: 1;
      min-width: 200px;
    }

    .progress-info {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }

    .fluio-price {
      text-align: right;
      min-width: 150px;
    }

    .price-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      justify-content: flex-end;
      margin-bottom: 0.25rem;
    }

    .live-badge {
      background: #ef4444;
      color: white;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 0.7rem;
      animation: pulse 2s infinite;
    }

    .current-price {
      font-size: 1.5rem;
      font-weight: bold;
      color: #16a34a;
    }

    .price-change {
      font-size: 0.8rem;
      color: #6b7280;
    }

    /* Price tooltip styles */
    .price-container { 
      position: relative; 
      display: inline-block; 
    }
    .price-tooltip { 
      position: relative; 
      display: inline-block; 
      margin-left: 4px; 
    }
    .price-tooltip .tooltip-text {
      visibility: hidden; 
      width: 220px; 
      background-color: #1f2937;
      color: #f9fafb; 
      text-align: center; 
      border-radius: 6px; 
      padding: 8px;
      position: absolute; 
      z-index: 1; 
      bottom: 125%; 
      left: 50%;
      transform: translateX(-50%); 
      opacity: 0; 
      transition: opacity 0.3s;
      font-size: 14px; 
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .price-tooltip .tooltip-text::after {
      content: ""; 
      position: absolute; 
      top: 100%; 
      left: 50%;
      margin-left: -5px; 
      border-width: 5px; 
      border-style: solid;
      border-color: #1f2937 transparent transparent transparent;
    }
    .price-tooltip:hover .tooltip-text { 
      visibility: visible; 
      opacity: 1; 
    }
    .dark .price-tooltip .tooltip-text { 
      background-color: #f9fafb; 
      color: #1f2937; 
    }
    .dark .price-tooltip .tooltip-text::after {
      border-color: #f9fafb transparent transparent transparent;
    }
    
    /* Fix dark mode tooltip visibility */
    .dark .price-tooltip .tooltip-text {
      background-color: #1F2937 !important;
      color: #F9FAFB !important;
      border: 1px solid #4B5563;
    }

    .dark .price-tooltip .tooltip-text::after {
      border-color: #1F2937 transparent transparent transparent !important;
    }

    /* Make info icon more visible */
    .dark .price-tooltip .fa-info-circle {
      color: #60A5FA !important;
    }

    /* Split sections */
    .split-sections {
      display: flex;
      gap: 40px;
      margin: 60px 0;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    #team, #about {
      flex: 1;
      min-width: 320px;
      background: #ffffff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      color: #333;
      transition: all 0.3s ease-in-out;
    }

    .dark #team, .dark #about {
      background: #1c1c1c;
      color: #eeeeee;
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    }

    #team h2, #about h2 {
      font-size: 2rem;
      margin-bottom: 25px;
      color: #28a745;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
    }

    .team-member {
      text-align: center;
      background: rgba(249, 249, 249, 0.9);
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    
    .dark .team-member {
      background: rgba(39, 39, 42, 0.8);
    }

    .team-member img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #28a745;
      margin: 0 auto;
      filter: grayscale(0%) contrast(110%);
    }

    .team-member h3 {
      position: relative;
      font-size: 1.2rem;
      margin: 15px 0 5px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .team-member h3::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 2px;
      background: linear-gradient(90deg, #FFD700, #FFA500);
      bottom: -5px;
      left: 25%;
      border-radius: 2px;
    }
    
    .team-member p {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 10px;
      color: #555;
    }
    
    .dark .team-member p {
      color: #d1d5db;
    }

    .team-member a i {
      color: #28a745;
      font-size: 1.2rem;
    }

    .team-member {
      transition: transform 0.3s;
    }
    .team-member:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .about-content {
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .about-content ul {
      margin: 25px 0;
      padding-left: 20px;
    }

    .about-content li {
      margin-bottom: 15px;
      position: relative;
      padding-left: 35px;
      font-size: 1.05rem;
    }

    .about-content li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 20px;
      height: 20px;
      background-size: contain;
      background-repeat: no-repeat;
      filter: invert(33%) sepia(98%) saturate(393%) hue-rotate(86deg) brightness(88%) contrast(96%);
    }

    .dark .about-content li:before {
      filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(190deg) brightness(150%) contrast(90%);
    }

    .about-content li:nth-child(1):before {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000000" viewBox="0 0 24 24"><path d="M12 2L1 12h3v9h6v-6h4v6h6v-9h3L12 2z"/></svg>');
    }

    .about-content li:nth-child(2):before {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000000" viewBox="0 0 24 24"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    }

    .about-content li:nth-child(3):before {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000000" viewBox="0 0 24 24"><path d="M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z"/></svg>');
    }

  
    /* Spinner animation */
    .fa-spinner.fa-spin {
      animation: fa-spin 1s infinite linear;
    }
    
    @keyframes fa-spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    .hidden {
      display: none !important;
    }
    
    /* Mobile responsiveness */
    @media (max-width: 640px) {
      .fluio-status-container {
        flex-direction: column;
        align-items: stretch;
      }
      
      .fluio-price {
        text-align: center;
      }
      
      .price-header {
        justify-content: center;
      }
      
      .split-sections {
        flex-direction: column;
      }

      #team, #about {
        width: 100%;
      }

      .wallet-buttons-grid {
        grid-template-columns: 1fr;
      }

      .mobile-wallet-modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
      }
      
      .team-grid {
        grid-template-columns: 1fr;
      }
    }
    
    /* Accessibility improvements */
    a:focus, button:focus, input:focus, select:focus {
      outline: 2px solid #3b82f6;
      outline-offset: 2px;
    }
    
    /* Form input styling */
    input[type="number"], input[type="text"], select {
      background-color: white;
      color: black;
    }
    
    .dark input[type="number"], 
    .dark input[type="text"], 
    .dark select {
      background-color: #374151;
      color: white;
      border-color: #4B5563;
    }
    
    /* Pulsing animation for live badge */
    @keyframes pulse {
      0% { opacity: 1; }
      50% { opacity: 0.7; }
      100% { opacity: 1; }
    }
    .dark .wallet-modal {
  background: #1f2937;
  color: white;
  border: 1px solid #374151;
}

.dark .wallet-option {
  border-color: #4b5563;
}

.dark .wallet-option:hover {
  background: #374151;
}
#walletModalOverlay {
  transition: opacity 0.3s;
}

/* QR code container */
.qr-wrapper {
  background: white;
  padding: 15px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 15px;
}
  </style>
