:root {
  --primary: #4285f4;
  --primary-dark: #1a73e8;
  --primary-light: #8ab4f8;
  --secondary: #ff6b6b;
  --dark: #121212;
  --darker: #0a0a0a;
  --dark-light: #1e1e1e;
  --text: #f5f5f5;
  --text-dim: #aaaaaa;
  --success: #0f9d58;
  --warning: #f4b400;
  --danger: #f44336;
  --discord: #5865f2;
  --spotify: #1db954;
  --youtube: #ff0000;
  --soundcloud: #ff3300;
  --audius: #9501ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, var(--darker), var(--dark));
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Particle Background */
.particles-js-canvas-el {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* Enhanced Loading Animation */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(66, 133, 244, 0.3);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  margin-bottom: 20px;
  position: relative;
}

.loader::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 8px solid transparent;
  border-top-color: var(--primary-light);
  border-radius: 50%;
  animation: spin 2s linear infinite;
  opacity: 0.7;
}

.loader-text {
  font-size: 1.2rem;
  color: var(--text-dim);
  animation: pulse 2s infinite;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  transition: width 0.3s ease;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* Main content */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.loaded .container {
  opacity: 1;
  transform: translateY(0);
}

/* Header with Sticky Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(66, 133, 244, 0.1);
  animation: fadeInDown 0.8s ease-out;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.5s ease;
}

.logo:hover .logo-img {
  transform: rotate(15deg);
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(66, 133, 244, 0.3);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.05rem;
}

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

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 101;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.6);
}

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

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-discord {
  background: var(--discord);
  color: white;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.6);
}

/* Login button style (copied from .btn-discord) */
.btn-login {
  background: var(--discord);
  color: white;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-login:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.6);
}

/* Hero Section with Competitive Comparison */
.hero {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  padding: 4rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(66, 133, 244, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--text), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  animation: textGradient 8s ease infinite;
  background-size: 200% 200%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-dim);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-weight: 300;
}

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

.hero-btn {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  min-width: 220px;
}

