* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Modern CSS Variables */
:root {
  --primary-lime: #c8ff64;
  --primary-lime-dark: #a8e644;
  --primary-lime-light: #d4ff8a;
  --bg-primary: #161a25;
  --bg-secondary: #242a3b;
  --bg-tertiary: #2d3748;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-primary: rgba(200, 255, 100, 0.2);
  --border-secondary: rgba(200, 255, 100, 0.1);
  --shadow-primary: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-secondary: 0 20px 40px rgba(0, 0, 0, 0.4);
  --gradient-primary: linear-gradient(135deg, var(--primary-lime) 0%, var(--primary-lime-dark) 100%);
  --gradient-bg: linear-gradient(135deg, rgba(22, 26, 37, 0.9) 0%, rgba(36, 42, 59, 0.8) 100%);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --blur-glass: blur(20px) saturate(180%);
  --border-radius: 20px;
  --border-radius-lg: 25px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(28, 32, 43, 1) 0%,
      rgba(24, 28, 39, 1) 50%,
      rgba(20, 24, 35, 1) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Navigation - Modern Glassmorphism */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: rgba(45, 55, 72, 0.2);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius);
  padding: 18px 35px;
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-primary),
    0 0 0 1px var(--border-secondary) inset,
    0 0 20px rgba(200, 255, 100, 0.05);
  position: relative;
  overflow: hidden;
}

nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 100, 0.1), transparent);
  transition: left 0.8s ease;
}

nav:hover::before {
  left: 100%;
}

nav.scrolled {
  top: 10px;
  background: rgba(45, 55, 72, 0.6);
  border-color: rgba(200, 255, 100, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(200, 255, 100, 0.2) inset,
    0 0 30px rgba(200, 255, 100, 0.1);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #BFF414 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  font-size: 0.95rem;
  /* oder 14px, 15px, 1rem, etc. */
}

.nav-links a:hover {
  color: #BFF414;
  transform: translateY(-3px);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 36, 50, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(200, 255, 100, 0.15);
  border-radius: 12px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1001;
  list-style: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-transform: none;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: rgba(200, 255, 100, 0.12);
  color: #BFF414;
  transform: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(200, 255, 100, 0.1);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #BFF414;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Animated Background - Dunkler mit weniger Lime */

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }

  33% {
    transform: translateY(-80px) translateX(50px) scale(1.1);
  }

  66% {
    transform: translateY(50px) translateX(-30px) scale(0.9);
  }
}

@keyframes smoothZoom {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes pulse-bg {

  0%,
  100% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Hero Section - Modern */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}


.hero .container {
  position: relative;
}

.logo-container {
  margin-bottom: 50px;
  animation: logoFloat 6s ease-in-out infinite;
  position: relative;
}

@keyframes logoFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 0 20px rgba(200, 255, 100, 0.3));
  }
  50% { 
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 0 30px rgba(200, 255, 100, 0.5));
  }
}

.logo {
  background: linear-gradient(135deg, #BFF414 0%, #a8e644 100%);
  width: 120px;
  height: 120px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(200, 255, 100, 0.5);
  position: relative;
}

.logo::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle,
      rgba(200, 255, 100, 0.3) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: black;
  clip-path: polygon(20% 0%,
      80% 0%,
      100% 20%,
      100% 80%,
      80% 100%,
      20% 100%,
      0% 80%,
      0% 20%);
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-lime) 50%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  animation: titleShimmer 3s ease-in-out infinite, fadeInUp 1s ease-out;
  position: relative;
}

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

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.zoom-in {
  transform: translateY(50px) scale(0.9);
}

.reveal.zoom-in.visible {
  transform: translateY(0) scale(1);
}

/* Parallax Background Elements */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(200, 255, 100, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200, 255, 100, 0.05) 0%, transparent 50%);
  animation: parallaxFloat 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #9ca3af;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle span {
  color: #BFF414;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-secondary), 0 0 30px rgba(200, 255, 100, 0.3);
  transition: var(--transition-bounce);
  animation: fadeInUp 1s ease-out 0.4s both;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 80px rgba(200, 255, 100, 0.4);
}

/* Development Notice */
.dev-notice-section {
  padding: 40px 20px;
}

