:root {
  --primary-color: #b8860b;
  --secondary-color: #8b4513;
  --accent-color: #daa520;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f0f0f0;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --bg-primary: #1a1a1a;
  --bg-secondary: #2a2a2a;
  --bg-tertiary: #3a3a3a;
  --border-color: #404040;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .hero-content {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(184, 134, 11, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: var(--transition);
}

/* Arabic Typography */
.arabic-text {
  font-family: "Cairo", "Noto Sans Arabic", sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.8;
  font-feature-settings: "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.arabic-title {
  font-family: "Amiri", "Cairo", serif;
  direction: rtl;
  text-align: right;
  font-weight: 700;
  line-height: 1.6;
  font-feature-settings: "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.arabic-subtitle {
  font-family: "Tajawal", "Cairo", sans-serif;
  direction: rtl;
  text-align: right;
  font-weight: 500;
  line-height: 1.7;
  font-feature-settings: "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.arabic-body {
  font-family: "Noto Sans Arabic", "Cairo", sans-serif;
  direction: rtl;
  text-align: right;
  font-weight: 400;
  line-height: 1.8;
  font-feature-settings: "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mixed content (Arabic + English) */
.mixed-content {
  font-family: "Cairo", "Inter", sans-serif;
  line-height: 1.7;
  text-align: start;
}

/* Arabic text sizes */
.arabic-text-sm {
  font-size: 0.875rem;
}

.arabic-text-base {
  font-size: 1rem;
}

.arabic-text-lg {
  font-size: 1.125rem;
}

.arabic-text-xl {
  font-size: 1.25rem;
}

.arabic-text-2xl {
  font-size: 1.5rem;
}

.arabic-text-3xl {
  font-size: 1.875rem;
}

.arabic-text-4xl {
  font-size: 2.25rem;
}

/* Arabic text colors matching theme */
.arabic-text-primary {
  color: var(--text-primary);
}

.arabic-text-secondary {
  color: var(--text-secondary);
}

.arabic-text-accent {
  color: var(--primary-color);
}

.arabic-text-golden {
  color: var(--accent-color);
}

/* Poetry-specific styling */
.arabic-poetry {
  font-family: "Amiri", serif;
  direction: rtl;
  text-align: right;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
  color: var(--text-primary);
  margin: 1rem 0;
  padding: 1rem;
  border-right: 3px solid var(--primary-color);
  background: rgba(184, 134, 11, 0.05);
  border-radius: 0 8px 8px 0;
  font-feature-settings: "liga" 1, "calt" 1, "swsh" 1;
}

.arabic-poetry-verse {
  margin-bottom: 0.5rem;
  padding-right: 1rem;
}

.arabic-poetry-author {
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: left;
  margin-top: 1rem;
  font-style: italic;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--bg-primary);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Theme toggle specific styles */
.theme-toggle.system-theme {
  border-style: dashed;
  opacity: 0.9;
}

.theme-toggle.system-theme::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 4px rgba(184, 134, 11, 0.6);
}

/* Navigation Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-btn {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  padding: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.control-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.control-btn i {
  font-size: 1rem;
  transition: var(--transition);
}

.control-btn:hover i {
  transform: scale(1.1);
}

.control-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23daa520" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* Animated Background Elements */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(184, 134, 11, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(218, 165, 32, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(184, 134, 11, 0.05) 0%,
      transparent 50%
    );
  animation: bgPulse 8s ease-in-out infinite;
  z-index: -1;
  transform: translateZ(-100px);
  filter: blur(1px);
}

/* Floating Musical Notes (emerging from flames) */
.musical-notes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
  transform: translateZ(50px);
}

.note {
  position: absolute;
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.4;
  animation: float 8s infinite linear;
  font-weight: bold;
  text-shadow: 0 4px 8px rgba(184, 134, 11, 0.3);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.2s ease-out;
  will-change: transform;
}

.note:hover {
  transform: scale(1.2) translateZ(20px);
  opacity: 0.6;
  text-shadow: 0 6px 12px rgba(184, 134, 11, 0.5);
}

.note:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  font-size: 1.8rem;
}
.note:nth-child(2) {
  left: 15%;
  animation-delay: 1s;
  font-size: 2.4rem;
}
.note:nth-child(3) {
  left: 25%;
  animation-delay: 2s;
  font-size: 2rem;
}
.note:nth-child(4) {
  left: 35%;
  animation-delay: 3s;
  font-size: 2.2rem;
}
.note:nth-child(5) {
  left: 45%;
  animation-delay: 4s;
  font-size: 1.9rem;
}
.note:nth-child(6) {
  left: 55%;
  animation-delay: 5s;
  font-size: 2.3rem;
}
.note:nth-child(7) {
  left: 65%;
  animation-delay: 1.5s;
  font-size: 2.1rem;
}
.note:nth-child(8) {
  left: 75%;
  animation-delay: 2.5s;
  font-size: 2rem;
}
.note:nth-child(9) {
  left: 85%;
  animation-delay: 3.5s;
  font-size: 2.2rem;
}
.note:nth-child(10) {
  left: 95%;
  animation-delay: 4.5s;
  font-size: 1.8rem;
}
.note:nth-child(11) {
  left: 12%;
  animation-delay: 6s;
  font-size: 2.4rem;
}
.note:nth-child(12) {
  left: 32%;
  animation-delay: 7s;
  font-size: 2rem;
}
.note:nth-child(13) {
  left: 52%;
  animation-delay: 0.5s;
  font-size: 2.1rem;
}
.note:nth-child(14) {
  left: 72%;
  animation-delay: 6.5s;
  font-size: 2.3rem;
}
.note:nth-child(15) {
  left: 92%;
  animation-delay: 7.5s;
  font-size: 1.9rem;
}

