@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ✨ Arka Plan Işık Efekti - v00.one tarzı */
.background-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  filter: blur(120px);
  animation: moveGlow 20s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes moveGlow {
  0% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: translate(2%, 3%) scale(1.1);
    opacity: 0.7;
  }
  100% { 
    transform: translate(-2%, -3%) scale(0.95);
    opacity: 0.6;
  }
}

/* 🌐 Navbar - v00.one tarzı */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 80px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0) scale(1);
  transform-origin: top center;
}

.navbar.scrolled {
  padding: 16px 60px;
  transform: translateY(8px) scale(0.95);
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo {
  font-size: 18px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.navbar.scrolled .nav-links a {
  font-size: 14px;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5865f2, #8b5cf6);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* 🏠 Hero Bölümü - Yeni Modern Tasarım */
.hero {
  margin-top: 40px;
  padding: 0 40px 80px;
  z-index: 5;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  z-index: 10;
  position: relative;
}

.hero-badge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.3), rgba(139, 92, 246, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.2);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  top: 50%;
  right: 20%;
  animation-delay: 2s;
  width: 60px;
  height: 60px;
}

.float-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
  width: 100px;
  height: 100px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

.beta {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease;
}

h1 {
  font-size: clamp(48px, 6vw, 80px);
  margin: 0 0 24px 0;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.1;
  text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, rgba(88, 101, 242, 0.8) 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.desc {
  max-width: 100%;
  margin: 0 0 40px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.buttons {
  margin-top: 0;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.primary {
  background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
}

.primary::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: left 0.5s;
}

.primary:hover::before {
  left: 100%;
}

.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🎧 Özellik Bölümü - Yeni Modern Kart Tasarımı */
.feature-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 40px;
  position: relative;
  z-index: 5;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  align-items: center;
  position: relative;
}

.feature-card-reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.feature-card-reverse > * {
  direction: ltr;
}

.feature-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-overlay {
  opacity: 1;
}

.feature-card:hover .feature-img {
  transform: scale(1.05);
}

.feature-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(88, 101, 242, 0.25);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.feature-content {
  padding: 20px;
  position: relative;
}

.feature-number {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(139, 92, 246, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: -40px;
  left: -20px;
  z-index: 0;
  opacity: 0.3;
  font-family: 'Inter', sans-serif;
}

.feature-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.feature-content p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-btn:hover::before {
  left: 100%;
}

.feature-btn:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: rgba(88, 101, 242, 0.5);
  color: #ffffff;
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.2);
}

.feature-btn svg {
  transition: transform 0.3s ease;
}

.feature-btn:hover svg {
  transform: translateX(4px);
}

/* 💎 Premium Karşılaştırma - v00.one tarzı */
.pricing {
  text-align: center;
  margin: 100px auto 80px;
  padding: 0 40px;
  position: relative;
  z-index: 5;
  max-width: 1400px;
}

.pricing-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 400;
}

