/**
 * @format
 * Discord Bot Website By bmr
 * © 2025 bmr
 */

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ffcc00;
  --primary-dark: #e6b800;
  --primary-light: #ffdb4d;
  --accent: #ff9900;
  --accent-dark: #e68a00;
  --accent-light: #ffad33;

  /* Background Colors */
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-card: #222222;
  --bg-element: #2d2d2d;

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #f0f0f0;
  --text-gray: #b0b0b0;
  --text-dark: #707070;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-dark: linear-gradient(135deg, #1e1e36 0%, #16162c 100%);

  /* Typography */
  --font-primary: 'Poppins', sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* When mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: relative;
}

body.menu-open::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  animation: fadeIn 0.3s ease forwards;
}

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

a {
  text-decoration: none;
  color: var(--primary-light);
  transition: color var(--transition-normal);
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  gap: 0.5rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
  color: var(--text-white);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 204, 0, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: var(--text-white);
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 204, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header.scrolled {
  padding: var(--spacing-sm) var(--spacing-lg);
  background: rgba(15, 15, 15, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.3));
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-white);
  cursor: pointer;
  z-index: 1001;
  transition: all var(--transition-normal);
}

.mobile-menu-toggle:hover {
  color: var(--primary);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-list {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

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

.header-buttons {
  display: flex;
  gap: var(--spacing-md);
}

/* Responsive styles for header */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: calc(100vh - 100px);
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 30px 20px 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 204, 0, 0.1);
  }

  .nav-container.active {
    right: 5%;
  }

  .nav {
    width: 100%;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: var(--spacing-md);
    font-size: 1.2rem;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: var(--spacing-xl);
  }

  .header-buttons .btn {
    width: 100%;
    margin-bottom: var(--spacing-md);
  }
}

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

  .logo img {
    height: 32px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-light);
  border: 1px solid rgba(255, 204, 0, 0.1);
  transition: all var(--transition-normal);
}

.hero-feature:hover {
  background: rgba(255, 204, 0, 0.1);
  transform: translateY(-3px);
}

.hero-feature i {
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
}

.hero-image img {
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.5));
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    margin-bottom: var(--spacing-xl);
  }

  .hero-features {
    justify-content: center;
  }
}

/* ===== FEATURES SECTION ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 153, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  font-size: 2rem;
  color: var(--primary);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 204, 0, 0.1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(255, 153, 0, 0.2) 100%);
  color: var(--text-white);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--text-white);
}

.feature-description {
  color: var(--text-gray);
}

/* ===== COMMANDS SECTION ===== */
.commands {
  background: var(--bg-dark);
  position: relative;
}

.command-categories {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  position: relative;
  padding-bottom: var(--spacing-md);
}

.category-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  margin-top: var(--spacing-md);
}

.category-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 4px;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.category {
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--bg-element);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 204, 0, 0.1);
  color: var(--text-gray);
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.category i {
  color: var(--primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.category:hover {
  background: rgba(255, 204, 0, 0.05);
  color: var(--text-light);
  transform: translateY(-2px);
  border-color: rgba(255, 204, 0, 0.3);
}

.category:hover i {
  color: var(--accent);
  transform: scale(1.1);
}

.category.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.2);
  transform: translateY(-3px);
  position: relative;
}

.category.active::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.7;
  }
}

.category.active i {
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 576px) {
  .category {
    width: calc(50% - var(--spacing-md));
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
  }
}

.command-list {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 500px;
  overflow: auto;
}

@media (max-width: 768px) {
  .command-list {
    padding: var(--spacing-lg);
    min-height: 400px;
  }
}

.command-group {
  display: none;
}

.command-group.active {
  display: block;
}

.command-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  border-bottom: 1px solid rgba(255, 204, 0, 0.2);
  padding-bottom: var(--spacing-md);
}

.command-category-title i {
  color: var(--accent);
  margin-right: var(--spacing-sm);
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(255, 153, 0, 0.3);
}

.command-category-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.command-item {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  background: var(--bg-element);
  transition: all var(--transition-normal);
  height: 100%;
  min-height: 100px;
  justify-content: center;
}

.command-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 204, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 204, 0, 0.05);
}