/* Comparison Table */
.comparison-table {
  max-width: 1000px;
  margin: 3rem auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(66, 133, 244, 0.2);
  backdrop-filter: blur(5px);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background: rgba(66, 133, 244, 0.1);
  color: var(--primary-light);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .feature-name {
  text-align: left;
  font-weight: 500;
}

.comparison-table .muzes-cell {
  background: rgba(16, 108, 232, 0.1);
  position: relative;
}

.comparison-table .muzes-cell::after {
  content: "BEST";
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: bold;
}

.comparison-table .check {
  color: var(--success);
  font-size: 1.2rem;
}

.comparison-table .x {
  color: var(--danger);
  font-size: 1.2rem;
}

/* Stats Section with Floating Animation */
.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  perspective: 1000px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  position: relative;
  min-width: 180px;
  border: 1px solid rgba(66, 133, 244, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  animation: float 6s ease-in-out infinite;
}

.stat-item:nth-child(1) .stat-card {
  animation-delay: 0s;
}
.stat-item:nth-child(2) .stat-card {
  animation-delay: 0.5s;
}
.stat-item:nth-child(3) .stat-card {
  animation-delay: 1s;
}
.stat-item:nth-child(4) .stat-card {
  animation-delay: 1.5s;
}
.stat-item:nth-child(5) .stat-card {
  animation-delay: 2s;
}

.stat-item:hover .stat-card {
  transform: rotateY(10deg) rotateX(5deg) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(66, 133, 244, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Features Section with Interactive Cards */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 1.1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.5s ease;
  border: 1px solid rgba(66, 133, 244, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(66, 133, 244, 0.3);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  display: inline-block;
}

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

.feature-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.feature-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
  width: 100%;
}

.feature-desc {
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
  font-size: 1.05rem;
}

/* Platform Badges Section */
.platform-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.platform-badge {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.platform-icon {
  font-size: 2rem;
}

/* Name */
.platform-name {
  font-weight: 500;
}

/* Borders and icon colors per platform */
.platform-badge.spotify {
  border-color: rgba(29, 185, 84, 0.3);
}
.platform-badge.youtube {
  border-color: rgba(255, 0, 0, 0.3);
}
.platform-badge.audius {
  border-color: rgba((149, 1, 255));
}
.platform-badge.soundcloud {
  border-color: rgba(255, 51, 0, 0.3);
}
.platform-badge.applemusic {
  border-color: rgba(255, 45, 85, 0.3);
}
.platform-badge.deezer {
  border-color: rgba(0, 191, 255, 0.3);
}
.platform-badge.tiktok {
  border-color: rgba(0, 242, 234, 0.3);
}
.platform-badge.twitch {
  border-color: rgba(100, 65, 165, 0.3);
}
.platform-badge.bandcamp {
  border-color: rgba(72, 191, 145, 0.3);
}
.platform-badge.mixcloud {
  border-color: rgba(0, 114, 206, 0.3);
}
.platform-badge.reddit {
  border-color: rgba(255, 69, 0, 0.3);
}
.platform-badge.vimeo {
  border-color: rgba(26, 183, 234, 0.3);
}
.platform-badge.yandexmusic {
  border-color: rgba(255, 0, 0, 0.3);
}
.platform-badge.tidal {
  border-color: rgba(0, 0, 0, 0.3);
}
.platform-badge.qobuz {
  border-color: rgba(0, 122, 255, 0.3);
}
.platform-badge.jiosaavn {
  border-color: rgba(0, 201, 160, 0.3);
}
.platform-badge.nico {
  border-color: rgba(200, 200, 255, 0.3);
}
.platform-badge.pornhub {
  border-color: rgba(255, 153, 0, 0.3);
}
.platform-badge.ocremax {
  border-color: rgba(150, 75, 255, 0.3);
}
.platform-badge.flowery {
  border-color: rgba(255, 105, 180, 0.3);
}
.platform-badge.getyarn {
  border-color: rgba(160, 160, 160, 0.3);
}
.platform-badge.clypit {
  border-color: rgba(128, 128, 255, 0.3);
}
.platform-badge.speak {
  border-color: rgba(255, 255, 102, 0.3);
}
.platform-badge.soundgasm {
  border-color: rgba(255, 128, 0, 0.3);
}
.platform-badge.local {
  border-color: rgba(255, 255, 255, 0.15);
}
.platform-badge.htt {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Icon coloring inline or here */
.platform-badge.spotify i {
  color: #1db954;
}
.platform-badge.youtube i {
  color: #ff0000;
}
.platform-badge.audius i {
  color: #9501ff;
}
.platform-badge.soundcloud i {
  color: #ff3300;
}
.platform-badge.applemusic i {
  color: #ff2d55;
}
.platform-badge.deezer i {
  color: #00bfff;
}
.platform-badge.tiktok i {
  color: #00f2ea;
}
.platform-badge.twitch i {
  color: #6441a5;
}
.platform-badge.bandcamp i {
  color: #48bf91;
}
.platform-badge.mixcloud i {
  color: #0072ce;
}
.platform-badge.reddit i {
  color: #ff4500;
}
.platform-badge.vimeo i {
  color: #1ab7ea;
}
.platform-badge.yandexmusic i {
  color: #ff0000;
}
.platform-badge.tidal i {
  color: #000000;
}
.platform-badge.qobuz i {
  color: #007aff;
}
.platform-badge.jiosaavn i {
  color: #00c9a0;
}
.platform-badge.nico i {
  color: #c8c8ff;
}
.platform-badge.pornhub i {
  color: #ff9900;
}
.platform-badge.ocremax i {
  color: #964bff;
}
.platform-badge.flowery i {
  color: #ff69b4;
}
.platform-badge.getyarn i {
  color: #a0a0a0;
}
.platform-badge.clypit i {
  color: #8080ff;
}
.platform-badge.speak i {
  color: #ffff66;
}
.platform-badge.soundgasm i {
  color: #ff8000;
}
.platform-badge.local i {
  color: #ffffff;
}
.platform-badge.htt i {
  color: #cccccc;
}

/* About Section with Timeline */
.about-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 3rem;
  margin: 4rem 0;
  border-left: 5px solid var(--primary);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(66, 133, 244, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), transparent);
}

.about-section p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 300;
  font-size: 1.1rem;
}

.mission {
  background: rgba(26, 115, 232, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  border-left: 4px solid var(--success);
}

.mission h3 {
  color: var(--success);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 50%;
  padding-right: 30px;
}

.timeline-item:nth-child(even) {
  padding-left: 30px;
  padding-right: 50%;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(66, 133, 244, 0.2);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid rgba(255, 255, 255, 0.05);
}

.timeline-date {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

/* Commands Section with Search */
.commands-section {
  margin: 5rem 0;
}

.command-search {
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
}

.command-search input {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.command-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.3);
}

.command-search i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}

.command-categories {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.commands-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.command-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(66, 133, 244, 0.1);
}

.command-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(66, 133, 244, 0.3);
}

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

