:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #EC4899;
    --accent: #06B6D4;
    --dark: #1E293B;
    --darker: #0F172A;
    --light: #F8FAFC;
    --gray: #94A3B8;
    --border-radius: 24px;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-hover: linear-gradient(135deg, var(--secondary), var(--accent));
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* Modern Floating Navbar */
  .navbar {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    margin: 1.5rem 2rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 
      0 8px 32px rgba(139, 92, 246, 0.15),
      0 2px 8px rgba(139, 92, 246, 0.1),
      inset 0 0 32px rgba(139, 92, 246, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    transform-origin: top center;
    animation: navbarFloat 1s ease-out;
  }

  @keyframes navbarFloat {
    0% {
      opacity: 0;
      transform: translateY(-20px);
      box-shadow: 
        0 0 0 rgba(139, 92, 246, 0),
        0 0 0 rgba(139, 92, 246, 0),
        inset 0 0 0 rgba(139, 92, 246, 0);
    }
    50% {
      opacity: 0.8;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
      box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.15),
        0 2px 8px rgba(139, 92, 246, 0.1),
        inset 0 0 32px rgba(139, 92, 246, 0.05);
    }
  }

  .navbar:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
      0 12px 40px rgba(139, 92, 246, 0.25),
      0 4px 12px rgba(139, 92, 246, 0.15),
      inset 0 0 48px rgba(139, 92, 246, 0.1);
  }

  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
  }

  .navbar-brand i {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
  }

  .navbar-brand:hover i {
    transform: rotate(15deg) scale(1.1);
  }

  .nav-link {
    position: relative;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 100px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    text-decoration: none;
    overflow: hidden;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 100px;
    z-index: -1;
  }

  .nav-link:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.3);
    color: white;
  }

  .nav-link:hover::before {
    opacity: 1;
  }

  .nav-link.active {
    background: var(--gradient);
    color: white !important;
    box-shadow: 
      0 4px 12px rgba(139, 92, 246, 0.3),
      inset 0 0 12px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border: none;
  }

  .nav-link i {
    font-size: 1.2rem;
    transition: var(--transition);
  }

  .nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
  }

  .nav-link.active i {
    transform: scale(1.1);
  }

  .navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--light);
    background: rgba(139, 92, 246, 0.1);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .navbar-toggler:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.1);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  @media (max-width: 768px) {
    .navbar {
      margin: 0;
      border-radius: 0;
      padding: 0.75rem 1rem;
      background: var(--darker);
      border-bottom: 1px solid rgba(139, 92, 246, 0.1);
      animation: none;
      box-shadow: none;
    }

    .navbar:hover {
      transform: none;
      box-shadow: none;
      background: var(--darker);
    }

    .navbar-collapse {
      background: var(--darker);
      padding: 1rem;
      border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .nav-link {
      border-radius: 12px;
      margin: 0.5rem 0;
      padding: 0.8rem 1.2rem;
    }

    .nav-link:hover {
      transform: none;
      background: rgba(139, 92, 246, 0.1);
    }

    .nav-link::before {
      display: none;
    }

    .hero {
      padding-top: 80px;
    }

    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    section {
      padding: 3rem 0;
    }
  }

  /* Hero Section Enhancement */
  .hero {
    min-height: 100vh;
    padding-top: 120px;
    background:
      radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15), transparent 70%),
      radial-gradient(circle at 0% 50%, rgba(236, 72, 153, 0.1), transparent 70%),
      radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.1), transparent 70%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%238B5CF6" opacity="0.05"/></svg>') 0 0/50px 50px;
    animation: grain 1s steps(1) infinite;
    pointer-events: none;
    z-index: 0;
  }

  @keyframes grain {
    0%, 100% { transform: translate(0, 0) }
    10% { transform: translate(-5%, -5%) }
    20% { transform: translate(5%, 5%) }
    30% { transform: translate(-5%, 5%) }
    40% { transform: translate(5%, -5%) }
    50% { transform: translate(-5%, 0%) }
    60% { transform: translate(5%, 0%) }
    70% { transform: translate(0%, 5%) }
    80% { transform: translate(0%, -5%) }
    90% { transform: translate(-2%, 2%) }
  }

  .hero h1 {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Feature Cards Enhancement */
  .feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
  }

  .feature-card:hover::before {
    opacity: 0.05;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--light);
    transform: rotate(-5deg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
  }

  .feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
    background: var(--gradient-hover);
  }

  .feature-card h3 {
    position: relative;
    z-index: 1;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .feature-card p {
    position: relative;
    z-index: 1;
    color: var(--gray);
    margin-bottom: 0;
  }

  /* Download Button Enhancement */
  .cta-btn {
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    pointer-events: auto;
  }

  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transition: var(--transition);
  }

  .cta-btn:hover::before {
    background: var(--gradient-hover);
  }

  .cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
  }

  .cta-btn:active {
    transform: translateY(0) scale(0.98);
  }

  .download-btn {
    position: relative;
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
  }

  .btn-outline-light {
    border: 1px solid rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.1);
  }

  .btn-outline-light:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
  }

  /* Stats Section Enhancement */
  .stats-section {
    background:
      radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.1), transparent 70%),
      radial-gradient(circle at 0% 100%, rgba(236, 72, 153, 0.1), transparent 70%),
      radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05), transparent 70%);
    position: relative;
    overflow: hidden;
  }

  .stats-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%238B5CF6" opacity="0.03"/></svg>') 0 0/30px 30px;
    animation: grain 1.5s steps(1) infinite;
    pointer-events: none;
  }

  .stat-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
  }

  .stat-card:hover::before {
    opacity: 0.05;
  }

  .stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
  }

  .stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
  }

  .stat-card:hover .stat-number {
    background: var(--gradient-hover);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .stat-label {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
  }

  /* Footer Enhancement */
  footer {
    background: var(--darker);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
  }

  .footer-column h3 {
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .footer-column ul li a {
    color: var(--gray);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-column ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
  }

  /* System Requirements Badge Enhancement */
  .system-requirements {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
  }

  .system-requirements i {
    color: var(--primary);
    font-size: 1.2rem;
  }

  /* Platform Badge Enhancement */
  .platform-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1rem 2rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
  }

  .platform-badge i {
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Back to Top Button Enhancement */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(139, 92, 246, 0.9);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
  }

  .back-to-top:hover {
    background: rgba(139, 92, 246, 1);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
  }

  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Responsive styles for back to top button */
  @media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
  }

  @media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.1rem;
    }
  }

  /* Loading Animation Enhancement */
  .preloader {
    background: var(--darker);
  }

  .loader::before,
  .loader::after {
    background: var(--gradient);
  }

  .loader-logo i {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Responsive Enhancements */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
      padding: 0 1rem;
    }

    .hero p {
      font-size: 1.1rem;
      padding: 0 1rem;
    }

    .container {
      padding: 0 1rem;
    }

    section {
      padding: 3rem 0;
    }
  }

  /* Modern Floating Navbar */
  .navbar {
    background: rgba(24, 24, 27, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    margin: 1rem 2rem;
    padding: 0.8rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 768px) {
    .navbar {
      border-radius: 0;
      margin: 0;
      padding: 0.8rem 1rem;
      background: rgba(24, 24, 27, 0.95);
    }

    .navbar.scrolled {
      transform: none !important;
      border-radius: 0;
    }

    .navbar-collapse {
      background: rgba(24, 24, 27, 0.95);
      backdrop-filter: blur(10px);
      margin: 0 -1rem;
      padding: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
      border-radius: 8px !important;
    }
  }

  .navbar.scrolled {
    background: rgba(24, 24, 27, 0.95);
    transform: translateY(-8px) scale(0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 2rem;
  }

  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .navbar-brand i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .nav-link {
    color: var(--light) !important;
    font-weight: 500;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    margin: 0 0.4rem;
    border: 1px solid transparent;
    overflow: hidden;
    background-position: 0 0;
    background-size: 200% 100%;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 50px;
  }

  .nav-link:hover {
    color: var(--light) !important;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .nav-link:hover::before {
    opacity: 0.1;
  }

  .nav-link.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white !important;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
    transform: translateY(-1px);
    position: relative;
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--light);
    animation: pulseGlow 2s infinite;
  }

  @keyframes pulseGlow {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0.4;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
  }

  .navbar.scrolled .nav-link {
    padding: 0.6rem 1.2rem !important;
    transform: scale(0.95);
  }

  .navbar.scrolled .nav-link:hover {
    transform: scale(0.95) translateY(-2px);
  }

  .navbar.scrolled .nav-link.active {
    transform: scale(0.95) translateY(-1px);
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.2);
  }

  .nav-link i {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
  }

  .nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
  }

  .nav-link.active i {
    transform: scale(1.1);
  }

  .navbar-brand {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .navbar.scrolled .navbar-brand {
    transform: scale(0.95);
  }

  @keyframes navItemFade {
    from {
    opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-item {
    animation: navItemFade 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index));
  }

  .navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--light);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  /* Hero Animation Enhancement */
  .hero {
    min-height: 100vh;
    padding-top: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(225, 29, 72, 0.1), rgba(162, 28, 175, 0.1));
    display: flex;
    align-items: center;
  }

  .hero::before,
  .hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 29, 72, 0.15), transparent 70%);
    animation: heroGlow 8s infinite;
    z-index: 0;
  }

  .hero::after {
    background: radial-gradient(circle at 50% 50%, rgba(162, 28, 175, 0.15), transparent 70%);
    animation-delay: -4s;
  }

  @keyframes heroGlow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(1); opacity: 0.5; }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: 0.3s;
  }

  .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
  }

  .features-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
  }

  .feature-card {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.9), rgba(9, 9, 11, 0.9));
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.1);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--light);
  }

  .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
  }

  .feature-card p {
    color: var(--gray);
    margin-bottom: 0;
  }

  .stats-section {
    padding: 80px 0;
    background: linear-gradient(45deg, rgba(225, 29, 72, 0.05), rgba(162, 28, 175, 0.05));
  }

  .stat-card {
    text-align: center;
    padding: 2rem;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
  }

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

  .download-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .download-card {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.9), rgba(9, 9, 11, 0.9));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
  }

  .download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }

  .testimonial-section {
    padding: 100px 0;
    background: linear-gradient(45deg, rgba(225, 29, 72, 0.05), rgba(162, 28, 175, 0.05));
  }

  .testimonial-card {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.9), rgba(9, 9, 11, 0.9));
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .testimonial-text {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
  }

  .author-info h4 {
    margin: 0;
    color: var(--light);
    font-size: 1.1rem;
  }

  .author-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
  }

  footer {
    background: var(--darker);
    padding: 80px 0 40px;
    position: relative;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .footer-column h3 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    margin-bottom: 0.8rem;
  }

  .footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-column ul li a:hover {
    color: var(--primary);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  @media (max-width: 768px) {
    .hero {
      padding-top: 80px;
      min-height: auto;
    }

    .hero h1 {
      font-size: 2.5rem;
      padding: 0 1rem;
    }

    .hero p {
      font-size: 1.1rem;
      padding: 0 1rem;
    }

    .container {
      padding: 0 1rem;
    }

    section {
      padding: 3rem 0;
    }
  }

  /* Enhanced FAQ Section */
  .faq-section {
    background: linear-gradient(45deg, rgba(225, 29, 72, 0.05), rgba(162, 28, 175, 0.05));
    padding: 100px 0;
  }

  .accordion-item {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
  }

  .accordion-button {
    background: transparent;
    color: var(--light);
    font-weight: 500;
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, rgba(225, 29, 72, 0.1), rgba(162, 28, 175, 0.1));
    color: var(--light);
  }

  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

  .accordion-body {
    background: rgba(24, 24, 27, 0.4);
    color: var(--gray);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  /* System Requirements Badge */
  .system-requirements {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .system-requirements i {
    color: var(--primary);
  }

  /* VirusTotal Button */
  .virus-total-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-weight: 500;
    cursor: pointer;
  }

  .virus-total-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--light) !important;
    transform: translateY(-2px);
  }

  .virus-total-btn i {
    margin-right: 8px;
    color: var(--primary);
  }

  /* Support Button Style */
  .support-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .support-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .support-btn i {
    color: #FFDD00;
  }

  /* Fix for section padding and backgrounds */
  section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--darker);
  }

  section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 29, 72, 0.05), rgba(162, 28, 175, 0.05));
    z-index: -1;
  }

  .privacy-section {
    background: var(--darker);
    position: relative;
    overflow: hidden;
  }

  .privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 29, 72, 0.05), rgba(162, 28, 175, 0.05));
    z-index: 0;
  }

  .privacy-section .container {
    position: relative;
    z-index: 1;
  }

  .privacy-card {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
  }

  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(139, 92, 246, 0.9);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
  }

  .back-to-top:hover {
    background: rgba(139, 92, 246, 1);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
  }

  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Responsive styles for back to top button */
  @media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
  }

  @media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.1rem;
    }
  }

  .mt-4 li a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mt-4 li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--light);
  }

  .mt-4 li a i {
    color: var(--primary);
    margin-right: 0.5rem;
  }

  .list-unstyled a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
  }

  .list-unstyled a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--light);
    text-decoration: none;
  }

  .list-unstyled a i {
    color: var(--primary);
    font-size: 1.1rem;
  }

  /* Loading Animation */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s ease-out;
  }

  .preloader.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  .loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .loader::before,
  .loader::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    animation: pulse 2s ease-out infinite;
    opacity: 0.7;
  }

  .loader::after {
    animation-delay: -1s;
  }

  .loader-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
  }

  .loader-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--light);
    animation: spin 1s linear infinite;
  }

  .loader-logo {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .loader-logo i {
    font-size: 2rem;
    color: var(--light);
    animation: fade 2s ease infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes fade {
    0%, 100% {
      opacity: 0.5;
      transform: scale(0.95);
    }
    50% {
      opacity: 1;
      transform: scale(1.05);
    }
  }

  /* Language Switcher */
  .lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lang-btn {
    background: none;
    border: none;
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .lang-btn.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
  }

  .lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Navbar Icon Styles */
  .nav-link i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
  }

  .nav-link:hover i {
    transform: scale(1.2);
  }

  .nav-link.active i {
    color: var(--light);
  }

  /* Ensure icons are properly aligned */
  .nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
  }

  /* Make icons more visible */
  .bi {
    display: inline-block !important;
    line-height: 1;
    vertical-align: middle;
  }

  /* Ensure icons are always visible */
  .nav-link i.bi,
  .navbar-brand i.bi {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Fix icon alignment in all states */
  .nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .nav-link span {
    display: inline-flex !important;
    align-items: center !important;
  }

  .nav-link i {
    margin-right: 0.5rem !important;
  }

  /* Preserve icon styles during language switch */
  [data-translate] i.bi {
    pointer-events: none;
    position: relative;
    z-index: 2;
  }

  /* Ensure button icons are preserved */
  .cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .cta-btn i {
    font-size: 1.2rem;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .cta-btn span {
    display: inline-block;
  }

  /* Remove old language switcher */
  .lang-switcher {
    display: none;
  }

  /* New Language Switcher Styles */
  .dropdown-menu {
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 150px;
    margin-top: 0.5rem;
  }

  .dropdown-item {
    color: var(--light);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
  }

  .lang-check {
    opacity: 0;
    transition: all 0.3s ease;
  }

  .dropdown-item[data-active="true"] .lang-check {
    opacity: 1;
    color: var(--primary);
  }

  .current-lang {
    font-weight: 500;
    margin-left: 0.25rem;
  }

  /* Mobile Responsive Styles */
  @media (max-width: 768px) {
    .dropdown-menu {
      position: static !important;
      float: none;
      width: auto;
      margin-top: 0.5rem;
      background: rgba(24, 24, 27, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transform: none !important;
    }

    .nav-item.dropdown {
      margin-top: 0.5rem;
    }
  }

  .review-form-card {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.9), rgba(9, 9, 11, 0.9));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .review-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .form-control {
    background: rgba(24, 24, 27, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--light) !important;
    transition: all 0.3s ease;
  }

  .form-control:focus {
    background: rgba(24, 24, 27, 0.8) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(225, 29, 72, 0.25) !important;
  }

  .form-control::placeholder {
    color: var(--gray);
  }

  .rating-stars {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    color: #71717A;
    cursor: pointer;
    justify-content: center;
    margin: 1rem 0;
  }

  .rating-stars .star {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .rating-stars .star:hover,
  .rating-stars .star.active {
    color: #FFD700;
    transform: scale(1.2);
  }

  .review-card {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.9), rgba(9, 9, 11, 0.9));
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .review-author {
    font-weight: 600;
    color: var(--light);
    font-size: 1.1rem;
  }

  .review-date {
    color: var(--gray);
    font-size: 0.9rem;
  }

  .review-rating {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .review-text {
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.7;
  }

  .form-label {
    color: var(--light);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .reviews-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
  }

  .reviews-loading .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
  }

  .no-reviews {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    font-size: 1.1rem;
  }

  .no-reviews i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    opacity: 0.5;
  }

  .review-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .review-card:nth-child(1) { animation-delay: 0.1s; }
  .review-card:nth-child(2) { animation-delay: 0.2s; }
  .review-card:nth-child(3) { animation-delay: 0.3s; }
  .review-card:nth-child(4) { animation-delay: 0.4s; }
  .review-card:nth-child(5) { animation-delay: 0.5s; }
  .review-card:nth-child(6) { animation-delay: 0.6s; }

  .download-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
  }

  .download-count {
    font-size: 0.8rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .download-count i {
    color: var(--primary);
    font-size: 0.8rem;
  }

  #totalDownloads {
    font-weight: 500;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.8rem;
  }

  .platforms-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
  }

  .platforms-card {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.9), rgba(9, 9, 11, 0.9));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
  }

  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .platform-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .platform-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
  }

  .platform-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .platform-item span {
    color: var(--light);
    font-weight: 500;
  }

  .platforms-stats {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .platforms-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
  }

  .platforms-stats .stat-label {
    color: var(--gray);
    font-size: 1.2rem;
  }

  .platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin: 1rem 0;
  }

  .platform-badge i {
    color: var(--primary);
    font-size: 1.2rem;
  }

  .platform-badge span {
    color: var(--light);
    font-weight: 500;
  }

  /* Pagination Styles */
  .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .page-item {
    list-style: none;
  }

  .page-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .page-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .page-item.active .page-link {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-color: transparent;
  }

  .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
  }

  .support-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .support-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--primary);
  }

  .support-link i {
    color: #FFDD00;
  }

  .footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--light);
    font-weight: 600;
  }

  .footer-column ul li {
    margin-bottom: 0.8rem;
  }

  .footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-column ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
  }

  .license-info {
    color: var(--gray);
    font-size: 0.85rem;
    opacity: 0.8;
  }

  .license-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin: 0 0.3rem;
  }

  .license-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--primary);
  }

  .license-link i {
    font-size: 0.9rem;
  }

  .legal-notice-section {
    padding: 100px 0;
    background: var(--darker);
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .legal-document {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.95), rgba(9, 9, 11, 0.95));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .legal-document::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
  }

  .legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .legal-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .legal-logo i {
    font-size: 2.5rem;
    color: var(--primary);
  }

  .legal-logo h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--light);
  }

  .legal-date {
    color: var(--gray);
    font-size: 0.9rem;
  }

  .legal-date time {
    color: var(--light);
    font-weight: 500;
  }

  .legal-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
  }

  .legal-warning i {
    font-size: 2rem;
    color: #FFC107;
    margin-bottom: 1rem;
  }

  .legal-warning h2 {
    color: #FFC107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .legal-section {
    margin-bottom: 3rem;
  }

  .legal-section h2 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .tool-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
  }

  .tool-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
  }

  .tool-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .tool-item h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
  }

  .tool-item p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
  }

  .license-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .license-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  .license-list li i {
    color: var(--primary);
    font-size: 1.2rem;
  }

  .license-list li span {
    color: var(--light);
  }

  .legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .signature {
    color: var(--gray);
    margin-bottom: 1rem;
  }

  .signature strong {
    color: var(--light);
    font-size: 1.1rem;
  }

  .copyright {
    color: var(--gray);
    font-size: 0.9rem;
  }

  .copyright i {
    margin-right: 0.5rem;
  }

  @media (max-width: 768px) {
    .legal-document {
      padding: 2rem;
    }

    .legal-header {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }

    .tools-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Modern Hero Section */
  .hero {
    min-height: 100vh;
    padding: 180px 0 100px;
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(99, 102, 241, 0.03)" width="50" height="50" x="0" y="0"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .badge-new {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
  }

  .hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
  }

  .hero-buttons .btn {
    min-width: 200px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
  }

  .stat-item i {
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .stat-item span {
    font-weight: 500;
    color: var(--light);
  }

  .hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--darker));
    z-index: 1;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  /* Modern Navbar Enhancement */
  .navbar {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .nav-link {
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
  }

  .nav-link.active {
    background: var(--gradient);
    color: white !important;
  }

  /* Modern Feature Cards */
  .feature-card {
    background: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transform: rotate(-5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
  }

  /* Download Section Enhancement */
  .download-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }

  .download-card {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .download-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .feature-highlight {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
  }

  .feature-highlight:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-3px);
  }

  .feature-highlight i {
    font-size: 1.5rem;
    color: var(--primary);
  }

  /* Responsive Enhancements */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 3rem;
    }

    .hero-stats {
      flex-direction: column;
      gap: 1rem;
    }

    .stat-item {
      width: 100%;
      justify-content: center;
    }

    .download-card {
      padding: 2rem;
    }

    .download-card h2 {
      font-size: 2rem;
    }
  }

  /* Feature Cards Show/Hide */
  .hidden-feature {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
  }

  .hidden-feature.show {
    display: block;
    animation: fadeInUp 0.5s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #showMoreFeatures {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1rem 2rem;
    transition: var(--transition);
  }

  #showMoreFeatures:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
  }

  #showMoreFeatures i {
    transition: var(--transition);
  }

  #showMoreFeatures.active i {
    transform: rotate(180deg);
  }

  .download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .download-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 280px;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
  }

  .download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
  }

  .download-btn:hover::before {
    opacity: 1;
  }

  .download-btn i {
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
  }

  .download-btn span {
    position: relative;
    z-index: 1;
  }

  .download-btn.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }

  .download-btn.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
  }

  @media (max-width: 768px) {
    .download-buttons {
      flex-direction: column;
      align-items: center;
    }

    .download-btn {
      width: 100%;
      max-width: 320px;
    }
  }

  /* Language Selector Styles */
  .lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    transition: all 0.3s ease;
  }

  .lang-btn:hover {
    background-color: rgba(124, 58, 237, 0.1);
  }

  .lang-btn.active {
    background-color: rgba(124, 58, 237, 0.2);
  }

  .lang-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }

  .lang-name {
    font-size: 14px;
    font-weight: 500;
  }

  .dropdown-menu {
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
  }

  .dropdown-item {
    border-radius: 8px;
    margin: 2px 0;
  }

  .lang-check {
    margin-left: auto;
    color: #7c3aed;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lang-btn.active .lang-check {
    opacity: 1;
  }

  /* Add smooth scrolling for better UX */
  html {
    scroll-behavior: smooth;
  }

  /* Improve mobile touch targets */
  button, 
  a.nav-link,
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  @media (max-width: 768px) {
    /* Disable background effects for mobile */
    .hero::before,
    .hero::after,
    .section::before,
    .section::after,
    #particles-js,
    canvas,
    .grain-overlay,
    .background-gradient {
      display: none !important;
    }

    .hero {
      background: var(--darker);
      padding-top: 80px;
      min-height: auto;
    }

    /* Simplify gradients and animations */
    [class*="animate-"],
    [class*="hover-"],
    [class*="parallax-"] {
      animation: none !important;
      transform: none !important;
      transition: none !important;
    }

    /* Use solid colors instead of gradients */
    [style*="gradient"] {
      background: var(--primary) !important;
    }

    /* Optimize shadows */
    [class*="shadow"] {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    }

    /* Disable backdrop-filter */
    .navbar,
    .navbar-collapse,
    .dropdown-menu,
    .modal,
    [class*="glass"] {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      background: var(--darker) !important;
    }

    .hero h1 {
      font-size: 2.5rem;
      padding: 0 1rem;
      background: var(--primary);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      font-size: 1.1rem;
      padding: 0 1rem;
    }

    .container {
      padding: 0 1rem;
    }

    section {
      padding: 3rem 0;
    }
  }

  /* Optimize transitions for mobile */
  @media (max-width: 768px) {
    * {
      transition-duration: 0.2s !important;
    }

    .nav-link:hover,
    .btn:hover,
    [class*="hover-"] {
      transform: none !important;
    }
  }

  @media (max-width: 768px) {
    .navbar {
      margin: 0;
      border-radius: 0;
      padding: 0.75rem 1rem;
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
      background: var(--darker) !important;
      border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .navbar-brand {
      font-size: 1.25rem;
    }

    .navbar-collapse {
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      background: var(--darker);
      padding: 1rem;
      border-bottom: 1px solid rgba(139, 92, 246, 0.1);
      max-height: calc(100vh - 60px);
      overflow-y: auto;
      margin: 0;
    }

    .nav-link {
      border-radius: 8px !important;
      margin: 0.5rem 0;
      padding: 0.8rem 1.2rem !important;
      width: 100%;
      text-align: left;
    }

    .nav-item {
      width: 100%;
    }

    .hero {
      padding-top: 80px !important;
      margin-top: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-content {
      padding-top: 2rem;
      width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .hero h1 {
      font-size: 2.25rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      width: 100%;
    }

    .hero-buttons .btn {
      width: 100%;
      max-width: 300px;
      margin: 0;
    }

    .hero-stats {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .stat-item {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }

    .container {
      padding-left: 1rem;
      padding-right: 1rem;
      width: 100%;
      max-width: 100%;
    }

    section {
      padding: 3rem 0;
    }

    .feature-card {
      margin-bottom: 1.5rem;
    }

    .download-buttons {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .download-btn {
      width: 100%;
      max-width: 300px;
    }

    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-column {
      margin-bottom: 2rem;
    }

    .footer-column:last-child {
      margin-bottom: 0;
    }

    .footer-column ul li a {
      justify-content: center;
    }
  }