.command-name {
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.command-description {
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .command-category-list {
    grid-template-columns: 1fr;
  }
}

/* ===== PREMIUM SECTION ===== */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 350px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.premium-card {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 153, 0, 0.05) 100%);
  border: 1px solid rgba(255, 204, 0, 0.2);
  position: relative;
  z-index: 1;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.premium-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-white);
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.pricing-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 153, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 2rem;
  color: var(--primary);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 204, 0, 0.1);
}

.premium-card .pricing-icon {
  color: var(--accent);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(255, 153, 0, 0.2) 100%);
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
}

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

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--spacing-sm);
}

.pricing-description {
  color: var(--text-gray);
}

.pricing-features {
  margin-bottom: var(--spacing-xl);
}

.pricing-features li {
  padding: var(--spacing-sm) 0;
  color: var(--text-gray);
  display: flex;
  align-items: center;
}

.pricing-features li i {
  color: var(--primary);
  margin-right: var(--spacing-sm);
  font-size: 0.9rem;
}

.premium-card .pricing-features li i {
  color: var(--accent);
}

.pricing-card .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

/* ===== ICON GRID SECTION ===== */
.icon-grid {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.icon-item {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-element);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.icon-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.8) 0%, rgba(255, 153, 0, 0.8) 50%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}

.icon-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
}

.icon-item:hover::before {
  opacity: 0.1;
  transform: scale(1);
}

.icon-item span {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  color: var(--text-gray);
  transition: all var(--transition-normal);
}

.icon-item:hover span {
  transform: scale(1.2);
  color: var(--primary);
}

.icon-item .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.8) 0%, rgba(255, 153, 0, 0.8) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 1s ease-out forwards;
  z-index: 0;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}

.icon-grid-cta {
  text-align: center;
  margin-top: var(--spacing-xxl);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  box-shadow: radial-gradient(circle, rgba(255, 204, 0, 0.8) 0%, rgba(255, 153, 0, 0.8) 50%, transparent 70%);
}

.btn-lg:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: radial-gradient(circle, rgba(255, 204, 0, 0.849) 0%, rgba(255, 153, 0, 0.877) 50%, transparent 70%);
}

/* ===== SUPPORT SECTION ===== */
.support-options {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.support-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.support-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 153, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 2.5rem;
  color: var(--primary);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 204, 0, 0.1);
}

.support-card:hover .support-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(255, 153, 0, 0.2) 100%);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.support-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--text-white);
}

.support-description {
  color: var(--text-gray);
  margin-bottom: var(--spacing-lg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 204, 0, 0.1);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary) 20%,
    var(--accent) 50%,
    var(--primary) 80%,
    transparent 100%
  );
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.5));
}

.footer-logo h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-links {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.footer-column h3 i {
  color: var(--primary);
}

.footer-column ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
  color: var(--text-gray);
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.footer-column ul li a i {
  font-size: 0.8rem;
  color: var(--primary-light);
  transition: transform var(--transition-normal);
}

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

.footer-column ul li a:hover i {
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dark);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: var(--spacing-xl);
  }

  .support-options {
    flex-direction: column;
    align-items: center;
  }

  .support-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: var(--spacing-xl);
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
  }

  .footer-logo {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }

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

  .icons-container {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  }

  .icon-item {
    width: 50px;
    height: 50px;
  }

  .command-categories {
    flex-wrap: wrap;
    justify-content: center;
  }

  .category {
    margin-bottom: var(--spacing-sm);
  }

  .command-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .command-name {
    margin-bottom: var(--spacing-xs);
  }

  .command-description {
    text-align: left;
  }

  .footer-column {
    width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }

  .footer-column h3 {
    justify-content: center;
  }

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

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-feature {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-image {
    max-width: 200px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: var(--spacing-lg);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .pricing-card {
    padding: var(--spacing-lg);
  }

  .pricing-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .pricing-badge {
    font-size: 0.7rem;
    right: -25px;
    top: 10px;
    padding: 3px 25px;
  }

  .support-card {
    padding: var(--spacing-lg);
  }

  .support-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .support-title {
    font-size: 1.1rem;
  }

  .icons-container {
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: var(--spacing-sm);
  }

  .icon-item {
    width: 40px;
    height: 40px;
  }

  .icon-item span {
    font-size: 1.2rem;
  }

  .btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .footer-column {
    margin-bottom: var(--spacing-md);
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .footer-logo h2 {
    font-size: 1.3rem;
  }

  .footer-logo img {
    height: 40px;
  }
}

/* Server Modal Styles */
.server-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.server-modal-content {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 204, 0, 0.2);
  width: 90%;
  max-width: 500px;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.server-modal-header {
  padding: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 204, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.server-modal-header h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0;
}

.server-modal-close {
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-normal);
}

.server-modal-close:hover {
  color: var(--primary);
}

.server-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-md);
}

