 :root {
      --primary: #6c5ce7;
      --primary-light: #8577f1;
      --primary-dark: #4834d4;
      --secondary: #0984e3;
      --success: #00b894;
      --danger: #ff7675;
      --warning: #fdcb6e;
      --dark: #1e272e;
      --darker: #161a1e;
      --light: #f5f6fa;
      --gray: #636e72;
      --glass: rgba(255, 255, 255, 0.15);
      --glass-dark: rgba(0, 0, 0, 0.2);
      --border: rgba(255, 255, 255, 0.18);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
      color: var(--light);
      min-height: 100vh;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    /* HERO MU DESEK ANİMASYONLU KISIM */
    
    .buttons {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 40px;
      pointer-events: auto;
  }
  .glass-button {
      position: relative;
      padding: 16px 40px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none !important;
      letter-spacing: 0.08em;
      color: #fff;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1.5px solid transparent;
      border-radius: 40px;
      backdrop-filter: blur(30px);
      box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.2),
          inset 0 -1px 0 rgba(255, 255, 255, 0.05);
      overflow: hidden;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: auto;
  }
 
  .glass-button::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 40px;
      padding: 1.5px;
      background: linear-gradient(135deg,
          rgba(255, 255, 255, 0.4) 0%,
          rgba(138, 43, 226, 0.4) 25%,
          rgba(0, 191, 255, 0.4) 50%,
          rgba(255, 105, 180, 0.4) 75%,
          rgba(255, 255, 255, 0.4) 100%);
      background-size: 200% 200%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: borderFlow 3s linear infinite;
      opacity: 0.6;
      transition: opacity 0.5s ease;
  }
  @keyframes borderFlow {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
  }
  .glass-button::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 40px;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
          rgba(255, 255, 255, 0.2) 0%,
          transparent 50%);
      opacity: 0;
      transition: opacity 0.5s ease;
  }
  .glass-button:hover {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
      box-shadow:
          0 12px 48px rgba(138, 43, 226, 0.3),
          0 0 80px rgba(0, 191, 255, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.3),
          inset 0 -1px 0 rgba(255, 255, 255, 0.1);
      transform: translateY(-3px) scale(1.02);
  }
  .glass-button:hover::before {
      opacity: 1;
      animation-duration: 2s;
  }
  .glass-button:hover::after {
      opacity: 1;
  }
  .glass-button:active {
      transform: translateY(-1px) scale(0.98);
      box-shadow:
          0 6px 24px rgba(138, 43, 226, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .glass-button .shimmer {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 255, 255, 0.1) 45%,
          rgba(255, 255, 255, 0.3) 50%,
          rgba(255, 255, 255, 0.1) 55%,
          transparent 100%
      );
      transform: rotate(30deg);
      animation: shimmer 3s infinite;
      pointer-events: none;
  }
  @keyframes shimmer {
      0% { transform: translateX(-100%) rotate(30deg); }
      100% { transform: translateX(100%) rotate(30deg); }
  }
  .glass-button:hover .shimmer {
      animation-duration: 1.5s;
  }
  .glass-button span {
      position: relative;
      z-index: 1;
  }

  canvas {
      display: block;
      width: 100%;
      height: 100vh;
  }
  .content {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      text-align: center;
      color: white;
      pointer-events: none;
  }
  h1 {
      font-size: clamp(4.5rem, 13vw, 11rem);
      font-weight: 900;
      margin-bottom: 0.5rem;
      letter-spacing: -0.06em;
      background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 80px rgba(138, 43, 226, 0.3));
      animation: glowPulse 3s ease-in-out infinite alternate;
  }
  @keyframes glowPulse {
      from {
          filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 80px rgba(138, 43, 226, 0.3));
      }
      to {
          filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 120px rgba(0, 191, 255, 0.4));
      }
  }
  .tagline {
      font-size: clamp(0.9rem, 2vw, 1.2rem);
      font-weight: 300;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(138, 43, 226, 0.3);
  }


    /* Modern Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    
    ::-webkit-scrollbar-track {
      background: var(--darker);
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-light);
    }
    
    /* Floating Particles Background */
    .particles-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }
    
    .particle {
      position: absolute;
      background: rgba(108, 92, 231, 0.4);
      border-radius: 50%;
      filter: blur(1px);
      pointer-events: none;
      animation: float-particle linear infinite;
    }
    
    @keyframes float-particle {
      0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
      }
    }
    
    /* Modern Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 18px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background: rgba(30, 39, 46, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .navbar.scrolled {
      padding: 12px 5%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      transition: transform 0.3s;
    }
    
    .logo:hover {
      transform: scale(1.05);
    }
    
    .logo-img {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--primary);
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 5px 20px rgba(108, 92, 231, 0.5);
      transition: all 0.3s;
    }
    
    .logo:hover .logo-img {
      transform: rotate(15deg);
      box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
    }
    
    .logo-img i {
      font-size: 1.3rem;
      color: white;
    }
    
    .logo-text {
      font-size: 1.4rem;
      font-weight: 700;
      color: white;
      letter-spacing: 0.5px;
      background: linear-gradient(to right, white 0%, var(--primary-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .nav-links {
      display: flex;
      gap: 28px;
    }
    
    .nav-link {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .nav-link:hover {
      color: var(--primary-light);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .nav-link.premium {
      color: var(--warning);
      font-weight: 600;
    }
    
    .nav-link.premium::after {
      background: var(--warning);
    }
    
    .nav-actions {
      display: flex;
      gap: 16px;
    }
    
    .nav-button {
      padding: 10px 22px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .nav-button.login {
      background: transparent;
      color: var(--light);
      border: 1px solid var(--border);
    }
    
    .nav-button.login:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }
    
    .nav-button.invite {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      border: none;
      box-shadow: 0 5px 20px rgba(108, 92, 231, 0.5);
    }
    
    .nav-button.invite:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(108, 92, 231, 0.7);
    }
    
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.6rem;
      cursor: pointer;
      z-index: 1001;
      transition: transform 0.3s;
    }
    
    .menu-toggle:hover {
      transform: rotate(90deg);
    }
    /*PREMUM KSIMI */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