.command-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
}

.command-category {
  background: rgba(66, 133, 244, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.command-desc {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.command-usage {
  background: rgba(10, 10, 10, 0.5);
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--primary-light);
  margin-top: 0.5rem;
  overflow-x: auto;
}

/* Donate Section with Testimonials */
.donate-section {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(26, 115, 232, 0.1),
    rgba(10, 10, 10, 0.8)
  );
  border-radius: 15px;
  border: 1px solid rgba(66, 133, 244, 0.2);
  backdrop-filter: blur(5px);
}

.donate-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.donate-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
  font-size: 1.1rem;
}

.donate-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.donate-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
  font-size: 1.1rem;
}

.paypal-btn {
  background: linear-gradient(to right, #0070ba, #15457c);
  color: white;
}

.stripe-btn {
  background: linear-gradient(to right, #6772e5, #5469d4);
  color: white;
}

.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(66, 133, 244, 0.2);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 4rem;
  color: rgba(66, 133, 244, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Bot Preview with Interactive Demo */
.bot-preview {
  margin: 5rem 0;
  text-align: center;
  position: relative;
}

.bot-preview::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(66, 133, 244, 0.05) 0%,
    transparent 70%
  );
  z-index: -1;
}

.bot-screenshot {
  width: 100%;
  max-width: 400px; /* 👈 ograniczenie szerokości */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  border: 1px solid rgba(66, 133, 244, 0.2);
  cursor: pointer;
}

.bot-screenshot:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

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

.demo-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.demo-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* CTA Section with Floating Elements */
.cta-section {
  text-align: center;
  margin: 5rem 0;
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.1),
    rgba(10, 10, 10, 0.9)
  );
  border-radius: 15px;
  border: 1px solid rgba(66, 133, 244, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(66, 133, 244, 0.05) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: rotateGradient 20s linear infinite;
}

.cta-floating {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

.cta-floating:nth-child(1) {
  top: 20%;
  left: 10%;
  font-size: 3rem;
  animation: float 8s ease-in-out infinite;
}

.cta-floating:nth-child(2) {
  top: 60%;
  left: 80%;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite reverse;
}

.cta-floating:nth-child(3) {
  top: 30%;
  right: 10%;
  font-size: 4rem;
  animation: float 10s ease-in-out infinite;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-section p {
  font-size: 1.3rem;
  color: var(--text-dim);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* FAQ Section with Improved Interaction */
.faq-section {
  margin: 5rem 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(66, 133, 244, 0.3);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  color: var(--text-dim);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-toggle {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* Footer with Newsletter */
footer {
  text-align: center;
  margin-top: 5rem;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  background: rgba(10, 10, 10, 0.9);
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: left;
}

.footer-column h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links i {
  width: 20px;
  text-align: center;
}

.newsletter {
  margin-top: 2rem;
}

.newsletter p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-btn {
  padding: 0 1.5rem;
  border-radius: 5px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--primary-dark);
}

.copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Modal for Screenshot Preview */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.modal-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes textGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes pulseBorder {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(66, 133, 244, 0);
  }
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: var(--dark-light);
  color: var(--text);
  text-align: center;
  border-radius: 6px;
  padding: 0.5rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--dark-light) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .stats {
    gap: 1.5rem;
  }

  .stat-card {
    min-width: 160px;
  }

  .features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    padding-left: 80px;
    padding-right: 30px;
  }

  .timeline-item:nth-child(even) {
    padding-left: 80px;
    padding-right: 30px;
  }

  .timeline-dot {
    left: 20px;
    right: auto;
    transform: none;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
    right: auto;
    transform: none;
  }

  .timeline-item:nth-child(odd) .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after {
    left: -15px;
    right: auto;
    border-right: 15px solid rgba(255, 255, 255, 0.05);
    border-left: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--darker);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 100;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

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

  .hero p {
    font-size: 1.2rem;
  }

  .stats {
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem 1.5rem;
    min-width: 140px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .about-section {
    padding: 2rem;
  }

  .donate-buttons {
    flex-direction: column;
    align-items: center;
  }

  .donate-btn {
    width: 100%;
    max-width: 250px;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

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

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    width: 100%;
  }

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

  .command-categories {
    flex-direction: column;
    align-items: center;
  }

  .category-btn {
    width: 100%;
    max-width: 250px;
  }

  .commands-container {
    grid-template-columns: 1fr;
  }

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

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .newsletter-form {
    flex-direction: column;
  }
}