.server-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.server-loading {
  text-align: center;
  padding: var(--spacing-xl);
  color: var(--text-gray);
}

.server-item {
  display: flex;
  align-items: center;
  padding: var(--spacing-md);
  background-color: var(--bg-element);
  border: 1px solid rgba(255, 204, 0, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.server-item:hover {
  background-color: rgba(255, 204, 0, 0.1);
  border-color: rgba(255, 204, 0, 0.3);
  transform: translateX(4px);
}

.server-icon {
  font-size: 2rem;
  margin-right: var(--spacing-md);
  min-width: 40px;
  text-align: center;
}

.server-info {
  flex: 1;
}

.server-name {
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
}

.server-action {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-top: 4px;
}

.server-item i:last-child {
  color: var(--primary);
  font-size: 1.2rem;
}

.btn-success {
  background-color: #28a745;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-success img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}


/* ===== FAQ SECTION ===== */
.faq {
  padding: 6rem 0;
  background: var(--bg-darker);
}

.faq-container {
  max-width: 700px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 204, 0, 0.02);
  animation: slideUp 0.6s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: rgba(255, 204, 0, 0.05);
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--text-white);
}

.faq-question:hover {
  background: rgba(255, 204, 0, 0.1);
  padding-left: 2rem;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-question {
  background: rgba(255, 204, 0, 0.15);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 204, 0, 0.02);
}

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

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

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

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, transparent 100%);
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 204, 0, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 15px;
  min-width: 200px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(255, 204, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.step-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.step-arrow {
  font-size: 2rem;
  color: var(--primary);
}

/* ===== LIVE ACTIVITY ===== */
.live-activity {
  padding: 6rem 0;
  background: var(--bg-darker);
}

.activity-feed {
  max-width: 600px;
  margin: 3rem auto 0;
}

.activity-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-left: 2px solid var(--primary);
  background: rgba(255, 204, 0, 0.02);
  margin-bottom: 1rem;
  border-radius: 8px;
  animation: slideInLeft 0.5s ease;
}

.activity-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 8px;
  animation: pulse 2s infinite;
}

.activity-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.activity-user {
  color: var(--text-white);
  font-weight: 600;
}

.activity-action {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.activity-time {
  color: var(--text-gray);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== FEATURED COMMANDS ===== */
.featured-commands {
  padding: 6rem 0;
}

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

.command-showcase {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0.05) 100%);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease;
}

.command-showcase:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(255, 204, 0, 0.15);
}

.cmd-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.command-showcase h3 {
  margin: 1rem 0 0.5rem;
  color: var(--text-white);
}

.command-showcase p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cmd-stats {
  background: rgba(255, 204, 0, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== INTEGRATIONS ===== */
.integrations {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, transparent 100%);
}

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

.integration-card {
  background: rgba(255, 204, 0, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.integration-card:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  background: rgba(255, 204, 0, 0.1);
}

.integration-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.integration-card h3 {
  color: var(--text-white);
  font-size: 1rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 204, 0, 0.05) 100%);
  border-top: 2px solid rgba(255, 204, 0, 0.3);
  border-bottom: 2px solid rgba(255, 204, 0, 0.3);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.newsletter-content p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 204, 0, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.3);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}

.newsletter-note {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* ===== ROADMAP ===== */
.roadmap {
  padding: 6rem 0;
  background: var(--bg-darker);
}

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

.roadmap-item {
  background: rgba(255, 204, 0, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  animation: slideUp 0.6s ease;
}

.roadmap-marker {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.roadmap-item h3 {
  color: var(--text-white);
  margin: 1rem 0 0.5rem;
}

.roadmap-item p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.roadmap-status {
  font-size: 0.9rem;
  font-weight: 600;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, transparent 100%);
}

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

.achievement-badge {
  background: rgba(255, 204, 0, 0.08);
  border: 2px solid rgba(255, 204, 0, 0.25);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease;
}

.achievement-badge:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(255, 204, 0, 0.2);
}

.badge-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.achievement-badge h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.achievement-badge p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ===== SECURITY & TRUST SECTION ===== */
.security-trust {
  padding: 6rem 0;
  background: var(--bg-darker);
}

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

.security-card {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, rgba(255, 204, 0, 0.02) 100%);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease;
}

