/* Base Styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Initially prevent scrolling */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}
body.scrollable {
  overflow-y: auto; /* Enable vertical scrolling after transition */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}

/* Base Styles */
:root {
  --primary-color: #00f7ff;
  --secondary-color: #2196f3;
  --bg-dark: #000510;
  --text-light: #ffffff;
  --card-bg: rgba(0, 247, 255, 0.05);
  --transition-speed: 0.3s;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Arial', sans-serif;
}


/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(45deg, #000510, #001933);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease-out;
  overflow: hidden;
}

.rotating-circle {
  position: relative;
  width: 300px;
  height: 300px;
}

.circle-outer,
.circle-middle,
.circle-inner {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #00f7ff;
  animation: rotate 2s linear infinite;
}

.circle-outer {
  width: 100%;
  height: 100%;
  border-width: 3px;
  box-shadow: 0 0 20px #00f7ff;
}

.circle-middle {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-width: 2px;
  animation-duration: 1.5s;
  animation-direction: reverse;
}

.circle-inner {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-width: 1px;
  animation-duration: 1s;
}

.scroll-indicator {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  animation: pulse 2s ease-in-out infinite;
  pointer-events: none; /* Prevent text selection */
}

/* Hero Section Styles */
.hero {
  min-height: 100vh;
  position: relative;
  opacity: 0;
  transition: opacity 1s ease-in;
}

.hero.visible {
  opacity: 1;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #000510, #001933);
  overflow: hidden;
}

.circuit-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      linear-gradient(to right, rgba(0, 247, 255, 0.1) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 247, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 10s linear infinite;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.logo h1 {
  font-size: 5rem;
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

.title-container {
  text-align: center;
  margin-bottom: 3rem;
}

.main-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.1s;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.4s;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.whitepaper {
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  color: #000;
}

.presale {
  background: transparent;
  border: 2px solid #00f7ff;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.7s;
}

.social-icon {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
}

/* Animations */
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Add these new styles after your existing CSS */

/* AI Logo Styles */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.ai-logo {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  perspective: 1000px;
}

.logo-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  animation: logoFloat 3s ease-in-out infinite;
}

.ilogo-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ilogo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.algora-footer-logo {
  position: relative;
  top: 20%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  
}

.algora-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-circle-outer,
.logo-circle-middle,
.logo-circle-inner {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #00f7ff;
  animation: rotateLogo 4s linear infinite;
}

.logo-circle-outer {
  width: 100%;
  height: 100%;
  border-width: 3px;
  box-shadow: 0 0 20px #00f7ff;
}

.logo-circle-middle {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-width: 2px;
  animation-duration: 3s;
  animation-direction: reverse;
}

.logo-circle-inner {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-width: 1px;
  animation-duration: 2s;
}

.logo-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,247,255,0.2) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

/* Contract Box Styles */
.contract-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 247, 255, 0.05);
  border: 1px solid rgba(0, 247, 255, 0.3);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(5px);
  max-width: 600px;
  width: 100%;
  transform: translateY(0);
  transition: all 0.3s ease;
  animation: contractBoxAppear 1s ease-out forwards;
}
.contract-box:hover {
  transform: translateY(-5px);
  background: rgba(0, 247, 255, 0.1);
  box-shadow: 0 5px 20px rgba(0, 247, 255, 0.2);
}

.contract-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contract-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 247, 255, 0.1),
      transparent
  );
  transition: 0.5s;
}

.contract-display:hover::before {
  left: 100%;
}

.contract-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contract-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem;
  border-radius: 5px;
  width: 100%;
}

