/* Temel Tema ve Renk Değişkenleri - Güncellenmiş Versiyon */
:root {
  --purple: #4B0082;
  --purple-light: #7B68EE;
  --black: #000000;
  --electric-blue: #00FFFF;
  --dark-purple: #2D0050;
  --light-purple: #9370DB;
  --dark-bg: #0a0a0a;
  --light-bg: #f8f9fa;
  --dark-text: #202020;
  --light-text: #f0f0f0;
  --gray-800: #343a40;
  --gray-200: #e9ecef;
  
  /* Geçiş süreleri */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  
  /* Gölgeler */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.18);
}

/* Ana Tema Stilleri */
body {
  background-color: var(--dark-bg);
  color: var(--light-text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Geliştirilmiş Dark/Light Tema Desteği */
.dark body {
  background-color: var(--light-bg);
  color: var(--dark-text);
}

/* Navbar iyileştirmeleri - daha akıcı versiyon */
nav {
  transition: transform 0.25s cubic-bezier(0.33, 1, 0.68, 1), 
              background-color 0.25s ease,
              backdrop-filter 0.25s ease,
              box-shadow 0.25s ease;
  will-change: transform;
  backface-visibility: hidden; /* Daha akıcı geçişler için */
  transform: translateZ(0); /* GPU hızlandırma */
}

.nav-hidden {
  transform: translateY(-110%); /* Tamamen gizle ve ekstra marj bırak */
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1); /* Gizleme animasyonu */
}

.nav-scrolled {
  background-color: rgba(10, 10, 10, 0.98); /* Daha opak arka plan */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.dark .nav-scrolled {
  background-color: rgba(248, 249, 250, 0.98);
}

/* Geliştirilmiş blur optimizasyonu */
.nav-blur {
  background-color: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(75, 0, 130, 0.3);
}

.nav-scrolled.nav-blur {
  backdrop-filter: blur(8px); /* Daha hafif blur */
  -webkit-backdrop-filter: blur(8px);
}

/* Mobil için blur */
@media (max-width: 768px) {
  .nav-scrolled.nav-blur {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

/* İyileştirilmiş Link Stilleri */
.nav-link {
  position: relative;
  color: var(--light-text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition-normal);
  font-weight: 500;
}

.dark .nav-link {
  color: var(--dark-text);
}

.nav-link:hover {
  color: var(--electric-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--electric-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Buton Stillerini İyileştirme */
.connect-wallet-btn, .primary-button {
  background-image: linear-gradient(135deg, var(--purple), var(--electric-blue));
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.connect-wallet-btn:hover, .primary-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.secondary-button {
  background: transparent;
  color: var(--light-text);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all var(--transition-normal);
  border: 1px solid var(--purple);
  cursor: pointer;
}

.dark .secondary-button {
  color: var(--dark-text);
}

.secondary-button:hover {
  background-color: rgba(75, 0, 130, 0.1);
  transform: translateY(-3px);
}

.cta-button {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Bölüm Başlıklarını İyileştirme */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--purple), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.dark .section-subtitle {
  color: var(--dark-text);
}

/* Geliştirilmiş Kartlar */
.feature-card, .step-card, .stat-card, .testimonial-card {
  background: linear-gradient(145deg, rgba(75, 0, 130, 0.1), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(75, 0, 130, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-md);
}

.dark .feature-card, .dark .step-card, .dark .stat-card, .dark .testimonial-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(245, 245, 247, 0.9));
  border: 1px solid rgba(75, 0, 130, 0.2);
  color: var(--dark-text);
}

.feature-card:hover, .step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--electric-blue);
}

/* Feature Card İçeriklerini İyileştirme */
.feature-title, .step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.dark .feature-title, .dark .step-title {
  color: var(--dark-text);
}

.feature-description, .step-description {
  color: #bbb;
  line-height: 1.6;
}

.dark .feature-description, .dark .step-description {
  color: #555;
}

/* İstatistik Kartları İyileştirme */
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--purple), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--light-text);
  font-size: 1.1rem;
}

.dark .stat-label {
  color: var(--dark-text);
}

/* Testimonial Kartları İyileştirme */
.testimonial-card {
  margin: 1rem;
  padding: 2rem;
}

.testimonial-content {
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
}

.dark .testimonial-content {
  color: var(--dark-text);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--light-text);
}

.dark .testimonial-author-name {
  color: var(--dark-text);
}

.testimonial-author-title {
  color: #bbb;
  font-size: 0.875rem;
}

.dark .testimonial-author-title {
  color: #666;
}

/* Footer İyileştirmeleri */
footer {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(75, 0, 130, 0.3);
  transition: background-color var(--transition-normal);
}

.dark footer {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(75, 0, 130, 0.2);
}

footer h4 {
  color: var(--light-text);
  font-weight: 600;
}