.security-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(255, 204, 0, 0.15);
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.security-card h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.security-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== WHY HELPER SECTION ===== */
.why-helper {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, transparent 100%);
}

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

.comparison-item {
  background: rgba(255, 204, 0, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease;
}

.comparison-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background: rgba(255, 204, 0, 0.08);
}

.comp-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.comparison-item h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.comparison-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 204, 0, 0.05) 100%);
  border-top: 2px solid rgba(255, 204, 0, 0.25);
  border-bottom: 2px solid rgba(255, 204, 0, 0.25);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1.2rem 2.5rem !important;
  font-size: 1.1rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}


/* ===== STATS SECTION ===== */
.stats-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08) 0%, transparent 100%);
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.stats-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.12) 0%, rgba(255, 204, 0, 0.03) 100%);
  border: 2px solid rgba(255, 204, 0, 0.25);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 204, 0, 0.25);
}

.stat-card:hover::before {
  left: 100%;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background: rgba(255, 204, 0, 0.1);
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-plus {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-left: 0.3rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 204, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #ffdd33);
  border-radius: 10px;
  animation: slideProgress 1.2s ease-out forwards;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes slideProgress {
  from {
    width: 0%;
  }
  to {
    width: var(--progress-value, 100%);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
  }
  50% {
    transform: translateY(-50%) scale(1.4);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.9);
  }
}

@media (max-width: 768px) {
  .stats-title {
    font-size: 2rem;
  }

  .stat-card {
    flex-direction: column;
    padding: 2rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 204, 0, 0.05) 100%);
}

.highlights-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-item {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0.02) 100%);
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.highlight-item:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 204, 0, 0.2);
}

.highlight-icon {
  font-size: 2rem;
  color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 0, 0.1);
  border-radius: 8px;
}

.highlight-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.highlight-item p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .highlights-section .container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .highlight-item {
    padding: 1.5rem;
  }

  .highlight-item h3 {
    font-size: 1.1rem;
  }
}

/* ===== SMOOTH GLOBAL ANIMATIONS ===== */
* {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* ===== ENHANCED ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3), 0 0 20px rgba(255, 204, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.6), 0 0 40px rgba(255, 204, 0, 0.3);
  }
}

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

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

@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}

/* ===== BUTTON ANIMATIONS ===== */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

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

.btn-primary {
  animation: slideInUp 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

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

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.2);
}

/* ===== CARD ANIMATIONS ===== */
.feature-card,
.command-item,
.update-card {
  animation: slideInUp 0.6s ease backwards;
}

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

.feature-card:hover {
  animation: none;
  transform: translateY(-15px);
}