#contractAddress {
  font-family: monospace;
  color: #00f7ff;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.copy-btn {
  background: rgba(0, 247, 255, 0.1);
  border: 1px solid rgba(0, 247, 255, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover {
  color: #00f7ff;
  background: rgba(0, 247, 255, 0.2);
  transform: scale(1.05);
}

.copy-notification {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.copy-notification.visible {
  opacity: 1;
  transform: translateY(0);
}

.copy-icon {
  color: #00f7ff;
}

.copy-message {
  font-size: 0.8rem;
  color: #00f7ff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-message.visible {
  opacity: 1;
}

/* Logo Animation */
@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add this to your existing media queries for responsiveness */
@media (max-width: 768px) {
  .contract-display {
      flex-direction: column;
      gap: 0.5rem;
  }

  #contractAddress {
      font-size: 0.8rem;
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes contractBoxAppear {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes copySuccess {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}


/* Animated Background */
.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
      linear-gradient(to right, rgba(0, 247, 255, 0.1) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 247, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotate(45deg);
  animation: gridMove 20s linear infinite;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Section Title */
.section-title {
  text-align: center;
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-underline {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  position: relative;
  animation: glowLine 2s ease-in-out infinite;
}

.subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

/* Presale Cards */
.presale-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.presale-card {
  perspective: 1000px;
  height: 500px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.presale-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(0, 247, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.card-back {
  transform: rotateY(180deg);
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

.countdown-item {
  text-align: center;
}

.countdown-item span {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.countdown-item label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Progress Bar */
.progress-container {
  margin: 2rem 0;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  transition: width 1s ease-in-out;
}

/* Buttons */
.buy-button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-dark);
  font-weight: bold;
  cursor: pointer;
  transition: transform var(--transition-speed);
  animation: pulse 2s infinite;
}

.buy-button:hover {
  transform: scale(1.05);
}

.buy-button-link {
  text-decoration: none;
  display: block;
  width: 100%;
}

/* AI Stats Widget */
.ai-stats-widget {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  background: rgba(0, 247, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.stat-item {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.stat-value {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

/* Animations */
@keyframes gridMove {
  0% { transform: translateY(0) rotate(45deg); }
  100% { transform: translateY(-50px) rotate(45deg); }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes glowLine {
  0%, 100% { box-shadow: 0 0 10px var(--primary-color); }
  50% { box-shadow: 0 0 20px var(--primary-color); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Media Queries */
@media (max-width: 768px) {
  .presale-container {
      grid-template-columns: 1fr;
  }

  .ai-stats-widget {
      flex-direction: column;
      gap: 1rem;
  }
}

/* Phase Number Animation */
.phase-number {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: glowText 2s ease-out forwards;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.phase-number::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: expandLine 1.5s ease-out forwards;
}



/* Date Animation */
.phase-dates {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.phase-dates span {
  font-size: 1.1rem;
  position: relative;
  padding-left: 20px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInFromLeft 0.8s ease forwards;
}

.phase-dates span:nth-child(1) {
  animation-delay: 0.3s;
}

.phase-dates span:nth-child(2) {
  animation-delay: 0.6s;
}

.phase-dates span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px var(--primary-color);
  animation: pulseDot 2s infinite;
}

.phase-status {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.status-active {
  background: rgba(0, 247, 255, 0.2);
  border: 1px solid #00f7ff;
  color: #00f7ff;
  opacity: 1;
  transform: translateY(0);
  animation: pulseActive 2s infinite;
}

.status-upcoming {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid #ffc107;
  color: #ffc107;
  opacity: 1;
  transform: translateY(0);
}

.status-ended {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseActive {
  0%, 100% {
      box-shadow: 0 0 10px rgba(0, 247, 255, 0.2);
  }
  50% {
      box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
  }
}

/* Price Animation */
.phase-price {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.9s;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

/* Phase Details Animation */
.phase-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.phase-details li {
  margin: 1rem 0;
  padding-left: 25px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.phase-details li:nth-child(1) { animation-delay: 0.2s; }
.phase-details li:nth-child(2) { animation-delay: 0.4s; }
.phase-details li:nth-child(3) { animation-delay: 0.6s; }
.phase-details li:nth-child(4) { animation-delay: 0.8s; }

.phase-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  animation: arrowBounce 2s infinite;
}

.phase-description {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 1.5rem 0;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
  padding: 1rem;
  border-left: 2px solid var(--primary-color);
  background: rgba(0, 247, 255, 0.05);
  border-radius: 0 10px 10px 0;
}

/* Animations */
@keyframes glowText {
  0% {
      opacity: 0;
      text-shadow: none;
  }
  50% {
      opacity: 0.5;
      text-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
  }
  100% {
      opacity: 1;
      text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
  }
}

@keyframes expandLine {
  0% {
      width: 0;
      opacity: 0;
  }
  100% {
      width: 50px;
      opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
      opacity: 0;
      transform: translateX(-20px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes pulseDot {
  0%, 100% {
      transform: translateY(-50%) scale(1);
      opacity: 1;
  }
  50% {
      transform: translateY(-50%) scale(1.2);
      opacity: 0.7;
  }
}

@keyframes arrowBounce {
  0%, 100% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(5px);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Hover Effects */
.phase-dates span:hover::before {
  animation: pulseDot 1s infinite;
}

.phase-details li:hover::before {
  animation: arrowBounce 1s infinite;
}

/* Active Phase Highlight */
.current-phase .phase-number {
  animation: activePhaseGlow 2s infinite;
}

@keyframes activePhaseGlow {
  0%, 100% {
      text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
  }
  50% {
      text-shadow: 0 0 20px rgba(0, 247, 255, 0.8);
  }
}

/* Volume Control Styles */
.volume-control {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  background: rgba(0, 247, 255, 0.1);
  padding: 10px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 247, 255, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.volume-control:hover {
  background: rgba(0, 247, 255, 0.2);
}

.volume-toggle {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease;
}

.volume-toggle:hover {
  transform: scale(1.1);
}

.volume-slider-container {
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
  margin-left: 5px;
}

.volume-control:hover .volume-slider-container {
  width: 100px;
}

.volume-slider {
  width: 100px;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Media Queries */
@media (max-width: 768px) {
  .presale-container {
      grid-template-columns: 1fr;
      padding: 1rem;
  }

  .ai-stats-widget {
      flex-direction: column;
      gap: 1rem;
      margin: 1rem;
      padding: 1rem;
  }

  .title {
      font-size: 2.5rem;
  }

  .subtitle {
      font-size: 1.2rem;
  }

  .phase-number {
      font-size: 2rem;
  }

  .phase-dates span {
      font-size: 1rem;
  }

  .phase-price {
      font-size: 1.1rem;
  }

  .countdown-timer {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }

  .countdown-item {
      flex: 0 0 calc(50% - 1rem);
  }

  .volume-control {
      bottom: 10px;
      right: 10px;
      padding: 8px;
  }

  .volume-toggle {
      font-size: 1rem;
  }

  .volume-control:hover .volume-slider-container {
      width: 80px;
  }

  .volume-slider {
      width: 80px;
  }

  .contract-box {
      margin: 1rem;
      padding: 1rem;
  }

  #contractAddress {
      font-size: 0.8rem;
  }

  .copy-btn {
      padding: 0.6rem;
  }

  .phase-details li {
      font-size: 0.9rem;
      padding-left: 20px;
  }

  .phase-description {
      font-size: 0.9rem;
      padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .title {
      font-size: 2rem;
  }

  .subtitle {
      font-size: 1rem;
  }

  .cta-buttons {
      flex-direction: column;
      gap: 1rem;
  }

  .btn {
      width: 100%;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
  }

  .phase-number {
      font-size: 1.8rem;
  }

  .countdown-item span {
      font-size: 1.5rem;
  }

  .countdown-item label {
      font-size: 0.7rem;
  }

  .stat-item {
      padding: 0.5rem;
  }

  .stat-value {
      font-size: 1.2rem;
  }

  .stat-label {
      font-size: 0.8rem;
  }

  .volume-control {
      bottom: 5px;
      right: 5px;
      padding: 6px;
  }

  .volume-control:hover .volume-slider-container {
      width: 60px;
  }

  .volume-slider {
      width: 60px;
  }
}

@media (min-width: 1440px) {
  .presale-container {
      grid-template-columns: repeat(3, 1fr);
      max-width: 1800px;
  }

  .title {
      font-size: 4rem;
  }

  .subtitle {
      font-size: 1.8rem;
  }

  .phase-number {
      font-size: 3rem;
  }

  .phase-dates span {
      font-size: 1.2rem;
  }

  .countdown-item span {
      font-size: 2.5rem;
  }

  .stat-value {
      font-size: 2rem;
  }
}

/* About Section Base Styles */
.algora-about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(45deg, #000510, #001933);
  padding: 4rem 2rem;
}

/* Animated Background */
.algora-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.algora-grid-overlay {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
      linear-gradient(to right, rgba(0, 247, 255, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotate(45deg);
  animation: algoraGridMove 20s linear infinite;
}

.algora-data-streams {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: 
      repeating-linear-gradient(
          90deg,
          transparent 0,
          transparent 40px,
          rgba(0, 247, 255, 0.1) 40px,
          rgba(0, 247, 255, 0.1) 41px
      );
  animation: algoraDataFlow 3s linear infinite;
}

/* Main Content Container */
.algora-about-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.algora-about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.algora-about-title {
  font-size: 3.5rem;
  color: #fff;
  opacity: 0;
  transform: translateX(-50px);
  animation: algoraSlideIn 1s ease forwards;
}

.algora-title-underline {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
  margin: 1rem auto;
  animation: algoraExpandLine 1.5s ease forwards 0.5s;
}

.algora-about-subtitle {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: algoraFadeIn 1s ease forwards 1s;
}

/* Content Area */
.algora-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.algora-about-text {
  opacity: 0;
  animation: algoraFadeIn 1s ease forwards 1.5s;
}

.algora-about-paragraph {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: justify;
}

/* Brain Animation */
.algora-animation-container {
  position: relative;
  height: 400px;
}

.algora-brain-model {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.algora-brain-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 247, 255, 0.2), transparent);
  border-radius: 50%;
  animation: algoraPulse 2s ease-in-out infinite;
}

.algora-brain-circuits {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,...') center/contain no-repeat;
  animation: algoraRotate 20s linear infinite;
}

/* Benefits Grid */
.algora-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.algora-benefit-item {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 247, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
}

.algora-benefit-item:nth-child(1) { animation: algoraSlideUp 0.5s ease forwards 2s; }
.algora-benefit-item:nth-child(2) { animation: algoraSlideUp 0.5s ease forwards 2.2s; }
.algora-benefit-item:nth-child(3) { animation: algoraSlideUp 0.5s ease forwards 2.4s; }

.algora-benefit-icon {
  font-size: 2rem;
  color: #00f7ff;
  margin-bottom: 1rem;
}

/* CTA Button */
.algora-about-cta {
  text-align: center;
  margin-top: 4rem;
}

.algora-learn-more-btn {
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  background: transparent;
  border: 2px solid #00f7ff;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.algora-btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 247, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.algora-learn-more-btn:hover .algora-btn-glow {
  opacity: 1;
}

/* Animations */
@keyframes algoraGridMove {
  0% { transform: translateY(0) rotate(45deg); }
  100% { transform: translateY(-50px) rotate(45deg); }
}

@keyframes algoraDataFlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

@keyframes algoraSlideIn {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes algoraExpandLine {
  to {
      width: 100px;
  }
}

@keyframes algoraFadeIn {
  to {
      opacity: 1;
  }
}

@keyframes algoraPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes algoraRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes algoraSlideUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 968px) {
  .algora-about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .algora-animation-container {
      height: 300px;
  }

  .algora-benefits-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .algora-about-title {
      font-size: 2.5rem;
  }

  .algora-about-subtitle {
      font-size: 1.4rem;
  }

  .algora-about-section {
      padding: 2rem 1rem;
  }
}

/* Vision & Mission Section Styles */
.algora-vm-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(45deg, #000510, #001933);
  overflow: hidden;
  padding: 4rem 2rem;
}

/* Animated Background */
.algora-vm-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.algora-vm-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
      linear-gradient(to right, rgba(0, 247, 255, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotate(45deg);
  animation: vmGridMove 20s linear infinite;
}

.algora-vm-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Container */
.algora-vm-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.algora-vm-header {
  text-align: center;
  margin-bottom: 4rem;
}

.algora-vm-title {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: vmFadeIn 1s ease forwards;
}

.algora-vm-title-underline {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
  margin: 1rem auto;
  animation: vmExpandLine 1.5s ease forwards 0.5s;
}

/* Content Layout */
.algora-vm-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin: 4rem 0;
}

/* Vision & Mission Common Styles */
.algora-vm-vision,
.algora-vm-mission {
  padding: 2rem;
  background: rgba(0, 247, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
}

.algora-vm-vision { animation: vmSlideUp 0.8s ease forwards 0.5s; }
.algora-vm-mission { animation: vmSlideUp 0.8s ease forwards 0.8s; }

.algora-vm-subtitle {
  font-size: 2rem;
  color: #00f7ff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.algora-vm-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Divider Styles */
.algora-vm-divider {
  position: relative;
  width: 2px;
  background: rgba(0, 247, 255, 0.1);
  margin: 0 2rem;
}

.algora-vm-pulse-line {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #00f7ff, transparent);
  animation: vmPulseLine 2s ease-in-out infinite;
}

/* Icon Animations */
.algora-vm-icon-container {
  height: 150px;
  margin-bottom: 2rem;
  position: relative;
}

/* Eye Animation */
.algora-eye-outer {
  width: 100px;
  height: 100px;
  border: 2px solid #00f7ff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: vmPulse 2s infinite;
}

/* Rocket Animation */
.algora-rocket-body {
  width: 40px;
  height: 100px;
  background: #00f7ff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  animation: vmFloat 3s ease-in-out infinite;
}

/* CTA Button */
.algora-vm-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid #00f7ff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.algora-vm-button:hover {
  background: rgba(0, 247, 255, 0.1);
  transform: translateY(-3px);
}

.algora-vm-button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.3), transparent);
  animation: vmButtonGlow 2s infinite;
}

/* Animations */
@keyframes vmGridMove {
  0% { transform: translateY(0) rotate(45deg); }
  100% { transform: translateY(-50px) rotate(45deg); }
}

@keyframes vmFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes vmExpandLine {
  from { width: 0; }
  to { width: 100px; }
}

@keyframes vmSlideUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes vmPulseLine {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
}

@keyframes vmPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes vmFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes vmButtonGlow {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Media Queries */
@media (max-width: 968px) {
  .algora-vm-content {
      grid-template-columns: 1fr;
  }

  .algora-vm-divider {
      width: 100%;
      height: 2px;
      margin: 2rem 0;
  }

  .algora-vm-title {
      font-size: 2.5rem;
  }

  .algora-vm-subtitle {
      font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .algora-vm-section {
      padding: 2rem 1rem;
  }

  .algora-vm-title {
      font-size: 2rem;
  }

  .algora-vm-subtitle {
      font-size: 1.5rem;
  }

  .algora-vm-text {
      font-size: 1rem;
  }
}

/* Tokenomics Section Styles */
.algora-tokenomics-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(45deg, #000510, #001933);
  overflow: hidden;
  padding: 4rem 2rem;
}

/* Background Effects */
.algora-tokenomics-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.algora-tokenomics-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
      linear-gradient(to right, rgba(0, 247, 255, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotate(45deg);
  animation: tokenGridMove 20s linear infinite;
}

/* Container Styles */
.algora-tokenomics-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.algora-tokenomics-header {
  text-align: center;
  margin-bottom: 4rem;
}

.algora-tokenomics-title {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: tokenFadeIn 1s ease forwards;
}

.algora-tokenomics-underline {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
  margin: 1rem auto;
  animation: tokenExpandLine 1.5s ease forwards 0.5s;
}

.algora-tokenomics-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: tokenFadeIn 1s ease forwards 1s;
}

/* Chart Container */
.algora-tokenomics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.algora-tokenomics-chart {
  position: relative;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.9);
  animation: tokenChartReveal 1s ease forwards 1.5s;
}

.algora-chart-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 247, 255, 0.2), transparent 70%);
  pointer-events: none;
  animation: tokenChartGlow 2s ease-in-out infinite;
}

/* Distribution Details */
.algora-token-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(0, 247, 255, 0.05);
  border-radius: 10px;
  opacity: 0;
  transform: translateX(30px);
}

.algora-token-item:nth-child(1) { animation: tokenSlideIn 0.5s ease forwards 1.8s; }
.algora-token-item:nth-child(2) { animation: tokenSlideIn 0.5s ease forwards 2.0s; }
.algora-token-item:nth-child(3) { animation: tokenSlideIn 0.5s ease forwards 2.2s; }
.algora-token-item:nth-child(4) { animation: tokenSlideIn 0.5s ease forwards 2.4s; }
.algora-token-item:nth-child(5) { animation: tokenSlideIn 0.5s ease forwards 2.6s; }

.algora-token-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 247, 255, 0.1);
  border-radius: 50%;
  margin-right: 1rem;
  color: #00f7ff;
  font-size: 1.5rem;
}

/* Progress Bars */
.algora-tokenomics-progress {
  margin: 4rem 0;
}

.algora-progress-item {
  margin-bottom: 1.5rem;
}

.algora-progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.algora-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 5px;
  position: absolute;
  transition: width 1.5s ease;
}

.algora-progress-fill.presale { background: linear-gradient(90deg, #00f7ff, #00d9ff); }
.algora-progress-fill.staking { background: linear-gradient(90deg, #7c4dff, #b388ff); }
.algora-progress-fill.development { background: linear-gradient(90deg, #00e676, #69f0ae); }
.algora-progress-fill.marketing { background: linear-gradient(90deg, #ffd740, #ffecb3); }
.algora-progress-fill.reserve { background: linear-gradient(90deg, #ff4081, #ff80ab); }

/* Button Styles */
.algora-tokenomics-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid #00f7ff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.algora-button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.3), transparent);
  animation: tokenButtonGlow 2s infinite;
}

/* Animations */
@keyframes tokenGridMove {
  0% { transform: translateY(0) rotate(45deg); }
  100% { transform: translateY(-50px) rotate(45deg); }
}

@keyframes tokenFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes tokenExpandLine {
  from { width: 0; }
  to { width: 100px; }
}

@keyframes tokenChartReveal {
  to {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes tokenChartGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes tokenSlideIn {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes tokenButtonGlow {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Media Queries */
@media (max-width: 968px) {
  .algora-tokenomics-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .algora-tokenomics-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .algora-tokenomics-section {
      padding: 2rem 1rem;
  }

  .algora-tokenomics-title {
      font-size: 2rem;
  }

  .algora-token-item {
      flex-direction: column;
      text-align: center;
  }

  .algora-token-icon {
      margin: 0 0 1rem 0;
  }
}

/* Roadmap Section Base Styles */
.algora-roadmap-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(45deg, #000510, #001933);
  overflow: hidden;
  padding: 4rem 2rem;
}

/* Animated Background */
.algora-roadmap-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.algora-roadmap-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
      linear-gradient(to right, rgba(0, 247, 255, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotate(45deg);
  animation: roadmapGridMove 20s linear infinite;
}

/* Container Styles */
.algora-roadmap-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.algora-roadmap-header {
  text-align: center;
  margin-bottom: 4rem;
}

.algora-roadmap-title {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: roadmapFadeIn 1s ease forwards;
}

.algora-roadmap-underline {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
  margin: 1rem auto;
  animation: roadmapExpandLine 1.5s ease forwards 0.5s;
}

.algora-roadmap-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: roadmapFadeIn 1s ease forwards 1s;
}

/* Timeline Styles */
.algora-timeline-container {
  position: relative;
  padding: 2rem 0;
  margin: 4rem 0;
}

.algora-timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(0, 247, 255, 0.2);
  top: 0;
}

.algora-timeline-glow {
  position: absolute;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, #00f7ff, transparent);
  animation: timelineGlow 3s ease-in-out infinite;
}

/* Year Marker Styles */
.algora-timeline-year {
  position: relative;
  margin: 6rem 0;
}

.algora-year-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.algora-year-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00f7ff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

.algora-marker-dot {
  width: 20px;
  height: 20px;
  background: #00f7ff;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 15px #00f7ff;
  animation: markerPulse 2s infinite;
}

/* Milestone Card Styles */
.algora-milestones-container {
  width: 45%;
  opacity: 0;
  transform: translateX(-30px);
}

.algora-milestones-container.right {
  margin-left: 55%;
  transform: translateX(30px);
}

.algora-milestone-card {
  background: rgba(0, 247, 255, 0.05);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.algora-milestone-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 247, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
}

.algora-milestone-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 247, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #00f7ff;
  font-size: 1.5rem;
}

.algora-milestone-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.algora-milestone-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* CTA Button Styles */
.algora-roadmap-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid #00f7ff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.algora-button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.3), transparent);
  animation: buttonGlow 2s infinite;
}

/* Animations */
@keyframes roadmapGridMove {
  0% { transform: translateY(0) rotate(45deg); }
  100% { transform: translateY(-50px) rotate(45deg); }
}

@keyframes roadmapFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes roadmapExpandLine {
  from { width: 0; }
  to { width: 100px; }
}

@keyframes timelineGlow {
  0%, 100% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(70%); opacity: 1; }
}

@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 15px #00f7ff; }
  50% { box-shadow: 0 0 30px #00f7ff; }
}

@keyframes buttonGlow {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Media Queries */
@media (max-width: 968px) {
  .algora-timeline-line {
      left: 30px;
  }

  .algora-year-marker {
      left: 30px;
      transform: none;
  }

  .algora-milestones-container {
      width: calc(100% - 60px);
      margin-left: 60px !important;
      transform: none !important;
  }

  .algora-roadmap-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .algora-roadmap-section {
      padding: 2rem 1rem;
  }

  .algora-roadmap-title {
      font-size: 2rem;
  }

  .algora-milestone-card {
      padding: 1rem;
  }
}


/* Widget Section Base Styles */
.algora-widgets-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(45deg, #000510, #001933);
  overflow: hidden;
  padding: 4rem 2rem;
}

/* Animated Background */
.algora-widgets-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.algora-widgets-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
      linear-gradient(to right, rgba(0, 247, 255, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotate(45deg);
  animation: widgetsGridMove 20s linear infinite;
}

.algora-neural-paths {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  pointer-events: none;
}

/* Container Styles */
.algora-widgets-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Styles */
.algora-widgets-header {
  text-align: center;
  margin-bottom: 4rem;
}

.algora-widgets-title {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: widgetsFadeIn 1s ease forwards;
}

.algora-widgets-underline {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
  margin: 1rem auto;
  animation: widgetsExpandLine 1.5s ease forwards 0.5s;
}

.algora-widgets-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: widgetsFadeIn 1s ease forwards 1s;
}

/* Widgets Grid Layout */
.algora-widgets-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

/* Widget Card Styles */
.algora-widget-card {
  background: rgba(0, 247, 255, 0.05);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.algora-widget-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 247, 255, 0.2);
  background: rgba(0, 247, 255, 0.1);
}

/* Widget Header Styles */
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.widget-header h4 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}

.widget-controls button {
  background: rgba(0, 247, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #00f7ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.widget-controls button:hover {
  background: rgba(0, 247, 255, 0.2);
  transform: rotate(180deg);
}

/* Price Widget Styles */
/* Price Tracker Widget Specific Styles */

.algora-widget-card[data-widget="price"] {
  min-height: 350px;
  height: 100%;
}

.algora-widget-card[data-widget="price"] .widget-content {
  height: 240px; /* Reduced from 300px */
  position: relative;
  padding-top: 1rem;
}

.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 247, 255, 0.05);
  border-radius: 10px;
}

.current-price {
  font-size: 1.8rem;
  color: #00f7ff;
  font-weight: bold;
  font-family: 'Courier New', monospace;
}

.price-change {
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

#priceChart {
  height: 180px !important; /* Set specific height */
  width: 100% !important;
}

.widget-header {
  padding-bottom: 0.5rem; /* Reduced padding */
}

.price-change.positive {
  color: #00e676;
  background: rgba(0, 230, 118, 0.1);
}

.price-change.negative {
  color: #ff4081;
  background: rgba(255, 64, 129, 0.1);
}

.refresh-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(0, 247, 255, 0.1);
  border: none;
  color: #00f7ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.refresh-btn:hover {
  background: rgba(0, 247, 255, 0.2);
}

.refresh-btn i {
  font-size: 1rem;
}

/* Transaction Analyzer Styles */
.transaction-flow {
  position: relative;
  height: 150px;
  margin-bottom: 1rem;
}

.transaction-path {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 247, 255, 0.2);
  transform: translateY(-50%);
}

.transaction-block {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #00f7ff;
  border-radius: 4px;
  animation: moveBlock 3s linear;
}

/* Network Monitor Styles */
.network-metric {
  margin-bottom: 1rem;
}

.metric-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #00f7ff, #2196f3);
  width: 0;
  transition: width 1s ease;
}


/* CTA Button Styles */
.algora-widgets-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid #00f7ff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.algora-button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.3), transparent);
  animation: buttonGlow 2s infinite;
}

/* Animations */
@keyframes widgetsGridMove {
  0% { transform: translateY(0) rotate(45deg); }
  100% { transform: translateY(-50px) rotate(45deg); }
}

@keyframes widgetsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes widgetsExpandLine {
  from { width: 0; }
  to { width: 100px; }
}

@keyframes moveBlock {
  from { left: -30px; }
  to { left: calc(100% + 30px); }
}

@keyframes buttonGlow {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Media Queries */
@media (max-width: 968px) {
  .algora-widgets-grid-container {
      grid-template-columns: 1fr;
  }

  .algora-widgets-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .algora-widgets-section {
      padding: 2rem 1rem;
  }

  .algora-widgets-title {
      font-size: 2rem;
  }

  .widget-header {
      flex-direction: column;
      text-align: center;
  }

  .widget-controls {
      margin-top: 1rem;
  }
}

/* Footer Base Styles */
.algora-footer {
  position: relative;
  background: linear-gradient(0deg, #000510 0%, #001933 100%);
  padding: 4rem 0 0;
  overflow: hidden;
}

/* Animated Background */
.algora-footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.algora-footer-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
      linear-gradient(to right, rgba(0, 247, 255, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotate(45deg);
  animation: footerGridMove 20s linear infinite;
}

.algora-footer-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Container Styles */
.algora-footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Main Content Grid */
.algora-footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Footer Sections */
.algora-footer-section {
  opacity: 0;
  transform: translateY(20px);
  animation: footerSectionFadeIn 0.8s ease forwards;
}

.algora-footer-section:nth-child(1) { animation-delay: 0.2s; }
.algora-footer-section:nth-child(2) { animation-delay: 0.4s; }
.algora-footer-section:nth-child(3) { animation-delay: 0.6s; }
.algora-footer-section:nth-child(4) { animation-delay: 0.8s; }

/* Logo and Description */
.algora-footer-logo {
  margin-bottom: 1.5rem;
}

.algora-footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Section Titles */
.algora-footer-title {
  color: #00f7ff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.algora-footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #00f7ff;
  box-shadow: 0 0 10px #00f7ff;
}

/* Quick Links */
.algora-footer-links {
  list-style: none;
  padding: 0;
}

.algora-footer-links li {
  margin-bottom: 0.8rem;
}

.algora-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.algora-footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00f7ff;
  transition: width 0.3s ease;
}

.algora-footer-links a:hover {
  color: #00f7ff;
}

.algora-footer-links a:hover::before {
  width: 100%;
}

/* Contact Info */
.algora-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.algora-contact-item i {
  color: #00f7ff;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.algora-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.algora-contact-item a:hover {
  color: #00f7ff;
}

/* Social Icons */
.algora-social-icons {
  display: flex;
  gap: 1rem;
}

.algora-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 247, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f7ff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.algora-social-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #00f7ff;
  opacity: 0;
  transition: all 0.3s ease;
}

.algora-social-icon:hover {
  transform: translateY(-3px);
  background: rgba(0, 247, 255, 0.2);
}

.algora-social-icon:hover::before {
  transform: scale(1.2);
  opacity: 1;
}

/* Newsletter */
.algora-newsletter {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(0, 247, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 247, 255, 0.1);
}

.algora-input-group {
  display: flex;
  gap: 1rem;
}

.algora-input-group input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.algora-input-group input:focus {
  outline: none;
  border-color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.algora-input-group button {
  padding: 0.8rem 2rem;
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  border: none;
  border-radius: 8px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.algora-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

/* Language Selector */
.algora-language-selector {
  margin-bottom: 2rem;
}

.algora-language-selector select {
  padding: 0.8rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,...");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Footer Bottom */
.algora-footer-bottom {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(0, 247, 255, 0.1);
}

.algora-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* End Animation */
.algora-footer-end {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.algora-thank-you {
  position: relative;
  font-size: 1.5rem;
  color: #00f7ff;
  opacity: 0;
  transform: translateY(20px);
}

.algora-thank-you.visible {
  animation: thankYouFadeIn 1s ease forwards;
}

.algora-end-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 247, 255, 0.2), transparent 70%);
  animation: endGlow 2s ease-in-out infinite;
}

/* Animations */
@keyframes footerGridMove {
  0% { transform: translateY(0) rotate(45deg); }
  100% { transform: translateY(-50px) rotate(45deg); }
}

@keyframes footerSectionFadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes thankYouFadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes endGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

/* Media Queries */
@media (max-width: 968px) {
  .algora-footer-content {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .algora-footer-content {
      grid-template-columns: 1fr;
  }

  .algora-input-group {
      flex-direction: column;
  }

  .algora-social-icons {
      justify-content: center;
  }
}

/* FAQ Section Base Styles */
.algora-dynamic-faq {
  position: relative;
  background: linear-gradient(180deg, #000510 0%, #001933 100%);
  padding: 6rem 0;
  min-height: 100vh;
  overflow: hidden;
}

/* Background Animations */
.algora-faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.algora-neural-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(circle at 50% 50%, rgba(0, 247, 255, 0.03) 1px, transparent 1px),
      radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.02) 1px, transparent 1px);
  background-size: 30px 30px, 40px 40px;
  animation: neuralPulse 4s ease-in-out infinite;
}

.algora-data-streams {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(0, 247, 255, 0.05) 25%,
      rgba(33, 150, 243, 0.05) 50%,
      rgba(0, 247, 255, 0.05) 75%,
      transparent 100%);
  transform: translateX(-100%);
  animation: dataStream 8s linear infinite;
}

/* Container Styles */
.algora-faq-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
}

/* Header Styles */
.algora-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.algora-faq-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: glowText 2s ease-in-out infinite;
}

.algora-faq-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeIn 1s ease-out;
}

/* Search Bar Styles */
.algora-faq-searchbar {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.algora-search-container {
  position: relative;
}

.algora-search-container input {
  width: 100%;
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  background: rgba(0, 247, 255, 0.05);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.algora-search-container input:focus {
  outline: none;
  border-color: rgba(0, 247, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
}

.algora-search-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 247, 255, 0.6);
}

/* FAQ Items Styles */
.algora-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.algora-faq-item {
  margin-bottom: 1rem;
  background: rgba(0, 247, 255, 0.05);
  border: 1px solid rgba(0, 247, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.algora-faq-item:hover {
  transform: translateX(5px);
  border-color: rgba(0, 247, 255, 0.3);
}

.algora-faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
}

.algora-question-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.algora-question-icon span {
  position: absolute;
  background-color: #00f7ff;
  transition: all 0.3s ease;
}

.algora-question-icon span:first-child {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.algora-question-icon span:last-child {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.algora-faq-item.active .algora-question-icon span:last-child {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.algora-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.algora-faq-item.active .algora-faq-answer {
  max-height: 300px;
}

.algora-faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* CTA Styles */
.algora-faq-cta {
  text-align: center;
  margin-top: 4rem;
}

.algora-faq-cta h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.algora-contact-button {
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.algora-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 247, 255, 0.3);
}

/* Chatbot Styles */
.algora-ai-assistant {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
}

.algora-chatbot-trigger {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(45deg, #00f7ff, #2196f3);
  border: none;
  border-radius: 50px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

.algora-chatbot-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 247, 255, 0.4);
}

/* Animations */
@keyframes neuralPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes dataStream {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes glowText {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 247, 255, 0.5); }
  50% { text-shadow: 0 0 30px rgba(0, 247, 255, 0.8); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .algora-faq-title {
      font-size: 2.5rem;
  }
  
  .algora-faq-question {
      font-size: 1rem;
      padding: 1.2rem;
  }
  
  .algora-search-container input {
      padding: 1rem;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .algora-faq-title {
      font-size: 2rem;
  }
  
  .algora-chatbot-trigger span {
      display: none;
  }
  
  .algora-chatbot-trigger {
      padding: 1rem;
  }
}