.dark footer h4 {
  color: var(--dark-text);
}

footer p, footer a {
  color: #bbb;
  transition: color var(--transition-normal);
}

.dark footer p, .dark footer a {
  color: #555;
}

footer a:hover {
  color: var(--electric-blue);
}

/* Geliştirilmiş Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--purple), var(--electric-blue));
  z-index: 1000;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

/* İyileştirilmiş Form Elementleri */
input, select, textarea, button {
  transition: all var(--transition-normal);
}

input, select, textarea {
  background-color: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(75, 0, 130, 0.3);
  color: var(--light-text);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.dark input, .dark select, .dark textarea {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(75, 0, 130, 0.2);
  color: var(--dark-text);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.25);
}

/* Geliştirilmiş Özel İmleç */
.custom-cursor {
  z-index: 9999;
  pointer-events: none;
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, transform 0.1s;
  mix-blend-mode: difference;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.cursor-dot {
  z-index: 10000;
  pointer-events: none;
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--electric-blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
}

/* Hero Section İyileştirmeleri */
#hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark #hero h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.glow-text {
  color: var(--electric-blue);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.dark .glow-text {
  color: var(--purple);
  text-shadow: 0 0 10px rgba(75, 0, 130, 0.7);
}

#hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--light-text);
}

.dark #hero p {
  color: var(--dark-text);
}

/* Security Checker İyileştirmeleri */
#security-checker .bg-gradient-to-b {
  box-shadow: var(--shadow-lg);
}

.security-metric {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.security-metric:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Animasyonların İyileştirilmesi */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
  }
}

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

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Mobil Uyumlu İyileştirmeler */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card, .step-card, .stat-card, .testimonial-card {
    padding: 1.5rem;
  }
  
  .nav-blur {
    backdrop-filter: none; /* Mobil cihazlarda blur devre dışı */
  }
  
  .nav-scrolled.nav-blur {
    backdrop-filter: blur(5px); /* Daha hafif blur */
  }
  
  /* Mobil cihazlarda animasyonları azalt */
  .connect-wallet-btn:hover, 
  .primary-button:hover {
    transform: none;
  }
}

/* Dark Mode Overrides */
@media (prefers-color-scheme: dark) {
  .feature-card, .step-card, .stat-card, .testimonial-card {
    background: linear-gradient(145deg, rgba(75, 0, 130, 0.2), rgba(0, 0, 0, 0.7));
  }
}

/* Custom cursor effect */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 255, 255, 0.5);
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  z-index: 9999;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--electric-blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
}

/* Tüm tıklanabilir elementlerde standart imleci gizle */
a, button, .feature-card, .step-card, 
[role="button"], 
[type="button"], 
[type="submit"], 
[type="reset"],
.nav-link,
.social-icon,
input[type="checkbox"],
input[type="radio"],
select,
.connect-wallet-btn,
.primary-button,
.secondary-button,
.cta-button {
  cursor: none !important;
}

/* Özel imlecin daha iyi görünmesi için z-index düzeltmesi */
.custom-cursor {
  z-index: 9999;
  pointer-events: none;
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
}

.cursor-dot {
  z-index: 10000;
  pointer-events: none;
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--electric-blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Sayfadaki tüm elementler için varsayılan imleci gizle */
html, body, * {
  cursor: none !important;
}

/* Dark Theme İyileştirmeleri - Security Checker ve How It Works bölümleri için */
.dark #security-checker {
  background-color: #f0f2f5;
}

.dark #security-checker .section-title {
  color: var(--dark-text);
  background: linear-gradient(90deg, var(--purple), #1a66cc);
  -webkit-background-clip: text;
  background-clip: text;
}

.dark #security-checker .section-subtitle {
  color: #444;
}

.dark #security-checker .bg-gradient-to-b {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(240, 242, 245, 0.8));
  border: 1px solid rgba(75, 0, 130, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dark #security-checker input[type="text"] {
  background-color: white;
  border: 1px solid rgba(75, 0, 130, 0.3);
  color: #333;
}

.dark #security-checker .security-metric {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(75, 0, 130, 0.15);
  color: #333;
}

.dark #security-checker h5 {
  color: var(--purple);
  font-weight: 600;
}

.dark #how-it-works {
  background-color: #f0f2f5;
  color: #333;
}

.dark #how-it-works .section-title {
  color: var(--dark-text);
}

.dark #how-it-works .section-subtitle {
  color: #444;
}

.dark #how-it-works .step-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 242, 245, 0.85));
  border: 1px solid rgba(75, 0, 130, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  color: #333;
}

.dark #how-it-works .step-title {
  color: var(--purple);
  font-weight: 700;
}

.dark #how-it-works .step-description {
  color: #444;
}