/* ===== TEXT ANIMATIONS ===== */
.section-title {
  animation: slideInDown 0.6s ease;
  background: linear-gradient(135deg, var(--primary) 0%, #ffdd33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.section-title:hover {
  transform: scale(1.02);
}

.section-description {
  animation: slideInUp 0.6s ease 0.1s both;
}

/* ===== INPUT ANIMATIONS ===== */
input, textarea, select {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

input:focus, textarea:focus, select:focus {
  transform: scale(1.02);
}

/* ===== NAVIGATION ANIMATIONS ===== */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* ===== LOGO ANIMATIONS ===== */
.logo {
  animation: slideInLeft 0.6s ease;
  transition: transform 0.3s ease;
}

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

.logo img {
  animation: float 3s ease-in-out infinite;
}

/* ===== ICON ANIMATIONS ===== */
.feature-icon, .highlight-icon, .stat-icon {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon,
.highlight-item:hover .highlight-icon,
.stat-card:hover .stat-icon {
  transform: rotateY(360deg) scale(1.1);
  animation: glow 2s ease infinite;
}

/* ===== SMOOTH SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffdd33;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* ===== HEADER ANIMATIONS ===== */
.header {
  animation: slideInDown 0.6s ease;
  transition: all 0.3s ease;
}

.header:hover {
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.1);
}

/* ===== HERO ANIMATIONS ===== */
.hero-section {
  animation: fadeIn 0.8s ease;
}

.hero-content h1 {
  animation: slideInLeft 0.6s ease;
}

.hero-content p {
  animation: slideInLeft 0.6s ease 0.1s both;
}

.hero-features {
  animation: slideInLeft 0.6s ease 0.2s both;
}

.hero-buttons {
  animation: slideInLeft 0.6s ease 0.3s both;
}

.hero-image {
  animation: slideInRight 0.6s ease 0.2s both;
}

.hero-feature {
  animation: slideInUp 0.6s ease backwards;
}

.hero-feature:nth-child(1) { animation-delay: 0.4s; }
.hero-feature:nth-child(2) { animation-delay: 0.5s; }
.hero-feature:nth-child(3) { animation-delay: 0.6s; }

/* ===== FOOTER ANIMATIONS ===== */
.footer {
  animation: slideInUp 0.6s ease;
}

.footer-column {
  animation: slideInUp 0.6s ease backwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }

/* ===== SECTION ANIMATIONS ===== */
section {
  animation: fadeIn 0.8s ease;
}

/* ===== SMOOTH TRANSITIONS FOR ALL TEXT ===== */
h1, h2, h3, h4, h5, h6 {
  transition: all 0.3s ease;
}

p, span, a {
  transition: color 0.3s ease;
}

/* ===== GRADIENT ANIMATIONS ===== */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.stats-section {
  background: linear-gradient(-45deg, rgba(255, 204, 0, 0.08), rgba(255, 204, 0, 0.03), rgba(255, 204, 0, 0.08), rgba(255, 204, 0, 0.03));
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* ===== ENHANCED HOVER STATES ===== */
a {
  transition: all 0.3s ease;
}

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

/* ===== LOADING ANIMATION ===== */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loader-circle {
  animation: spin 2s linear infinite;
}

/* ===== STAGGER ANIMATIONS FOR LISTS ===== */
.feature-card, .command-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== ENHANCED STAT CARD ANIMATIONS ===== */
.stat-card {
  animation: slideInUp 0.6s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover .stat-number {
  animation: bounce 0.6s ease;
}

/* ===== HIGHLIGHT ITEM ANIMATIONS ===== */
.highlight-item {
  animation: scaleIn 0.6s ease backwards;
}

.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.2s; }
.highlight-item:nth-child(3) { animation-delay: 0.3s; }
.highlight-item:nth-child(4) { animation-delay: 0.4s; }

/* ===== SMOOTH COLOR TRANSITIONS ===== */
.stats-title, .section-title, .feature-title {
  background: linear-gradient(135deg, var(--primary), #ffdd33);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LINK HOVER WITH UNDERLINE ANIMATION ===== */
.footer a, .nav-link {
  position: relative;
}

.footer a::before, .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer a:hover::before, .nav-link:hover::before {
  width: 100%;
}

/* ===== COMMAND CATEGORY SMOOTH TRANSITION ===== */
.category {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

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

.category.active::after {
  width: 100%;
}

/* ===== SMOOTH SCROLL OFFSET ===== */
:target {
  scroll-margin-top: 100px;
}


/* ===== PREMIUM LOGO ANIMATIONS ===== */
@keyframes logoPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.3));
  }
  50% {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.6));
  }
}

@keyframes logoRotate {
  0% {
    transform: rotateZ(0deg) rotateX(0deg);
  }
  100% {
    transform: rotateZ(360deg) rotateX(360deg);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-15px) translateX(5px);
  }
  50% {
    transform: translateY(-20px) translateX(0px);
  }
  75% {
    transform: translateY(-15px) translateX(-5px);
  }
}

@keyframes logoGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3), 0 0 20px rgba(255, 204, 0, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.6), 0 0 40px rgba(255, 204, 0, 0.4), 0 0 60px rgba(255, 204, 0, 0.2);
  }
}

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

.logo {
  animation: logoPulse 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  perspective: 1000px;
}

.logo img {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4));
}

.logo:hover img {
  animation: logoRotate 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.8)) brightness(1.2);
  transform: scale(1.1);
}