/* Notes emerging from flames with warm glow */
.note:nth-child(2n) {
  color: rgba(255, 140, 0, 0.7);
  text-shadow: 0 4px 8px rgba(255, 140, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
}

.note:nth-child(3n) {
  color: rgba(255, 215, 0, 0.6);
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
}

/* Flame Animation */

/* Particle System */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  transform: translateZ(20px);
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.4;
  animation: particleFloat 15s infinite linear;
  box-shadow: 0 0 6px rgba(184, 134, 11, 0.4), 0 0 12px rgba(184, 134, 11, 0.2);
  transition: all 0.15s ease-out;
  will-change: transform;
}

.particle:nth-child(odd) {
  width: 4px;
  height: 4px;
  opacity: 0.3;
  transform: translateZ(-10px);
  filter: blur(0.3px);
}

.particle:nth-child(even) {
  width: 2px;
  height: 2px;
  opacity: 0.5;
  transform: translateZ(10px);
}

.particle:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 15%;
  animation-delay: 3s;
}
.particle:nth-child(3) {
  left: 25%;
  animation-delay: 6s;
}
.particle:nth-child(4) {
  left: 35%;
  animation-delay: 9s;
}
.particle:nth-child(5) {
  left: 45%;
  animation-delay: 12s;
}
.particle:nth-child(6) {
  left: 55%;
  animation-delay: 2s;
}
.particle:nth-child(7) {
  left: 65%;
  animation-delay: 5s;
}
.particle:nth-child(8) {
  left: 75%;
  animation-delay: 8s;
}
.particle:nth-child(9) {
  left: 85%;
  animation-delay: 11s;
}
.particle:nth-child(10) {
  left: 95%;
  animation-delay: 14s;
}

/* Geometric Patterns */
.geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
  transform: translateZ(-50px);
}

.geometric-shape {
  position: absolute;
  border: 2px solid var(--primary-color);
  animation: rotate 20s linear infinite;
  box-shadow: inset 0 0 20px rgba(184, 134, 11, 0.1),
    0 0 30px rgba(184, 134, 11, 0.05);
  filter: blur(0.8px);
  transition: all 0.3s ease-out;
  will-change: transform;
}

.geometric-shape:hover {
  transform: scale(1.1) translateZ(30px);
  opacity: 0.15;
  filter: blur(0.3px);
}

.geometric-shape:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
}

.geometric-shape:nth-child(2) {
  top: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation-delay: 5s;
}

.geometric-shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
  animation-delay: 10s;
}

.geometric-shape:nth-child(4) {
  bottom: 30%;
  right: 20%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation-delay: 15s;
}

.hero-content {
  position: relative;
  z-index: 10;
  transform: translateZ(100px);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.1);
}

.hero-logo {
  max-width: 300px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Music Section */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.music-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.music-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.music-card img {
  width: 100%;

  object-fit: cover;
}

.music-card-content {
  padding: 1.5rem;
}

.music-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.music-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.genre-tag {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Platform Links */
.platform-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.platform-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* About Section */
.about {
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-features {
  display: grid;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.feature-icon {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-content p {
  color: var(--text-secondary);
}

/* How It Works */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.step-number {
  background: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
}

/* Newsletter */
.newsletter {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: var(--bg-tertiary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-controls {
    gap: 0.3rem;
  }

  .control-btn {
    width: 36px;
    height: 36px;
    padding: 0.3rem;
    font-size: 0.9rem;
  }

  .mobile-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .platform-links {
    flex-direction: column;
    align-items: center;
  }

  /* Optimize animations for mobile */
  .musical-notes .note {
    font-size: 1.5rem;
  }

  .note:nth-child(n + 8) {
    display: none; /* Hide some notes on mobile for better performance */
  }

  .particle:nth-child(n + 6) {
    display: none; /* Hide some particles on mobile for better performance */
  }

  .geometric-shape {
    display: none; /* Hide geometric shapes on mobile for better performance */
  }

  /* Arabic text optimizations for mobile */
  .arabic-text,
  .arabic-body {
    font-size: 1rem;
    line-height: 1.7;
  }

  .arabic-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .arabic-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .arabic-poetry {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.75rem;
    margin: 0.75rem 0;
  }

  .arabic-poetry-verse {
    padding-right: 0.75rem;
  }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .note,
  .particle,
  .geometric-shape {
    animation: none;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hero Background Animations */
@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  5% {
    transform: translateY(90vh) rotate(18deg) scale(0.7);
    opacity: 0.2;
  }
  15% {
    opacity: 0.4;
    transform: translateY(70vh) rotate(54deg) scale(1);
  }
  85% {
    opacity: 0.4;
  }
  95% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100px) translateX(200px);
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