.dark #how-it-works .step-number {
  color: rgba(75, 0, 130, 0.15);
  text-shadow: none;
}

/* Risk bar ve yüklenme animasyonu için iyileştirmeler */
.dark #security-checker #security-loading {
  color: #333;
}

.dark #security-checker .inline-block.animate-spin {
  border-color: var(--purple);
  border-top-color: transparent;
}

.dark #security-checker #risk-bar {
  background-image: linear-gradient(to right, #ff5f6d, #ffc371);
}

/* İnput alanı için hover/focus durumları */
.dark #security-checker input[type="text"]:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.2);
  outline: none;
}

/* How It Works Bölümü için Genel İyileştirmeler */
#how-it-works {
  background-color: var(--dark-bg);
  position: relative;
}

#security {
  background: linear-gradient(to bottom, #0a0a0a 0%, #0e0e16 100%);
  position: relative;
}

/* Light Theme İyileştirilmiş Arka Planlar (Dark mode açıldığında) */
.dark #how-it-works {
  background: linear-gradient(135deg, #f0f2f7, #f8f9fa, #ebf4ff);
  position: relative;
}

.dark #how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234B0082' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.dark #security {
  background: linear-gradient(to bottom, #f8f9fa, #edf2f7, #e6e9ef);
  position: relative;
}

.dark #security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%234B0082' fill-opacity='0.03' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

/* Bölüm içeriği için z-index ayarı */
#how-it-works .container, 
#security .container {
  position: relative;
  z-index: 1;
}

/* Başlık İyileştirmeleri */
#how-it-works .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

#how-it-works .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--electric-blue));
  border-radius: 3px;
}

#how-it-works .section-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Adım Kartları İyileştirmeleri */
.step-card {
  position: relative;
  transition: all 0.4s ease-in-out;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.03), rgba(0, 255, 255, 0.03));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dark .step-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--electric-blue));
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
  position: relative;
  box-shadow: 0 5px 15px rgba(75, 0, 130, 0.3);
}

.step-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  z-index: -1;
  animation: pulse 2s infinite;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--electric-blue);
  position: relative;
  display: inline-block;
}

.step-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.dark .step-number {
  color: rgba(75, 0, 130, 0.1);
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -30px;
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--purple), var(--electric-blue));
  z-index: -1;
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
  }
  
  #how-it-works .step-card:last-child .step-connector {
    display: none;
  }
}

/* Dark Theme İyileştirmeleri - How It Works */
.dark #how-it-works {
  background-color: var(--dark-bg);
  position: relative;
}

.dark #how-it-works .section-title {
  background: linear-gradient(90deg, var(--purple), #0066cc);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.dark #how-it-works .section-subtitle {
  color: #444;
  font-size: 1.3rem;
  font-weight: 500;
}

.dark #how-it-works .step-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 242, 245, 0.85));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(75, 0, 130, 0.1);
}

.dark #how-it-works .step-title {
  color: var(--purple);
  font-weight: 700;
}

.dark #how-it-works .step-description {
  color: #333;
  font-weight: 400;
  line-height: 1.7;
}

.dark #how-it-works .step-icon {
  background: linear-gradient(135deg, #4B0082, #0066cc);
  box-shadow: 0 10px 20px rgba(75, 0, 130, 0.2);
}

/* Zarif bölüm ayırıcı stili */
.section-divider {
  height: 40px;
  background: linear-gradient(to bottom, var(--dark-bg), #0e0e16);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dark .section-divider {
  background: linear-gradient(to bottom, #f8f9fa, #edf2f7);
}

.divider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--purple), var(--electric-blue));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 20px rgba(75, 0, 130, 0.5);
}

.divider-content svg {
  transform: rotate(90deg);
  opacity: 0.9;
  animation: float 2s ease-in-out infinite;
}

/* Mobil için ayarlamalar */
@media (max-width: 768px) {
  .section-divider {
    height: 30px;
  }
  
  .divider-content {
    width: 40px;
    height: 40px;
  }
  
  .divider-content svg {
    width: 20px;
    height: 20px;
  }
}

/* Alternatif olarak, sadece basit bir ayırıcı çizgi eklemek isterseniz */
.simple-divider {
  height: 1px;
  max-width: 80%;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, var(--purple), var(--electric-blue), transparent);
  opacity: 0.5;
}

/* Diğer performans iyileştirmeleri */
.section-title, 
.feature-card, 
.step-card, 
.security-metric {
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* Animasyonları yalnızca ihtiyaç duyulan durumlarda uygula */
@media (prefers-reduced-motion: no-preference) {
  .connect-wallet-btn:hover, 
  .primary-button:hover {
    transform: translateY(-3px);
  }
  
  .nav-link::after {
    transition: width 0.3s ease;
  }
}

/* Performance optimizations */
.hardware-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform;
} 