.dev-notice {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 165, 0, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-left: 4px solid #FFA500;
  border-radius: 16px;
  padding: 30px 35px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dev-notice.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.notice-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 165, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-icon svg {
  width: 28px;
  height: 28px;
  stroke: #FFA500;
}

.notice-content h3 {
  font-size: 1.3rem;
  color: #FFA500;
  margin-bottom: 10px;
  font-weight: 700;
}

.notice-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .dev-notice {
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }

  .notice-icon {
    margin: 0 auto;
  }
}

/* Installation Guide Section */
.installation-section {
  padding: 80px 20px;
}

.installation-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  margin-top: -60px;
  margin-bottom: 60px;
}

.installation-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto 80px;
}

.step-card {
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  flex: 0 1 280px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-arrow {
  text-align: center;
  font-size: 2.5rem;
  color: #BFF414;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 0 0 40px;
}

.step-card.reveal.visible,
.step-arrow.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: #BFF414;
  box-shadow: 0 15px 50px rgba(200, 255, 100, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #BFF414 0%, #a8e644 100%);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(200, 255, 100, 0.4);
}

.step-card h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
}

.step-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.first-steps {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.first-steps.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.first-steps h3 {
  font-size: 1.8rem;
  color: #BFF414;
  margin-bottom: 30px;
  text-align: center;
}

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

.first-steps-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.step-icon {
  font-size: 1.5rem;
  color: #BFF414;
  flex-shrink: 0;
}

.first-steps-list strong {
  color: white;
  display: block;
  margin-bottom: 5px;
}

.first-steps-list div {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.installation-note {
  text-align: center;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.installation-note.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.installation-note p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.installation-note strong {
  color: #BFF414;
}

@media (max-width: 768px) {
  .installation-steps {
    flex-direction: column;
    gap: 30px;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .first-steps {
    padding: 30px 20px;
  }

  .step-card {
    padding: 30px 20px;
    min-height: auto;
    gap: 15px;
  }
}

/* Screenshots Section */
.screenshots {
  padding: 80px 20px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, #BFF414 0%, #BFF414 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 80px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.screenshot-card {
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) rotateX(10deg);
}

.screenshot-card.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.screenshot-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 70px rgba(200, 255, 100, 0.25);
  border-color: rgba(200, 255, 100, 0.4);
}

.screenshot-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg,
      rgba(200, 255, 100, 0.1) 0%,
      rgba(168, 230, 68, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

.screenshot-caption {
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: #BFF414;
}

/* Advanced Features Section */
.advanced-features-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.advanced-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.advanced-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  font-weight: 400;
}

.advanced-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.advanced-feature-card {
  background: rgba(45, 55, 72, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 255, 100, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

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

.advanced-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 255, 100, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(200, 255, 100, 0.3) inset,
              0 0 30px rgba(200, 255, 100, 0.1);
}

.advanced-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(200, 255, 100, 0.2) 0%, rgba(200, 255, 100, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.advanced-feature-icon svg {
  width: 40px;
  height: 40px;
  color: #c8ff64;
  transition: all 0.3s ease;
}

.advanced-feature-card:hover .advanced-feature-icon {
  background: linear-gradient(135deg, rgba(200, 255, 100, 0.3) 0%, rgba(200, 255, 100, 0.2) 100%);
  transform: scale(1.1);
}

.advanced-feature-card:hover .advanced-feature-icon svg {
  color: #ffffff;
  transform: scale(1.1);
}

.advanced-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #c8ff64 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advanced-feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

.feature-benefits {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.feature-benefits li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-benefits li::before {
  content: '✓';
  color: #c8ff64;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Features Section */
.features {
  padding: 80px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(45, 55, 72, 0.4);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius-lg);
  padding: 45px 35px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  box-shadow: var(--shadow-primary), 0 0 0 1px var(--border-secondary) inset;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 100, 0.1), transparent);
  transition: left 0.8s ease;
}

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

.feature-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(200, 255, 100, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #BFF414, #a8e644);
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  border: 2px solid var(--primary-lime);
  box-shadow: var(--shadow-secondary),
    0 0 0 1px var(--primary-lime) inset,
    0 0 40px rgba(200, 255, 100, 0.2);
  background: rgba(45, 55, 72, 0.6);
}

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

.feature-card:hover::after {
  opacity: 0;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(200, 255, 100, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

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

.feature-icon svg {
  width: 35px;
  height: 35px;
  stroke: #BFF414;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.feature-card p {
  color: #9ca3af;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  padding: 80px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: scale(1);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: #BFF414;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #9ca3af;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
}

.contact-form {
  max-width: 600px;
  margin: 60px auto 0;
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #BFF414;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(200, 255, 100, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #BFF414 0%, #a8e644 100%);
  color: black;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 255, 100, 0.3);
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.2;
}

.cta-note {
  margin-top: 30px;
  color: #9ca3af;
  font-size: 1.1rem;
}

/* Changelog Section */
.changelog-section {
  padding: 80px 20px;
}

.changelog-description {
  max-width: 700px;
  margin: 0 auto 60px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.changelog-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.changelog-card {
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}

.changelog-card.current-version {
  transform: scale(1.05);
  z-index: 2;
}

.changelog-card.reveal.visible.current-version {
  transform: scale(1.05) translateY(0);
}

.changelog-card.current-version:hover {
  transform: scale(1.08) translateY(-10px);
}

.changelog-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.changelog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 255, 100, 0.3);
  box-shadow: 0 20px 60px rgba(200, 255, 100, 0.15);
}

.changelog-card.current-version {
  border: 2px solid #BFF414;
  box-shadow: 0 0 30px rgba(191, 244, 20, 0.2);
}

.changelog-card.coming-soon {
  border: 2px solid rgba(255, 165, 0, 0.5);
}

.version-badge {
  display: inline-block;
  background: linear-gradient(135deg, #BFF414 0%, #a8e644 100%);
  color: black;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.soon-badge {
  background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
  color: white;
}

.version-number {
  font-size: 2rem;
  font-weight: 900;
  color: #BFF414;
  margin-bottom: 8px;
}

.version-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 25px;
  font-style: italic;
}

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

.changelog-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.changelog-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.changelog-icon.new {
  filter: drop-shadow(0 0 8px rgba(191, 244, 20, 0.6));
}

.changelog-icon.improved {
  filter: drop-shadow(0 0 8px rgba(100, 149, 237, 0.6));
}

.changelog-icon.fixed {
  filter: drop-shadow(0 0 8px rgba(255, 99, 71, 0.6));
}

.changelog-icon.planned {
  filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6));
}

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

/* Social Links */
.social-section {
  padding: 60px 20px;
  text-align: center;
}

.social-links-large {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  min-width: 200px;
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
  border-color: #BFF414;
  box-shadow: 0 10px 30px rgba(200, 255, 100, 0.2);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Browser Compatibility Section */
.compatibility-section {
  padding: 80px 20px;
  text-align: center;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.compatibility-item {
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
}

.compatibility-item.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.compatibility-item.supported:hover {
  border-color: #BFF414;
  box-shadow: 0 10px 40px rgba(200, 255, 100, 0.2);
  transform: translateY(-10px);
}

.compatibility-item.in-development:hover {
  border-color: #FFA500;
  box-shadow: 0 10px 40px rgba(255, 165, 0, 0.2);
  transform: translateY(-10px);
}

.compatibility-item.not-supported:hover {
  border-color: rgba(255, 100, 100, 0.5);
  box-shadow: 0 10px 40px rgba(255, 100, 100, 0.15);
  transform: translateY(-10px);
}

.browser-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.supported .browser-icon {
  background: rgba(200, 255, 100, 0.2);
}

.in-development .browser-icon {
  background: rgba(255, 165, 0, 0.2);
}

.not-supported .browser-icon {
  background: rgba(255, 100, 100, 0.2);
}

.browser-icon svg {
  width: 40px;
  height: 40px;
}

.supported .browser-icon svg {
  stroke: #BFF414;
}

.in-development .browser-icon svg {
  stroke: #FFA500;
}

.not-supported .browser-icon svg {
  stroke: #ff6464;
}

.compatibility-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.status-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.supported-badge {
  background: rgba(200, 255, 100, 0.2);
  color: #BFF414;
  border: 1px solid rgba(200, 255, 100, 0.3);
}

.development-badge {
  background: rgba(255, 165, 0, 0.2);
  color: #FFA500;
  border: 1px solid rgba(255, 165, 0, 0.3);
}

.not-supported-badge {
  background: rgba(255, 100, 100, 0.2);
  color: #ff6464;
  border: 1px solid rgba(255, 100, 100, 0.3);
}

@media (max-width: 768px) {
  .compatibility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.faq-item.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  border-color: rgba(200, 255, 100, 0.3);
}

.faq-item.active {
  border-color: #BFF414;
  box-shadow: 0 5px 20px rgba(200, 255, 100, 0.15);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(200, 255, 100, 0.05);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: white;
  margin: 0;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.5rem;
  color: #BFF414;
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* Support Section */
.support-section {
  padding: 80px 20px;
  text-align: center;
}

.support-description {
  max-width: 600px;
  margin: 0 auto 60px;
  color: #9ca3af;
  font-size: 1.1rem;
  line-height: 1.8;
}

.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.support-card {
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-card:hover {
  transform: translateY(-10px);
  border: 2px solid #BFF414;
  box-shadow: 0 25px 70px rgba(200, 255, 100, 0.25);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: rgba(200, 255, 100, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.support-icon svg {
  width: 40px;
  height: 40px;
  stroke: #BFF414;
}

.support-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}

.support-card p {
  color: #9ca3af;
  margin-bottom: 25px;
}

.support-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #BFF414 0%, #a8e644 100%);
  color: black;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 255, 100, 0.4);
}

.coffee-icon-large {
  margin: 20px 0 30px;
}

.coffee-icon-large i {
  font-size: 80px;
  color: #BFF414;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(200, 255, 100, 0.3));
}

.crypto-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.crypto-address {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.crypto-address:hover {
  border-color: #BFF414;
  background: rgba(200, 255, 100, 0.05);
  transform: translateX(5px);
}

.crypto-label {
  color: #BFF414;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 55px;
}

.crypto-address code {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  flex: 1;
}

.copy-icon {
  font-size: 1.1rem;
  opacity: 0.5;
}

.crypto-address:hover .copy-icon {
  opacity: 1;
}

.copy-feedback {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(200, 255, 100, 0.95);
  color: black;
  padding: 20px 40px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(200, 255, 100, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.copy-feedback.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Credits Hero Section */
.credits-hero {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.credits-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  background: rgba(200, 255, 100, 0.1);
  border: 2px solid rgba(200, 255, 100, 0.3);
  border-radius: 50px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.badge-icon {
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #BFF414;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.credits-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.credit-card {
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(200, 255, 100, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

a.credit-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.credit-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: #BFF414;
  box-shadow: 0 0 0 10px rgba(200, 255, 100, 0),
    0 0 20px 8px rgba(200, 255, 100, 0.15),
    0 0 30px 12px rgba(200, 255, 100, 0.08);
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(200, 255, 100, 0),
      0 0 20px 8px rgba(200, 255, 100, 0.12),
      0 0 30px 12px rgba(200, 255, 100, 0.06);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(200, 255, 100, 0),
      0 0 25px 10px rgba(200, 255, 100, 0.25),
      0 0 35px 15px rgba(200, 255, 100, 0.12);
  }
}

.credit-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #BFF414 0%, #a8e644 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: black;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(200, 255, 100, 0.4);
  transition: all 0.3s ease;
}

.credit-card:hover .credit-avatar {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 50px rgba(200, 255, 100, 0.6);
}

.credit-name-large {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #BFF414 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.credit-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-style: italic;
}

.credits-community {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer - Enhanced */
/* Coming Soon Section */
.coming-soon-section {
  padding: 120px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}


.coming-soon-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.coming-soon-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 20px 40px rgba(200, 255, 100, 0.3),
    0 0 0 1px rgba(200, 255, 100, 0.2) inset;
  position: relative;
  overflow: hidden;
}

.coming-soon-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.coming-soon-icon svg {
  width: 60px;
  height: 60px;
  color: #2d3748;
  z-index: 2;
  position: relative;
}

.coming-soon-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(200, 255, 100, 0.3);
  line-height: 1.2;
}

.coming-soon-description {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-preview {
  background: rgba(45, 55, 72, 0.6);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 100, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-preview:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 255, 100, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(200, 255, 100, 0.2);
}

.feature-preview:hover::before {
  left: 100%;
}

.feature-preview .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(200, 255, 100, 0.3);
}

.feature-preview .feature-icon svg {
  width: 30px;
  height: 30px;
  color: #2d3748;
}

.feature-preview span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.coming-soon-notification {
  background: rgba(200, 255, 100, 0.1);
  border: 1px solid rgba(200, 255, 100, 0.3);
  border-radius: var(--border-radius);
  padding: 30px;
  backdrop-filter: var(--blur-glass);
  position: relative;
  overflow: hidden;
}

.coming-soon-notification::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 100, 0.1), transparent);
  animation: shimmer 4s infinite;
}

.coming-soon-notification p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0;
  position: relative;
  z-index: 2;
}

.coming-soon-notification strong {
  color: var(--primary-lime);
  font-weight: 700;
}

/* Responsive Design for Coming Soon */
@media (max-width: 768px) {
  .coming-soon-section {
    padding: 80px 0;
  }
  
  .coming-soon-title {
    font-size: 2.5rem;
  }
  
  .coming-soon-description {
    font-size: 1.1rem;
  }
  
  .coming-soon-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-preview {
    padding: 25px 15px;
  }
  
  .coming-soon-notification {
    padding: 25px;
  }
  
  .coming-soon-notification p {
    font-size: 1.1rem;
  }
}

footer {
  padding: 60px 20px 40px;
  border-top: 1px solid rgba(200, 255, 100, 0.1);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      #BFF414 50%,
      transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #BFF414;
  font-weight: 700;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #BFF414;
  transform: translateX(5px);
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 300px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-text {
  color: #9ca3af;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #9ca3af;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  color: #BFF414;
  transform: translateY(-3px) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(35, 42, 58, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 255, 100, 0.2);
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    padding: 20px;
    margin-top: 10px;
    gap: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 15px 10px;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 10px;
    border-radius: 12px;
  }

  .dropdown::before {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

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

  .social-links-large {
    flex-direction: column;
    align-items: center;
  }

  .credits-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* Scroll Reveal with more movement */
.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.slide-left {
  transform: translateX(-100px) translateY(30px);
}

.reveal.slide-left.visible {
  transform: translateX(0) translateY(0);
}

.reveal.slide-right {
  transform: translateX(100px) translateY(30px);
}

.reveal.slide-right.visible {
  transform: translateX(0) translateY(0);
}

.reveal.zoom-in {
  transform: scale(0.8);
}

.reveal.zoom-in.visible {
  transform: scale(1);
}

/* Screenshot Images */
.screenshot-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 15px 15px 0 0;
  transition: transform 0.5s ease;
}

.screenshot-card:hover .screenshot-image {
  transform: scale(1.05);
}

/* Grid für 8 Screenshots */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1201px) {
  .screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Screenshot Images Styling */
.screenshot-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: rgba(30, 35, 50, 0.8);
  border-radius: 15px 15px 0 0;
  padding: 20px;
  transition: transform 0.5s ease;
}

.screenshot-card:hover .screenshot-image {
  transform: scale(1.02);
}

/* Responsive Grid Anpassung */
@media (max-width: 768px) {
  .screenshot-image {
    height: 250px;
  }
}

/* Screenshot Images Styling */
.screenshot-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: rgba(30, 35, 50, 0.8);
  border-radius: 15px 15px 0 0;
  padding: 20px;
  transition: transform 0.5s ease;
}

.screenshot-card:hover .screenshot-image {
  transform: scale(1.02);
}

/* Load More Button Styling */
#loadMoreBtn {
  transition: all 0.3s ease;
}

#loadMoreBtn svg {
  margin-right: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* Modern Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .advanced-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .hero .subtitle {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .advanced-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
  
  .advanced-feature-card {
    padding: 30px 25px;
  }
  
  .cta-button {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
  
  .screenshot-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .advanced-feature-card {
    padding: 25px 20px;
  }
  
  .cta-button {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

.contact-description {
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: center;
}