/* ===================== */
/* SLIDER CONTAINER */
/* ===================== */
.wbx-slider-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  perspective: 2000px;
  overflow: hidden;

}

.wbx-slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

/* ===================== */
/* SLIDE */
/* ===================== */
.wbx-slide {
  position: absolute;
  width: 80%;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(90deg) translateZ(-500px);
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background images */
.wbx-slide:nth-child(1) {
  background-image: url('https://w-bot.com.tr/image/6969a860022141acb1b75ac0');
}
.wbx-slide:nth-child(2) {
  background-image: url('https://w-bot.com.tr/image/6969a8a9022141acb1b75adc');
}
.wbx-slide:nth-child(3) {
  background-image: url('https://w-bot.com.tr/image/6969a9a4022141acb1b75b39');
}
.wbx-slide:nth-child(4) {
  background-image: url('https://w-bot.com.tr/image/6969aa1a022141acb1b75b69');
}

/* States */
.wbx-slide.wbx-active {
  transform: translate(-50%, -50%) rotateY(0deg) translateZ(0);
  opacity: 1;
  z-index: 10;
}

.wbx-slide.wbx-prev {
  transform: translate(-50%, -50%) rotateY(-45deg) translateZ(-300px) translateX(-40%);
  opacity: 0.3;
  z-index: 5;
}

.wbx-slide.wbx-next {
  transform: translate(-50%, -50%) rotateY(45deg) translateZ(-300px) translateX(40%);
  opacity: 0.3;
  z-index: 5;
}

/* ===================== */
/* OVERLAY */
/* ===================== */
.wbx-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.3);
  z-index: 1;
}

/* ===================== */
/* CONTENT */
/* ===================== */
.wbx-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  padding: 60px;
  width: 100%;
}