.logo h1 {
  animation: logoGlow 3s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== HERO LOGO ANIMATIONS ===== */
.floating {
  animation: logoFloat 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite !important;
  filter: drop-shadow(0 0 25px rgba(255, 204, 0, 0.4)) !important;
  transition: all 0.3s ease !important;
}

.floating:hover {
  animation: none !important;
  transform: scale(1.15) rotateZ(15deg) !important;
  filter: drop-shadow(0 0 50px rgba(255, 204, 0, 0.8)) brightness(1.3) !important;
}

/* ===== FOOTER LOGO ANIMATIONS ===== */
.footer-logo {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-logo img {
  animation: logoBounce 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
}

.footer-logo:hover img {
  animation: logoRotate 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.15) rotateZ(10deg);
  filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.7));
}

.footer-logo h2 {
  animation: logoGlow 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

/* ===== PREMIUM ICON ANIMATIONS ===== */
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.3));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.6));
  }
}

@keyframes iconSpin {
  0% {
    transform: rotateZ(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateZ(360deg) rotateY(360deg);
  }
}

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

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-10px) translateX(3px);
  }
  75% {
    transform: translateY(-8px) translateX(-2px);
  }
}

@keyframes iconGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.8)) brightness(1.2);
  }
}

@keyframes iconShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}

/* ===== FEATURE ICON ANIMATIONS ===== */
.feature-icon {
  animation: iconFloat 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  perspective: 1000px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon {
  animation: iconSpin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.3) rotateZ(360deg);
  filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.7)) brightness(1.3);
}

.feature-card .feature-icon i {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: #ffdd33;
  text-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
}

/* ===== STAT ICON ANIMATIONS ===== */
.stat-icon {
  animation: iconGlow 3s ease-in-out infinite;
  perspective: 1000px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card:hover .stat-icon {
  animation: iconSpin 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.4) rotateY(360deg) rotateZ(15deg);
  filter: drop-shadow(0 0 40px rgba(255, 204, 0, 0.9)) brightness(1.4);
  background: rgba(255, 204, 0, 0.25) !important;
}

.stat-icon i {
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon i {
  color: #ffdd33;
  text-shadow: 0 0 25px rgba(255, 204, 0, 0.9);
}

/* ===== HIGHLIGHT ICON ANIMATIONS ===== */
.highlight-icon {
  animation: iconBounce 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  perspective: 1000px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05));
}

.highlight-item:hover .highlight-icon {
  animation: iconSpin 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.35) rotateZ(360deg) rotateX(20deg);
  background: rgba(255, 204, 0, 0.2);
  filter: drop-shadow(0 0 35px rgba(255, 204, 0, 0.8)) brightness(1.3);
}

.highlight-icon i {
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon i {
  color: #ffdd33;
  text-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
  transform: scale(1.1);
}

/* ===== COMMAND ICON ANIMATIONS ===== */
.command-icon {
  animation: iconGlow 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.command-item:hover .command-icon {
  animation: iconShake 0.5s ease-in-out;
  transform: scale(1.2);
  filter: drop-shadow(0 0 25px rgba(255, 204, 0, 0.7));
}

/* ===== SMOOTH ICON BACKGROUND ANIMATIONS ===== */
.feature-icon, .stat-icon, .highlight-icon, .command-icon {
  position: relative;
}

.feature-icon::before, .stat-icon::before, .highlight-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, transparent 70%);
  border-radius: 12px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

.feature-card:hover .feature-icon::before,
.stat-card:hover .stat-icon::before,
.highlight-item:hover .highlight-icon::before {
  opacity: 1;
  animation: pulse 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

/* ===== CATEGORY ICON ANIMATIONS ===== */
.category i {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category:hover i {
  animation: iconBounce 0.6s ease;
  color: var(--primary);
  filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.6));
}

.category.active i {
  animation: iconGlow 2s ease-in-out infinite;
  color: var(--primary);
}

/* ===== ENHANCED ICON TRANSITIONS ===== */
i {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

i:hover {
  animation: none;
}

/* ===== SMOOTH SCALE ANIMATIONS ===== */
@keyframes smoothScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.stat-number {
  animation: smoothScale 2s ease-in-out infinite;
}

/* ===== ENHANCED HERO FEATURE ICONS ===== */
.hero-feature i {
  animation: iconFloat 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  transition: all 0.3s ease;
}

.hero-feature:hover i {
  animation: iconSpin 0.8s ease;
  transform: scale(1.3);
  filter: drop-shadow(0 0 25px rgba(255, 204, 0, 0.7));
  color: #ffdd33;
}