.pricing-table {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.plan {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 360px;
  padding: 48px 36px;
  text-align: left;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.plan:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 101, 242, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(88, 101, 242, 0.15);
}

.plan h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.price-tag {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #5865f2, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.plan ul li {
  margin: 12px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.plan.premium {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(88, 101, 242, 0.3);
  box-shadow: 0 10px 40px rgba(88, 101, 242, 0.2);
}

.plan.premium:hover {
  box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
}

.popular {
  position: absolute;
  top: -16px;
  right: 32px;
  background: linear-gradient(135deg, #5865f2, #8b5cf6);
  color: white;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

/* 💜 CTA Bölümü - v00.one tarzı */
.cta {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 32px;
  padding: 60px 50px;
  margin: 120px auto;
  max-width: 1200px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta:hover::before {
  opacity: 1;
}

.cta-content {
  max-width: 550px;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 400;
}

.cta-img {
  max-width: 320px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.cta:hover .cta-img {
  transform: translateY(-8px);
}

.btn.big {
  padding: 18px 40px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* ⚫ Footer - v00.one tarzı */
footer {
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 80px 40px;
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 5;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-links h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 400;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* 📱 Responsive - Yeni Tasarım */
@media (max-width: 1200px) {
  .navbar {
    padding: 24px 60px;
  }
  
  .navbar.scrolled {
    padding: 16px 50px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
    height: 400px;
  }
  
  h1 {
    text-align: center;
  }
  
  .desc {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 600px;
  }
  
  .buttons {
    justify-content: center;
  }
  
  .feature-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-card-reverse {
    direction: ltr;
  }
  
  .feature-visual {
    height: 300px;
  }
  
  .feature-content {
    text-align: center;
  }
  
  .feature-number {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .navbar { 
    flex-direction: column; 
    padding: 20px 30px; 
    gap: 20px;
  }
  
  .navbar.scrolled {
    padding: 14px 25px;
    transform: translateY(6px) scale(0.96);
  }
  
  .navbar.scrolled .logo {
    font-size: 17px;
  }
  .nav-links { 
    flex-direction: row; 
    gap: 20px; 
    margin-top: 0; 
  }
  .hero {
    padding: 0 20px 60px;
    min-height: auto;
  }
  .hero-container {
    gap: 40px;
  }
  .hero-visual {
    height: 300px;
  }
  h1 { 
    font-size: clamp(36px, 8vw, 56px); 
  }
  .desc { 
    font-size: 16px; 
  }
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn { 
    width: 100%;
    max-width: 300px;
  }
  .feature-section {
    padding: 60px 20px;
  }
  .feature-visual {
    height: 250px;
  }
  .feature-content h2 {
    font-size: 32px;
  }
  .feature-number {
    font-size: 80px;
    top: -20px;
  }
  .cta { 
    flex-direction: column; 
    text-align: center; 
    padding: 60px 40px;
  }
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }
  .plan {
    width: 100%;
    max-width: 400px;
  }
  footer {
    padding: 60px 40px 30px;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .navbar {
    padding: 16px 20px;
  }
  
  .navbar.scrolled {
    padding: 12px 18px;
    transform: translateY(5px) scale(0.97);
  }
  
  .navbar.scrolled .logo {
    font-size: 16px;
  }
  .logo { 
    font-size: 18px; 
  }
  .hero {
    padding: 0 16px 40px;
  }
  .hero-visual {
    height: 200px;
  }
  .float-element {
    width: 40px;
    height: 40px;
  }
  .float-3 {
    width: 60px;
    height: 60px;
  }
  h1 { 
    font-size: clamp(32px, 10vw, 48px); 
    letter-spacing: -2px;
  }
  .desc { 
    font-size: 15px; 
    line-height: 1.7; 
  }
  .pricing-title { 
    font-size: clamp(28px, 6vw, 36px); 
  }
  .feature-section {
    padding: 50px 16px;
  }
  .feature-visual {
    height: 200px;
  }
  .feature-content h2 {
    font-size: 28px;
  }
  .feature-number {
    font-size: 60px;
    top: -10px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    top: 16px;
    right: 16px;
  }
  .cta {
    padding: 40px 24px;
    margin: 80px auto;
  }
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}
/* Bot Profile - Yeni Tasarım */
.bot-profile {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 10px 18px;
  margin: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.bot-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.3);
  border-color: rgba(88, 101, 242, 0.3);
}

.bot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.bot-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bot-name {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.bot-badge {
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #5865f2, #8b5cf6);
  padding: 3px 10px;
  border-radius: 8px;
  text-transform: uppercase;
}

.verified {
  color: #57F287;
  font-size: 14px;
  margin-left: 2px;
}

/* ✓ UYG rozeti - v00.one tarzı */
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  margin-left: 8px;
  background: linear-gradient(135deg, #5865f2, #8b5cf6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
  vertical-align: middle;
}

.verified-pill .check {
  width: 12px;
  height: 12px;
  fill: #fff;
  display: block;
}

.verified-pill .label {
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
/* 🔹 Dil Seçici - v00.one tarzı */
.lang-select {
  position: relative;
}

.lang-select select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  border-radius: 12px;
  padding: 10px 36px 10px 14px;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.navbar.scrolled .lang-select select {
  padding: 8px 32px 8px 12px;
  font-size: 13px;
}

.lang-select select:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(88, 101, 242, 0.4);
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.2);
}

.lang-select select:focus {
  border-color: rgba(88, 101, 242, 0.6);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.lang-select option {
  background: #000000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px;
}

.feature-box {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.feature-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll animasyonları */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .nav-right {
    flex-direction: column;
    gap: 10px;
  }
}

/* ✨ Gelişmiş Animasyonlar ve Efektler */

/* Parallax removed - sections stay static */

/* Loading State */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(88, 101, 242, 0.2);
  border-top-color: #5865f2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Particle Effect (CSS ile) */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(88, 101, 242, 0.5);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  50% {
    transform: translate(100px, -100px) scale(1.5);
    opacity: 0.8;
  }
}

/* Hover Glow Efekti */
.glow-on-hover {
  position: relative;
  transition: all 0.3s ease;
}

.glow-on-hover::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.4), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.glow-on-hover:hover::before {
  width: 300px;
  height: 300px;
}

/* Text Gradient Animation */
.gradient-text {
  background: linear-gradient(135deg, #5865f2, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Micro-interactions */
.btn:active {
  transform: translateY(0) scale(0.98);
}

.feature-box:active {
  transform: translateY(-2px) scale(0.99);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #5865f2, #8b5cf6);
  z-index: 1000;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

/* Cursor Follow Effect (optional) */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(88, 101, 242, 0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  z-index: 9999;
  display: none;
}

.custom-cursor.active {
  width: 40px;
  height: 40px;
  border-color: rgba(88, 101, 242, 0.8);
}

/* Image Lazy Loading Placeholder */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Smooth Page Transitions */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

/* Enhanced Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Card Tilt Effect - Removed */

/* Glassmorphism Enhancement */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Shimmer Effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Pulse Animation */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Bounce Animation */
.bounce-in {
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* Scale on Hover */
.scale-on-hover {
  transition: transform 0.3s ease;
}

.scale-on-hover:hover {
  transform: scale(1.05);
}

/* Text Reveal Animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: textReveal 0.6s ease forwards;
}

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient Border Animation */
.gradient-border {
  position: relative;
  background: #000;
  border-radius: 12px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #5865f2, #8b5cf6, #ec4899);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

/* Performance Optimizations */
* {
  -webkit-tap-highlight-color: transparent;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark Mode Support (already dark, but for future) */
@media (prefers-color-scheme: dark) {
  body {
    background: #000000;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .background-glow,
  .particles {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}