/* Base Styles */
:root {
    --primary-color: #7289da;
    --primary-dark: #5b6eae;
    --secondary-color: #43b581;
    --accent-color: #ff73fa;
    --dark-bg: #1e1e2e;
    --darker-bg: #18181f;
    --light-text: #ffffff;
    --gray-text: #b9bbbe;
    --card-bg: #2a2a3a;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --glow: 0 0 15px rgba(114, 137, 218, 0.5);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Chakra Petch", sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
  }
  
  .highlight {
    color: var(--primary-color);
    position: relative;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: rgba(114, 137, 218, 0.1);
    transform: translateY(-2px);
  }
  
  /* Header & Navigation */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(30, 30, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav-links ul {
    display: flex;
  }
  
  .nav-links ul li {
    margin: 0 1rem;
  }
  
  .nav-links ul li a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-links ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  .nav-links ul li a:hover {
    color: var(--primary-color);
  }
  
  .nav-links ul li a:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 80px;
  }
  
  .hero-content {
    flex: 1;
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .hero-image img {
    max-width: 90%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1;
  }
  
  .waveform {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .wave {
    width: 5px;
    height: 100px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    margin: 0 7px;
    border-radius: 10px;
    animation: wave 1.5s infinite ease-in-out;
  }
  
  .wave:nth-child(2) {
    animation-delay: 0.1s;
    height: 120px;
  }
  
  .wave:nth-child(3) {
    animation-delay: 0.2s;
    height: 80px;
  }
  
  .wave:nth-child(4) {
    animation-delay: 0.3s;
    height: 150px;
  }
  
  .wave:nth-child(5) {
    animation-delay: 0.4s;
    height: 110px;
  }
  
  .wave:nth-child(6) {
    animation-delay: 0.5s;
    height: 90px;
  }
  
  .wave:nth-child(7) {
    animation-delay: 0.6s;
    height: 130px;
  }
  
  @keyframes wave {
    0%,
    100% {
      transform: scaleY(0.5);
    }
    50% {
      transform: scaleY(1);
    }
  }
  
  /* Features Section */
  .features {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-card p {
    color: var(--gray-text);
  }
  
  /* Premium Section */
  .premium {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    margin-bottom: 6rem;
  }
  
  .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .pricing-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 300px;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  
  .pricing-card.premium {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
  }
  
  .pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--glow);
  }
  
  .pricing-card.pro {
    border: 2px solid var(--accent-color);
  }
  
  .popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .pricing-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-text);
  }
  
  .pricing-features {
    margin-bottom: 2rem;
  }
  
  .pricing-features li {
    margin-bottom: 0.8rem;
    color: var(--gray-text);
  }
  
  .pricing-card .btn {
    width: 100%;
  }
  
  /* Commands Section */
  .commands {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .commands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .command-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
  }
  
  .command-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }
  
  .command {
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--primary-color);
    background-color: rgba(114, 137, 218, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .command-card p {
    color: var(--gray-text);
  }
  
  .premium-command .command {
    color: var(--accent-color);
    background-color: rgba(255, 115, 250, 0.1);
  }
  
  /* Stats Section */
  .stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 4rem 5%;
    background-color: var(--dark-bg);
    margin-bottom: 6rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 1rem;
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stat-item p {
    color: var(--gray-text);
    font-size: 1.1rem;
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-bg);
    padding: 4rem 5% 2rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .footer-logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .footer-logo h2 {
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
  }
  
  .footer-column ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-column ul li a {
    color: var(--gray-text);
    transition: var(--transition);
  }
  
  .footer-column ul li a:hover {
    color: var(--primary-color);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    color: var(--gray-text);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    color: var(--gray-text);
    transition: var(--transition);
  }
  
  .social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  /* Donation Float */
  .donation-float {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--card-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(114, 137, 218, 0.3);
  }
  
  .donation-float:hover {
    background-color: var(--dark-bg);
    box-shadow: var(--glow);
    transform: translateX(-50%) translateY(-5px);
  }
  
  .donation-float p {
    margin-right: 1rem;
    font-size: 0.9rem;
  }
  
  .close-btn {
    background: none;
    border: none;
    color: var(--gray-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .close-btn:hover {
    color: var(--light-text);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero {
      flex-direction: column;
      text-align: center;
      padding-top: 120px;
    }
  
    .hero-content {
      margin-bottom: 3rem;
    }
  
    .hero-buttons {
      justify-content: center;
    }
  
    .pricing-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .pricing-card {
      width: 100%;
      max-width: 350px;
      margin-bottom: 2rem;
    }
  
    .pricing-card.premium {
      transform: none;
    }
  
    .pricing-card.premium:hover {
      transform: translateY(-10px);
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: var(--darker-bg);
      transition: var(--transition);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }
  
    .nav-links.active {
      left: 0;
    }
  
    .nav-links ul {
      flex-direction: column;
      text-align: center;
    }
  
    .nav-links ul li {
      margin: 1.5rem 0;
    }
  
    .hamburger {
      display: block;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .footer-content {
      flex-direction: column;
    }
  
    .footer-links {
      margin-top: 2rem;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  
    .donation-float {
      width: 90%;
      padding: 0.6rem 1rem;
    }
  
    .donation-float p {
      font-size: 0.8rem;
    }
  }
  
  /* Commands Section */  