.wbx-slide-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wbxFadeInUp 0.8s ease-out;
}

.wbx-slide-content p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto;
  animation: wbxFadeInUp 1s ease-out 0.2s both;
}

/* ===================== */
/* NAVIGATION */
/* ===================== */
.wbx-navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 100;
  pointer-events: none;
}

.wbx-nav-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wbx-nav-btn svg {
  width: 30px;
  height: 30px;
}

.wbx-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.wbx-nav-btn:active {
  transform: scale(0.95);
}

/* ===================== */
/* INDICATORS */
/* ===================== */
.wbx-indicators {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
}

.wbx-indicator {
  width: 50px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.wbx-indicator::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  background: #fff;
  transition: width 0.3s ease;
}

.wbx-indicator.wbx-active::before {
  width: 100%;
}

/* ===================== */
/* ANIMATION */
/* ===================== */
@keyframes wbxFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 768px) {
  .wbx-slide {
    width: 90%;
    height: 60%;
  }

  .wbx-slide-content h1 {
    font-size: 2.5rem;
  }

  .wbx-slide-content p {
    font-size: 1.1rem;
  }

  .wbx-nav-btn {
    width: 50px;
    height: 50px;
  }

  .wbx-navigation {
    padding: 0 20px;
  }
}


    /* Modern Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(22, 26, 30, 0.98);
      backdrop-filter: blur(15px);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
      opacity: 0;
    }
    
    .mobile-menu.active {
      left: 0;
      opacity: 1;
    }
    
    .mobile-menu .nav-link {
      font-size: 1.4rem;
      padding: 15px 30px;
      display: flex;
      align-items: center;
      gap: 15px;
      transform: translateX(-30px);
      opacity: 0;
      transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .mobile-menu.active .nav-link {
      transform: translateX(0);
      opacity: 1;
    }
    
    .mobile-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    
    .mobile-menu .nav-actions {
      transform: scale(0.8);
      opacity: 0;
      transition: all 0.4s ease 0.5s;
    }
    
    .mobile-menu.active .nav-actions {
      transform: scale(1);
      opacity: 1;
    }
    
    .close-menu {
      position: absolute;
      top: 30px;
      right: 30px;
      font-size: 2rem;
      color: var(--light);
      background: none;
      border: none;
      cursor: pointer;
      transition: transform 0.4s;
    }
    
    .close-menu:hover {
      transform: rotate(90deg);
    }
    
    /* Hero Section - Modern Design */
    .hero-webgl {
      position: relative;
      min-height: 100vh;
      background: #000;
      overflow: hidden;
    }
    
    .hero-webgl canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    
    .hero-content-gl {
      position: relative;
      z-index: 10;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 0 5%;
    }
    
    .hero-badge-gl {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      margin-bottom: 25px;
    }
    
    .hero-content-gl h1 {
      font-size: clamp(4rem, 12vw, 10rem);
      font-weight: 900;
      letter-spacing: -0.06em;
      background: linear-gradient(135deg, #fff, #cfcfff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 50px rgba(138, 43, 226, 0.5));
      animation: glowPulse 3s ease-in-out infinite alternate;
    }
    
    .hero-content-gl .tagline {
      margin-top: 20px;
      font-size: clamp(1rem, 2vw, 1.3rem);
      color: rgba(255, 255, 255, 0.85);
      max-width: 700px;
    }
    
    .buttons {
      display: flex;
      gap: 24px;
      margin-top: 45px;
      flex-wrap: wrap;
      justify-content: center;
    }
    

    
.wbx-features-title {
  max-width: 680px;
  margin: 0 auto 64px auto;
  padding: 32px 40px;
  text-align: center;

  /* Glass effect */
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  /* Subtle glow */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  position: relative;
}

/* Light highlight line */
.wbx-features-title::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25),
    transparent 80%
  );
  opacity: 0.4;
}

/* Title */
.wbx-features-title h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;

  background: linear-gradient(
    90deg,
    #ffffff,
    rgba(255, 255, 255, 0.75)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.wbx-features-title p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 640px) {
  .wbx-features-title {
    padding: 24px;
    margin-bottom: 48px;
  }

  .wbx-features-title h2 {
    font-size: 32px;
  }
}


/* ===================== */
/* CSS Variables */
/* ===================== */
:root {
  --wbx-electric-border-color: #862891;
  --wbx-electric-light-color: oklch(from var(--wbx-electric-border-color) l c h);
  --wbx-gradient-color: oklch(
    from var(--wbx-electric-border-color) 0.3 calc(c / 2) h / 0.4
  );
  --wbx-color-neutral-900: oklch(0.185 0 0);
}

/* ===================== */
/* FEATURES GRID */
/* ===================== */
.wbx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .wbx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wbx-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== */
/* MAIN CARD CONTAINER */
/* ===================== */
.wbx-main-container {
  display: flex;
  justify-content: center;
}

/* ===================== */
/* Card container */
/* ===================== */
.wbx-card-container {
  padding: 2px;
  border-radius: 24px;
  position: relative;
  background: linear-gradient(
      -30deg,
      var(--wbx-gradient-color),
      transparent,
      var(--wbx-gradient-color)
    ),
    linear-gradient(
      to bottom,
      var(--wbx-color-neutral-900),
      var(--wbx-color-neutral-900)
    );
}

/* Inner container */
.wbx-inner-container {
  position: relative;
}

/* ===================== */
/* Border layers */
/* ===================== */
.wbx-border-outer {
  border: 2px solid rgba(221, 132, 72, 0.5);
  border-radius: 24px;
  padding-right: 4px;
  padding-bottom: 4px;
}

.wbx-main-card {
  width: 350px;
  height: 500px;
  border-radius: 24px;
  border: 2px solid var(--wbx-electric-border-color);
  margin-top: -4px;
  margin-left: -4px;
  filter: url(#turbulent-displace);
}

/* ===================== */
/* Glow effects */
/* ===================== */
.wbx-glow-layer-1,
.wbx-glow-layer-2 {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
}

.wbx-glow-layer-1 {
  border: 2px solid rgba(221, 132, 72, 0.6);
  filter: blur(1px);
}

.wbx-glow-layer-2 {
  border: 2px solid var(--wbx-electric-light-color);
  filter: blur(4px);
}

/* ===================== */
/* Overlay effects */
/* ===================== */
.wbx-overlay-1,
.wbx-overlay-2 {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  mix-blend-mode: overlay;
  transform: scale(1.1);
  filter: blur(16px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
  pointer-events: none;
}

.wbx-overlay-1 {
  opacity: 1;
}

.wbx-overlay-2 {
  opacity: 0.5;
}

/* ===================== */
/* Background glow */
/* ===================== */
.wbx-background-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  filter: blur(32px);
  transform: scale(1.1);
  opacity: 0.3;
  z-index: -1;
  background: linear-gradient(
    -30deg,
    var(--wbx-electric-light-color),
    transparent,
    var(--wbx-electric-border-color)
  );
}

/* ===================== */
/* Content */
/* ===================== */
.wbx-content-container {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.wbx-content-top {
  display: flex;
  flex-direction: column;
  padding: 48px;
  padding-bottom: 16px;
  height: 100%;
}

.wbx-content-bottom {
  padding: 48px;
  padding-top: 16px;
}

/* ===================== */
/* Glass tag */
/* ===================== */
.wbx-scrollbar-glass {
  width: fit-content;
  background: radial-gradient(
      47.2% 50% at 50.39% 88.37%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.wbx-scrollbar-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.48) 16.73%,
    rgba(255, 255, 255, 0.08) 30.2%,
    rgba(255, 255, 255, 0.08) 68.2%,
    rgba(255, 255, 255, 0.6) 81.89%
  );
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
}

/* ===================== */
/* Typography */
/* ===================== */
.wbx-title {
  font-size: 36px;
  font-weight: 500;
  margin-top: auto;
}

.wbx-description {
  opacity: 0.5;
  margin-top: 8px;
}

/* ===================== */
/* Divider */
/* ===================== */
.wbx-divider {
  height: 1px;
  background-color: currentColor;
  opacity: 0.1;
  mask-image: linear-gradient(to right, transparent, black, transparent);
}

    /* Modern Features Section */
    .features {
      padding: 120px 5%;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }
    
    .features::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
      opacity: 0.3;
      z-index: -1;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 80px;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.6s 0.4s forwards;
    }
    
    .section-title h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 20px;
      background: linear-gradient(to right, #fff 0%, var(--primary-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }
    
    .section-title p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }
    
    .feature-card {
      background: rgba(30, 39, 46, 0.7);
      border-radius: 20px;
      padding: 40px;
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
      transform: translateY(30px);
      opacity: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
    }
    
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .feature-card:hover::before {
      transform: scaleX(1);
    }
    
    .feature-card:nth-child(1) { animation: fadeInUp 0.6s 0.6s forwards; }
    .feature-card:nth-child(2) { animation: fadeInUp 0.6s 0.8s forwards; }
    .feature-card:nth-child(3) { animation: fadeInUp 0.6s 1.0s forwards; }
    .feature-card:nth-child(4) { animation: fadeInUp 0.6s 1.2s forwards; }
    .feature-card:nth-child(5) { animation: fadeInUp 0.6s 1.4s forwards; }
    .feature-card:nth-child(6) { animation: fadeInUp 0.6s 1.6s forwards; }
    
    .feature-card:hover {
      transform: translateY(-15px) !important;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      border-color: var(--primary);
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 18px;
      background: rgba(108, 92, 231, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 25px;
      transition: all 0.3s;
    }
    
    .feature-card:hover .feature-icon {
      transform: rotate(15deg);
      background: rgba(108, 92, 231, 0.3);
    }
    
    .feature-icon i {
      font-size: 2rem;
      color: var(--primary);
    }
    
    .feature-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
      position: relative;
      display: inline-block;
    }
    
    .feature-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
      transition: width 0.4s;
    }
    
    .feature-card:hover .feature-title::after {
      width: 80px;
    }
    
    .feature-description {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 25px;
      line-height: 1.7;
      font-size: 1.05rem;
    }
    
    .feature-image {
      width: 100%;
      border-radius: 12px;
      margin-top: 25px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      transform: perspective(1000px) rotateX(5deg);
    }
    
    .feature-card:hover .feature-image {
      transform: perspective(1000px) rotateX(0) scale(1.05);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    
    /* Modern CTA Section */
    .cta {
      padding: 120px 5%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
      margin: 100px 0;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
    }
    
    .cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: url('https://i.ibb.co/FLDJrSfP/Chat-GPT-Image-13-A-u-2025-05-29-29.png') center/contain no-repeat;
      opacity: 0.1;
      animation: rotate 60s linear infinite;
    }
    
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    .cta-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.6s 0.4s forwards;
    }
    
    .cta h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 25px;
      color: white;
      letter-spacing: -0.5px;
    }
    
    .cta p {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 50px;
      line-height: 1.7;
    }
    
    .cta-button {
      padding: 18px 45px;
      border-radius: 12px;
      background: white;
      color: var(--primary);
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 1.1rem;
      position: relative;
      overflow: hidden;
    }
    
    .cta-button::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;
    }
    
    .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    
    .cta-button:hover::before {
      left: 100%;
    }
    
    
    .footer {
      background: var(--darker);
      padding: 100px 5% 50px;
      position: relative;
    }
    
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    }
    
    .footer-content {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 50px;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.6s 0.2s forwards;
    }
    
    .footer-logo-img {
      width: 45px;
      height: 45px;
      border-radius: 12px;
      background: var(--primary);
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 5px 20px rgba(108, 92, 231, 0.5);
    }
    
    .footer-logo-img i {
      font-size: 1.3rem;
      color: white;
    }
    
    .footer-logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      background: linear-gradient(to right, white 0%, var(--primary-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .footer-about {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 25px;
      font-size: 1.05rem;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.6s 0.3s forwards;
    }
    
    .footer-social {
      display: flex;
      gap: 18px;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.6s 0.4s forwards;
    }
    
    .social-icon {
      width: 45px;
      height: 45px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .social-icon:hover {
      background: var(--primary);
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
    }
    
    .footer-links h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 25px;
      color: white;
      transform: translateY(20px);
      opacity: 0;
    }
    
    .footer-links:nth-child(2) h3 { animation: fadeInUp 0.6s 0.3s forwards; }
    .footer-links:nth-child(3) h3 { animation: fadeInUp 0.6s 0.4s forwards; }
    .footer-links:nth-child(4) h3 { animation: fadeInUp 0.6s 0.5s forwards; }
    
    .footer-links ul {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 15px;
      transform: translateY(20px);
      opacity: 0;
    }
    
    .footer-links:nth-child(2) li:nth-child(1) { animation: fadeInUp 0.6s 0.4s forwards; }
    .footer-links:nth-child(2) li:nth-child(2) { animation: fadeInUp 0.6s 0.5s forwards; }
    .footer-links:nth-child(2) li:nth-child(3) { animation: fadeInUp 0.6s 0.6s forwards; }
    .footer-links:nth-child(2) li:nth-child(4) { animation: fadeInUp 0.6s 0.7s forwards; }
    
    .footer-links:nth-child(3) li:nth-child(1) { animation: fadeInUp 0.6s 0.5s forwards; }
    .footer-links:nth-child(3) li:nth-child(2) { animation: fadeInUp 0.6s 0.6s forwards; }
    .footer-links:nth-child(3) li:nth-child(3) { animation: fadeInUp 0.6s 0.7s forwards; }
    .footer-links:nth-child(3) li:nth-child(4) { animation: fadeInUp 0.6s 0.8s forwards; }
    
    .footer-links:nth-child(4) li:nth-child(1) { animation: fadeInUp 0.6s 0.6s forwards; }
    .footer-links:nth-child(4) li:nth-child(2) { animation: fadeInUp 0.6s 0.7s forwards; }
    .footer-links:nth-child(4) li:nth-child(3) { animation: fadeInUp 0.6s 0.8s forwards; }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.05rem;
    }
    
    .footer-links a:hover {
      color: var(--primary-light);
      transform: translateX(5px);
    }
    
    .footer-bottom {
      text-align: center;
      margin-top: 80px;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.95rem;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.6s 0.6s forwards;
    }
    
    /* Animations */
    @keyframes fadeInUp {
      from {
        transform: translateY(30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    
    .floating {
      animation: float 4s ease-in-out infinite;
    }
    
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    
    /* Responsive */
    @media (max-width: 1200px) {
      .hero-title {
        font-size: 3.2rem;
      }
      
      .section-title h2, .cta h2 {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 992px) {
      .nav-links, .nav-actions {
        display: none;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .hero-title {
        font-size: 2.8rem;
      }
      
      .hero-description {
        font-size: 1.1rem;
      }
      
      .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      .navbar {
        padding: 15px 5%;
      }
      
      .hero-title {
        font-size: 2.4rem;
      }
      
      .hero-description {
        font-size: 1rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .hero-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
      
      .section-title h2, .cta h2 {
        font-size: 2rem;
      }
      
      .section-title p, .cta p {
        font-size: 1.1rem;
      }
      
      .feature-card {
        padding: 30px;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }
    
    @media (max-width: 576px) {
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-badge {
        font-size: 0.85rem;
      }
      
      .feature-card {
        padding: 25px;
      }
      
      .feature-icon {
        width: 60px;
        height: 60px;
      }
    }