/* CalClik - 3D Skeumorphic Dark Mode Landing Page */

/* Prevent orphaned words globally */
p, h1, h2, h3, h4, h5, h6, li, span {
  text-wrap: pretty;
  orphans: 2;
  widows: 2;
}

/* CSS Variables for consistent theming */
:root {
  /* Core Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --bg-card: #1e1e2e;
  --bg-glass: rgba(30, 30, 46, 0.4);
  
  /* Green Gradient Colors */
  --green-primary: #00ff88;
  --green-secondary: #00cc6a;
  --green-dark: #00994d;
  --green-glow: rgba(0, 255, 136, 0.3);
  --green-glow-strong: rgba(0, 255, 136, 0.6);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-accent: var(--green-primary);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.6);
  --shadow-green: 0 0 40px var(--green-glow);
  --shadow-green-strong: 0 0 80px var(--green-glow-strong);
  
  /* Borders */
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --border-green: 1px solid var(--green-primary);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Prevent orphaned words globally */
p, h1, h2, h3, h4, h5, h6, li, span {
  text-wrap: pretty;
  orphans: 2;
  widows: 2;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Remove any black bar remnants */
nav, header {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 204, 106, 0.05) 0%, transparent 50%),
    radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(0, 212, 255, 0.1), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(0, 255, 136, 0.15), transparent),
    radial-gradient(1px 1px at 200px 90px, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(1px 1px at 130px 60px, rgba(0, 212, 255, 0.12), transparent),
    radial-gradient(2px 2px at 180px 10px, rgba(255, 255, 255, 0.1), transparent);
  background-size: 
    100% 100%, 100% 100%,
    220px 220px, 280px 280px, 240px 240px, 320px 320px, 
    260px 260px, 300px 300px, 350px 350px;
  animation: starfieldAnimation 25s linear infinite;
  min-height: 100vh;
  overflow-x: hidden;
}

.dark-mode {
  background: var(--bg-primary);
}

/* Navigation */
/* Enhanced Sticky Navbar */
.navbar-capsule-sticky {
  position: sticky;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 50%;
  max-width: 600px;
  min-width: 400px;
  animation: navFloat 6s ease-in-out infinite;
}

.navbar-capsule-sticky:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Legacy navbar for compatibility */
.navbar-capsule {
  display: none;
}

@keyframes navFloat {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-2px); }
}

/* Enhanced Nav Container */
.nav-container-enhanced {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1.5rem;
  gap: 1rem;
  min-height: 42px;
}

/* Navbar Brand Section */
.navbar-brand-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  z-index: 10;
  height: 100%;
}

.navbar-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f7931e 0%, #00ff88 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
  animation: subtleFloat 3s ease-in-out infinite;
}

.navbar-beta-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  white-space: nowrap;
  animation: betaBadgePulse 2s ease-in-out infinite;
}

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

@keyframes betaBadgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* 3D Skeuomorphic Logo Container */
.logo-container-3d {
  display: none;
}

.logo-capsule-mask {
  width: 120px;
  height: 50px;
  background: linear-gradient(135deg, 
    rgba(0, 255, 136, 0.15) 0%,
    rgba(0, 212, 255, 0.10) 50%,
    rgba(0, 153, 204, 0.15) 100%);
  border: 1.5px solid rgba(0, 255, 136, 0.3);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 2px 4px rgba(0, 255, 136, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 255, 136, 0.3);
}

.logo-capsule-mask::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 25px 25px 0 0;
}

.logo-capsule-mask::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(0deg, 
    rgba(0, 0, 0, 0.2) 0%, 
    transparent 100%);
  border-radius: 0 0 25px 25px;
}

.logo-3d-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 35px;
  perspective: 1000px;
}

.navbar-logo-enhanced {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: 
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
  transform: translateZ(4px) rotateX(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-3d-shadow {
  position: absolute;
  top: 3px;
  left: 2px;
  right: 2px;
  bottom: -2px;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 100%);
  border-radius: 8px;
  transform: translateZ(-2px) rotateX(20deg) scale(0.95);
  filter: blur(3px);
  z-index: -1;
}

.logo-3d-highlight {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 40%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 8px 8px 4px 4px;
  transform: translateZ(6px);
  pointer-events: none;
}

.logo-capsule-mask:hover .navbar-logo-enhanced {
  transform: translateZ(6px) rotateX(-2deg) scale(1.05);
  filter: 
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 12px rgba(0, 255, 136, 0.7));
}

/* Legacy nav container for compatibility */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--text-primary);
}

/* Lucide Icons */
.lucide-icon {
  width: 28px;
  height: 28px;
  color: var(--green-primary);
  filter: drop-shadow(0 0 10px var(--green-glow));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.btn-icon {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 10px var(--green-glow)); }
  100% { filter: drop-shadow(0 0 20px var(--green-glow-strong)); }
}

/* Animated Gradient Text */
.animated-gradient {
  background: linear-gradient(
    45deg,
    var(--green-primary) 0%,
    #ffff00 25%,
    #ffffff 50%,
    var(--green-primary) 75%,
    #ffff00 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite;
  filter: brightness(1.2);
}

.animated-gradient-text {
  background: linear-gradient(
    90deg,
    var(--green-primary) 0%,
    #ffff00 25%,
    #ffffff 50%,
    var(--green-primary) 75%,
    #ffff00 100%
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease-in-out infinite;
  filter: brightness(1.3) contrast(1.1);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

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

/* Glass Surface Shimmer Animation - 45° Anime Style */
.glass-shimmer {
  position: relative;
  overflow: hidden;
}

.glass-shimmer::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -180%;
  width: 250%;
  height: 250%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    transparent 25%,
    rgba(255, 255, 255, 0.1) 35%,
    rgba(255, 255, 255, 0.3) 42%,
    rgba(0, 255, 136, 0.4) 47%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(0, 255, 136, 0.4) 53%,
    rgba(255, 255, 255, 0.3) 58%,
    rgba(255, 255, 255, 0.1) 65%,
    transparent 75%,
    transparent 100%
  );
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: forwards;
  animation-play-state: paused;
  pointer-events: none;
  z-index: 10;
  transform: skew(-20deg);
  filter: blur(0.3px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.glass-shimmer:hover::before,
.glass-shimmer:active::before,
.glass-shimmer.shimmer-active::before {
  animation-name: glassShimmer;
  animation-play-state: running;
}

/* Enhanced glass shimmer for buttons */
.glass-shimmer.btn-shimmer::before {
  background: linear-gradient(
    45deg,
    transparent 0%,
    transparent 25%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(0, 255, 136, 0.8) 50%,
    rgba(255, 255, 255, 1) 60%,
    transparent 75%,
    transparent 100%
  );
  animation-duration: 3s;
  filter: blur(0.3px);
}

/* Staggered shimmer delays for glass surfaces only - Anime Style */
.navbar-capsule.glass-shimmer::before { 
  animation-delay: 0s; 
  animation-duration: 3.5s;
}
.download-now-btn.glass-shimmer::before { 
  animation-delay: 1.8s; 
  animation-duration: 3s;
}

/* Cards and glass elements - Cascading Effect */
.feature-card-3d.glass-shimmer::before { 
  animation-delay: 3.2s; 
  animation-duration: 4s;
}
.testimonial-card-3d.glass-shimmer::before { 
  animation-delay: 4.7s; 
  animation-duration: 3.8s;
}
.analytics-card.glass-shimmer::before { 
  animation-delay: 6.1s; 
  animation-duration: 3.3s;
}

/* Additional glass elements with varied timing */
.glass-shimmer:nth-child(2n)::before { 
  animation-delay: 2.5s; 
}
.glass-shimmer:nth-child(3n)::before { 
  animation-delay: 5.3s; 
}

@keyframes glassShimmer {
  0% { 
    transform: translateX(-250%) translateY(-250%) skew(-20deg) scale(0.8);
    opacity: 0;
  }
  5% { 
    opacity: 0.3;
    transform: translateX(-200%) translateY(-200%) skew(-20deg) scale(0.9);
  }
  15% { 
    opacity: 1;
    transform: translateX(-100%) translateY(-100%) skew(-20deg) scale(1);
  }
  25% { 
    transform: translateX(0%) translateY(0%) skew(-20deg) scale(1.1);
    opacity: 1;
  }
  35% {
    transform: translateX(100%) translateY(100%) skew(-20deg) scale(1);
    opacity: 0.8;
  }
  45% {
    transform: translateX(200%) translateY(200%) skew(-20deg) scale(0.9);
    opacity: 0.3;
  }
  55% {
    transform: translateX(250%) translateY(250%) skew(-20deg) scale(0.8);
    opacity: 0;
  }
  100% { 
    transform: translateX(250%) translateY(250%) skew(-20deg) scale(0.8);
    opacity: 0;
  }
}

.logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo Container with Image */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.3)) 
          drop-shadow(0 0 25px rgba(0, 255, 136, 0.2));
  transition: all 0.3s ease;
}

.navbar-logo:hover {
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)) 
          drop-shadow(0 0 35px rgba(0, 255, 136, 0.4));
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

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

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

.nav-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Download Now Button */
.download-now-btn {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 0 20px var(--green-glow);
}

.download-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 40px var(--green-glow-strong);
}

/* Enhanced CTA Button with Animated Infill */
.enhanced-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.enhanced-cta .btn-text {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.enhanced-cta .btn-icon {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.enhanced-cta .btn-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.9) 0%, 
    rgba(0, 255, 136, 0.9) 50%, 
    rgba(90, 200, 250, 0.9) 100%);
  transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.enhanced-cta:hover .btn-fill {
  left: 0;
}

.enhanced-cta:hover .btn-text {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.enhanced-cta:hover .btn-icon {
  color: #ffffff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  transform: rotate(360deg) scale(1.1);
}

.enhanced-cta:active {
  transform: translateY(-1px) scale(0.98);
}

/* 3D Buttons */
.btn-secondary-3d {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: var(--border-glass);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary-3d:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.3);
}

.btn-primary-3d {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 0 20px var(--green-glow);
}

.btn-primary-3d:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 40px var(--green-glow-strong);
}

/* Enhanced Download Button */
.nav-buttons-enhanced {
  display: flex;
  align-items: center;
}

.btn-download-enhanced {
  background: linear-gradient(135deg, 
    var(--green-primary) 0%,
    var(--green-secondary) 50%,
    #0099cc 100%);
  color: #000;
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 25px;
  padding: 0;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-width: 140px;
  height: 42px;
  box-shadow: 
    0 4px 12px rgba(0, 255, 136, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-download-enhanced video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  border-radius: 25px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Animated Video Background for Download Button */
.btn-download-enhanced::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, 
      rgba(0, 255, 136, 0.1) 0%,
      rgba(0, 212, 255, 0.15) 25%,
      rgba(0, 153, 204, 0.1) 50%,
      rgba(0, 255, 136, 0.15) 75%,
      rgba(0, 212, 255, 0.1) 100%);
  background-size: 400% 400%;
  border-radius: 25px;
  animation: videoBackground 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes videoBackground {
  0% {
    background-position: 0% 50%;
    opacity: 0.3;
  }
  25% {
    background-position: 100% 50%;
    opacity: 0.6;
  }
  50% {
    background-position: 50% 100%;
    opacity: 0.4;
  }
  75% {
    background-position: 0% 100%;
    opacity: 0.7;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.3;
  }
}

@keyframes starfieldAnimation {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  25% {
    background-position: 25% 25%, 30% 20%, 35% 40%, 20% 35%, 45% 15%, 55% 45%, 15% 25%, 40% 55%, 60% 10%;
  }
  50% {
    background-position: 50% 50%, 60% 40%, 70% 80%, 40% 70%, 90% 30%, 110% 90%, 30% 50%, 80% 110%, 120% 20%;
  }
  75% {
    background-position: 75% 75%, 90% 60%, 105% 120%, 60% 105%, 135% 45%, 165% 135%, 45% 75%, 120% 165%, 180% 30%;
  }
  100% {
    background-position: 100% 100%, 120% 80%, 140% 160%, 80% 140%, 180% 60%, 220% 180%, 60% 100%, 160% 220%, 240% 40%;
  }
}

.btn-download-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 25px 25px 0 0;
  pointer-events: none;
}

.btn-download-enhanced::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(0deg, 
    rgba(0, 0, 0, 0.2) 0%,
    transparent 100%);
  border-radius: 0 0 25px 25px;
  pointer-events: none;
}

.btn-content-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.btn-icon-centered {
  width: 16px;
  height: 16px;
  color: #000;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.5));
}

.btn-text-centered {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-download-enhanced:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 20px rgba(0, 255, 136, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 136, 0.5);
}

.btn-download-enhanced:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 
    0 2px 8px rgba(0, 255, 136, 0.4),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-fill-enhanced {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.btn-download-enhanced:hover .btn-fill-enhanced {
  left: 100%;
}

/* Hero Section */
.hero {
  padding: calc(90px + 1.5rem) 0 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 204, 106, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    linear-gradient(to bottom, 
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.3) 30%,
      rgba(255, 255, 255, 0.1) 60%,
      transparent 100%
    );
  mix-blend-mode: multiply;
  opacity: 0.5;
  animation: starfieldAnimation 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* 3D Skewing Effects */
.hero-left-skewed {
  transform: perspective(1000px) rotateY(3deg) rotateX(-1deg);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-left-skewed:hover {
  transform: perspective(1000px) rotateY(2deg) rotateX(-0.5deg) scale(1.02);
}

.hero-right-skewed {
  transform: perspective(1000px) rotateY(-3deg) rotateX(-1deg);
  transform-origin: right center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-right-skewed:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(-0.5deg) scale(1.02);
}

.hero-text {
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  margin: 0;
  padding: 5rem 0 0 0;
}

.hero-text.animate-on-scroll {
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 1;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-url-scanner {
  width: 100%;
  max-width: 100%;
  margin-top: 2rem;
  opacity: 1;
  animation: fadeInUp 1s ease 1.2s forwards;
}

/* Hero Logo Section */
.hero-logo-section {
  width: 100%;
  margin-bottom: 1.5rem;
}

.hero-logo {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1rem;
  margin-left: 0;
  padding-left: 0;
  position: relative;
  justify-content: flex-start;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.hero-logo:hover .hero-logo-text {
  animation-play-state: paused;
  transform: scale(1.02) rotate(0.5deg);
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.hero-logo:hover .hero-logo-icon {
  animation-play-state: paused;
  transform: scale(1.1) rotate(15deg);
  filter: drop-shadow(0 0 25px var(--green-glow-strong));
}

.hero-logo:active .hero-logo-text {
  transform: scale(0.98) rotate(-0.3deg);
}

.hero-logo:active .hero-logo-icon {
  transform: scale(0.95) rotate(-5deg);
}

.hero-logo-icon {
  display: none;
}

.hero-beta-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white !important;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  margin-left: 16px;
  vertical-align: middle;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.7);
  animation: betaBadgeFloat 3s ease-in-out infinite;
  position: relative;
  top: -8px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1000;
  opacity: 1 !important;
  display: inline-block !important;
  visibility: visible !important;
}

@keyframes sparkleGlow {
  0% { 
    filter: drop-shadow(0 0 20px var(--green-glow)) brightness(1);
    transform: rotate(0deg);
  }
  100% { 
    filter: drop-shadow(0 0 35px var(--green-glow-strong)) brightness(1.3);
    transform: rotate(8deg);
  }
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg) translateY(30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) rotate(2deg) translateY(-5px);
  }
  80% {
    transform: scale(0.98) rotate(-1deg) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateY(0px);
  }
}

@keyframes iconIntro {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(180deg) translateX(-20px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2) rotate(-10deg) translateX(5px);
  }
  75% {
    transform: scale(0.9) rotate(5deg) translateX(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0px);
  }
}

@keyframes subtleWobble {
  0%, 100% {
    transform: scale(1) rotate(0deg) translateY(0px);
  }
  25% {
    transform: scale(1.003) rotate(0.3deg) translateY(-0.5px);
  }
  50% {
    transform: scale(0.998) rotate(-0.2deg) translateY(0.3px);
  }
  75% {
    transform: scale(1.001) rotate(0.1deg) translateY(-0.2px);
  }
}

@keyframes betaBadgeFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-1px) rotate(0.5deg) scale(1.02);
  }
  66% {
    transform: translateY(0.5px) rotate(-0.3deg) scale(0.99);
  }
}

.hero-logo-text {
  font-size: 5.4rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #f7931e 0%, #00ff88 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform-origin: left center;
  animation: logoIntro 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
             subtleWobble 4s ease-in-out 2s infinite;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.hero-headline {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle-animated {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

/* Hero URL Scanner */
.hero-url-scanner {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 1rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  width: 80%;
  max-width: 500px;
}

.hero-url-scanner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glass);
  pointer-events: none;
  opacity: 0.5;
}

.scanner-header {
  margin-bottom: 2rem;
  text-align: left;
}

.scanner-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

.scanner-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.scanner-title-icon {
  width: 24px;
  height: 24px;
  color: var(--green-primary);
  filter: drop-shadow(0 0 10px var(--green-glow));
}

/* Enhanced URL Input Container */
.hero-url-input-container {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.url-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  width: 100%;
  backdrop-filter: blur(25px);
}

.url-input-group:focus-within {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px var(--green-glow), var(--shadow-medium);
  transform: translateY(-2px);
}

.input-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
  border-radius: 10px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.input-icon {
  color: #000;
  font-size: 18px;
}

.hero-url-input-enhanced {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.75rem 0;
}

.hero-url-input-enhanced::placeholder {
  color: var(--text-secondary);
  font-weight: 400;
}

.hero-scan-btn-enhanced {
  background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--green-glow);
  flex-shrink: 0;
}

.hero-scan-btn-enhanced:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px var(--green-glow);
}

.hero-scan-btn-enhanced:active {
  transform: translateY(0) scale(0.98);
}

.hero-url-input-pill:focus-within {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px var(--green-glow), var(--shadow-medium);
}

.hero-url-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  min-width: 0;
}

.hero-url-input::placeholder {
  color: var(--text-muted);
}

.hero-scan-btn {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  white-space: nowrap;
}

.hero-scan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.hero-scan-btn:active {
  transform: translateY(0);
}

.hero-scanner-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-extracted-events {
  background: var(--bg-secondary);
  border: var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.hero-cta-secondary {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}

.cta-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-download-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-download-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-download-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.hero-download-link.chrome:hover {
  border-color: #4285f4;
  box-shadow: 0 0 15px rgba(66, 133, 244, 0.3);
}

.hero-download-link.safari:hover {
  border-color: #007aff;
  box-shadow: 0 0 15px rgba(0, 122, 255, 0.3);
}

.hero-download-link.brave:hover {
  border-color: #ff6b35;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.download-icon {
  width: 16px;
  height: 16px;
}

/* Hero Event Cards */
.hero-event-card {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.hero-event-card:hover {
  border-color: var(--green-primary);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
  transform: translateY(-1px);
}

.hero-event-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.hero-event-actions .add-to-calendar-btn {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.no-events {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.no-events-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.btn-primary-3d-large {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 40px var(--green-glow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 40px var(--green-glow); }
  50% { box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 80px var(--green-glow-strong); }
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-primary-3d-large:hover {
  transform: translateY(-3px);
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary-3d-large {
  background: var(--bg-card);
  color: var(--text-primary);
  border: var(--border-glass);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-secondary-3d-large:hover {
  transform: translateY(-3px);
  box-shadow: 
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 40px var(--green-glow);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
}

.section-header.animate-on-scroll {
  animation: fadeInUp 1s ease forwards;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-capsule-sticky {
    top: 1rem;
    padding: 0.3rem;
    min-width: 300px;
    border-radius: 40px;
  }
  
  .nav-container-enhanced {
    padding: 0.3rem 0.5rem;
    gap: 1rem;
  }
  
  .logo-capsule-mask {
    width: 100px;
    height: 42px;
    border-radius: 21px;
  }
  
  .logo-3d-wrapper {
    width: 75px;
    height: 30px;
  }
  
  .btn-download-enhanced {
    min-width: 120px;
    height: 38px;
    font-size: 0.8rem;
  }
  
  .btn-content-centered {
    padding: 0.6rem 1rem;
  }

  /* Legacy navbar */
  .navbar-capsule {
    width: calc(100% - 1rem);
    top: 0.5rem;
  }
  
  .nav-container {
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: var(--border-glass);
  }
  
  .hero {
    padding: calc(120px + 3rem) 0 4rem 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-logo {
    justify-content: center;
  }
  
  .hero-headline {
    font-size: 2.25rem;
    line-height: 1.2;
    word-spacing: 0.1em;
  }
  
  .hero-logo-text {
    font-size: 4rem;
  }
  
  .hero-logo-icon {
    width: 56px;
    height: 56px;
  }
  
  .hero-url-scanner {
    padding: 1.5rem;
    margin-top: 0.5rem;
    width: 90%;
    max-width: none;
  }
  
  .hero-url-input-pill {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }
  
  .hero-url-input {
    text-align: center;
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  .hero-scan-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  
  .hero-download-links {
    gap: 0.75rem;
  }
  
  .hero-download-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-event-actions {
    justify-content: center;
  }
}

/* Hero Mockup - 3D Browser Window */
.hero-mockup {
  opacity: 1;
  transform: translateY(0);
  perspective: 1000px;
}

.hero-mockup.animate-on-scroll {
  animation: fadeInUp 1s ease 0.3s forwards;
}

.browser-window-3d {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: 0.5s ease;
}

.browser-window-3d:hover {
  transform: rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.browser-header-3d {
  background: var(--bg-secondary);
  border-bottom: var(--border-glass);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.browser-buttons-3d {
  display: flex;
  gap: 0.5rem;
}

.browser-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.red-3d {
  background: linear-gradient(135deg, #ff5f57 0%, #ff3b30 100%);
}

.yellow-3d {
  background: linear-gradient(135deg, #ffbd2e 0%, #ff9500 100%);
}

.green-3d {
  background: linear-gradient(135deg, #28ca42 0%, #30d158 100%);
}

.browser-url-3d {
  flex: 1;
  background: var(--bg-tertiary);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  border: var(--border-glass);
}

.browser-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.url-secure {
  font-size: 0.875rem;
}

.browser-content-3d {
  padding: 1.5rem;
  background: var(--bg-tertiary);
}

.dashboard-preview-3d {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  border: var(--border-glass);
}

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

.dashboard-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.scan-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-accent);
  font-size: 0.875rem;
}

.scan-pulse {
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.events-grid {
  display: grid;
  gap: 1rem;
}

.event-card-3d {
  background: var(--bg-secondary);
  border: var(--border-glass);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glass);
  opacity: 0;
  transition: 0.3s ease;
}

.event-card-3d:hover::before {
  opacity: 1;
}

.event-card-3d.highlight-glow {
  border-color: var(--green-primary);
  box-shadow: 0 0 20px var(--green-glow);
}

.event-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.event-content {
  position: relative;
  z-index: 1;
}

.event-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.event-date {
  color: var(--text-accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.event-location {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.event-tags {
  display: flex;
  gap: 0.5rem;
}

.tag {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  border: var(--border-glass);
}

.add-btn-mini {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.add-btn-mini:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px var(--green-glow);
}

/* Features Section - Bento Grid */
.features {
  padding: 6rem 0;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.bento-grid.animate-on-scroll {
  animation: fadeInUp 1s ease 0.3s forwards;
}

.feature-card-3d {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card-3d:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 40px var(--green-glow);
}

.large-card {
  grid-column: span 2;
  grid-row: span 2;
}

.wide-card {
  grid-column: span 2;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glass);
  opacity: 0;
  transition: 0.3s ease;
}

.feature-card-3d:hover .card-glow {
  opacity: 1;
}

.feature-icon-3d {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon-3d svg {
  width: 28px;
  height: 28px;
  color: var(--bg-primary);
}

.feature-card-3d h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.feature-card-3d p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.feature-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.privacy-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.indicator {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  border: var(--border-glass);
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

.testimonials-carousel.animate-on-scroll {
  animation: fadeInUp 1s ease 0.3s forwards;
}

.testimonial-card-3d {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card-3d:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 40px var(--green-glow);
}

.testimonial-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
}

.avatar-initial {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.user-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.user-title {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.user-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: var(--green-primary);
  font-size: 0.875rem;
}

.rating-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-metrics {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: var(--border-glass);
}

.metric {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-accent);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Statistics */
.statistics {
  padding: 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

.stats-grid.animate-on-scroll {
  animation: fadeInUp 1s ease 0.3s forwards;
}

.stat-card-3d {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card-3d:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 20px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 60px var(--green-glow);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--bg-primary);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.stat-trend {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: var(--border-glass);
}

.trend-indicator {
  font-size: 0.875rem;
  color: var(--text-accent);
  font-weight: 500;
}

/* Floating Action Button */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.fab-button {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 0 30px var(--green-glow);
  animation: fabFloat 3s ease-in-out infinite;
}

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

.fab-button:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    0 0 50px var(--green-glow-strong);
}

.fab-icon {
  width: 24px;
  height: 24px;
  color: var(--bg-primary);
}

.fab-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  margin-right: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  border: var(--border-glass);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.fab-button:hover .fab-tooltip {
  opacity: 1;
}

/* Additional responsive updates */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .large-card,
  .wide-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .large-card,
  .wide-card {
    grid-column: span 1;
  }
  
  .testimonials-carousel {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .fab-container {
    bottom: 1rem;
    right: 1rem;
  }
}

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

/* Installation Section */
.installation {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.installation-tabs {
  max-width: 900px;
  margin: 0 auto;
  opacity: 1;
  visibility: visible;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 1;
  visibility: visible;
}

.tab-btn svg {
  width: 20px;
  height: 20px;
}

.tab-btn:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tab-btn.active {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #000;
  border-color: #00ff88;
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4), 0 0 30px rgba(0, 255, 136, 0.3);
  font-weight: 700;
}

.tab-pane {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  visibility: visible;
  animation: fadeInContent 0.4s ease-in;
}

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

.download-card-3d {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.download-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--border-glass);
  opacity: 1;
  visibility: visible;
}

.browser-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.chrome-icon {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.safari-icon {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.brave-icon {
  background: linear-gradient(135deg, #fb542b 0%, #ff6b35 100%);
}

.browser-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.download-info {
  flex: 1;
}

.download-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  opacity: 1;
  visibility: visible;
}

.download-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  opacity: 1;
  visibility: visible;
}

.download-btn-3d {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 0 20px var(--green-glow);
}

.download-btn-3d:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 40px var(--green-glow-strong);
}

.download-btn-3d svg {
  width: 18px;
  height: 18px;
}

.safari-download-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.download-btn-3d.primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
}

.download-btn-3d.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.download-btn-3d.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.beta-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 0.5rem;
}

.installation-steps {
  margin-top: 2rem;
  opacity: 1;
  visibility: visible;
  display: block;
}

.installation-steps h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  opacity: 1;
  visibility: visible;
  text-align: left;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  opacity: 1;
  visibility: visible;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-content {
  flex: 1;
  opacity: 1;
  visibility: visible;
  color: rgba(255, 255, 255, 0.9);
}

.step-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  opacity: 1;
  visibility: visible;
}

.step-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  opacity: 1;
  visibility: visible;
}

.step-content code {
  background: rgba(0, 0, 0, 0.4);
  color: #00ff88;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.onboarding-screenshot {
  margin-top: 1rem;
  position: relative;
  opacity: 1;
  visibility: visible;
}

.step-number-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.4);
  z-index: 10;
}

.screenshot-mockup {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem 0;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.chrome-mockup {
  border-top: 3px solid #4285f4;
}

.safari-mockup {
  border-top: 3px solid #00d4ff;
}

.xcode-mockup {
  border-top: 3px solid #007aff;
}

.safari-benefits {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 12px;
  border: 2px solid rgba(0, 212, 255, 0.2);
}

.safari-benefits h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.safari-benefits ul {
  list-style: none;
  padding: 0;
}

.safari-benefits li {
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.safari-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
}

.brave-features {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: var(--border-glass);
}

.brave-features h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.brave-features ul {
  list-style: none;
  padding: 0;
}

.brave-features li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.brave-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text-accent);
  font-weight: 700;
}

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

.highlight-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.3),
    0 0 40px var(--green-glow);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

/* Responsive Updates */
@media (max-width: 768px) {
  .download-buttons {
    flex-direction: column;
  }
  
  .download-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .tab-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .features-highlight {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Analytics Section */
.analytics-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.analytics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

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

.analytics-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.analytics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glass);
  border-radius: 16px;
  z-index: -1;
}

.analytics-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium), var(--shadow-green);
  border-color: var(--green-primary);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: 'Inter', monospace;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-change {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
}

.stat-change.positive {
  color: var(--green-primary);
  background: rgba(0, 255, 136, 0.1);
}

.stat-change.negative {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.stat-change.neutral {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
}

/* Privacy Notice */
.privacy-notice {
  background: var(--bg-tertiary);
  border: var(--border-glass);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.privacy-icon {
  font-size: 2rem;
  color: var(--green-primary);
  flex-shrink: 0;
}

.privacy-text h4 {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.privacy-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Live Update Animation */
@keyframes liveUpdate {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.stat-number.updating {
  animation: liveUpdate 0.6s ease-in-out;
}

/* Counter Animation */
@keyframes countUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.stat-number {
  animation: countUp 0.8s ease-out;
}

/* Download Button States */
.downloading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.downloading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: downloadSpin 1s linear infinite;
}

@keyframes downloadSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Download feedback animation */
@keyframes downloadPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn-primary-3d-large:active,
.download-btn-3d:active {
  animation: downloadPulse 0.3s ease;
}

/* Download notification styles */
#download-notification {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* URL Scanner Section */
.url-scanner {
  padding: 4rem 0 5rem;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.url-scanner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 204, 106, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.url-scanner-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.url-input-pill {
  display: flex;
  align-items: center;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: 50px;
  padding: 0.75rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.url-input-pill:hover {
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: var(--shadow-medium), var(--shadow-green), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.url-input-pill:focus-within {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-medium), var(--shadow-green-strong), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pill-icon {
  padding: 0 1rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.url-input-pill:focus-within .pill-icon {
  color: var(--green-primary);
}

.input-icon {
  width: 20px;
  height: 20px;
}

.url-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 1rem;
  padding: 0.75rem 0;
  font-family: var(--font-family);
}

.url-input::placeholder {
  color: var(--text-muted);
}

.scan-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 40px;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}

.scan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}

.scan-btn:active {
  transform: translateY(0);
}

.scan-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.scan-icon {
  width: 18px;
  height: 18px;
}

.btn-fill {
  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.5s;
}

.scan-btn:hover .btn-fill {
  left: 100%;
}

/* Scanner Status */
.scanner-status {
  text-align: center;
  padding: 2rem 0;
}

.status-icon {
  margin-bottom: 1rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 255, 136, 0.2);
  border-top: 3px solid var(--green-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.status-text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

/* Extracted Events */
.extracted-events {
  margin-top: 3rem;
}

.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.events-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.events-icon {
  width: 24px;
  height: 24px;
  color: var(--green-primary);
}

.events-count {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.events-list {
  display: grid;
  gap: 1.5rem;
}

/* Event Cards */
.event-card-result {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-card-result:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium), var(--shadow-green), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
}

.event-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.event-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
  flex-shrink: 0;
}

.calendar-icon {
  width: 20px;
  height: 20px;
}

.event-main-info {
  flex: 1;
  min-width: 0;
}

.event-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.event-datetime {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.event-date,
.event-time {
  background: rgba(0, 255, 136, 0.1);
  color: var(--green-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.event-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.event-location i {
  width: 14px;
  height: 14px;
}

.event-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--green-primary);
}

.event-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.calendar-btn {
  flex: 1;
  min-width: 140px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

.google-btn {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.outlook-btn {
  background: linear-gradient(135deg, #0078d4, #106ebe);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.outlook-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 120, 212, 0.4);
}

.apple-btn {
  background: linear-gradient(135deg, #1d1d1f, #515154);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.apple-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Loading spinner for scan button */
.scan-btn .loading-spinner {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

/* Responsive Design for URL Scanner */
@media (max-width: 768px) {
  .url-scanner {
    padding: 3rem 0 4rem;
  }
  
  .url-input-pill {
    flex-direction: column;
    gap: 1rem;
    border-radius: 16px;
    padding: 1rem;
  }
  
  .url-input {
    text-align: center;
  }
  
  .scan-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }
  
  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .event-card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .event-datetime {
    justify-content: center;
  }
  
  .event-actions {
    flex-direction: column;
  }
  
  .calendar-btn {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .url-scanner-container {
    padding: 0 1rem;
  }
  
  .event-card-result {
    padding: 1rem;
  }
  
  .event-title {
    font-size: 1.1rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar-capsule {
    width: 75vw;
    min-width: 500px;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .hero-logo-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .navbar-capsule {
    width: 90vw;
    min-width: 350px;
  }
  
  .nav-container {
    padding: 0.5rem 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .logo {
    gap: 0.5rem;
    font-size: 1.125rem;
  }
  
  .lucide-icon {
    width: 24px;
    height: 24px;
  }
  
  .download-now-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-icon {
    width: 16px;
    height: 16px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-logo {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-logo-icon {
    width: 36px;
    height: 36px;
  }
  
  .hero-logo-text {
    font-size: 3rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .analytics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .privacy-notice {
    flex-direction: column;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  #download-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    transform: translateY(-100px);
  }
  
  #download-notification.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .navbar-capsule {
    width: 95vw;
    min-width: 280px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .download-now-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .hero-logo-text {
    font-size: 2.5rem;
  }
  
  .hero-logo-icon {
    width: 32px;
    height: 32px;
  }
}

/* Additional interactive logo animations */
@keyframes iconSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes logoBreathing {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

@keyframes iconBreathing {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.9;
  }
}

@keyframes rippleExpand {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced Dashboard Styling - 2advanced.net Inspired */
.dashboard-header-enhanced {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
}

.dashboard-title-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.title-icon-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.dashboard-icon {
  color: #000;
  font-size: 20px;
}

.title-content {
  display: flex;
  flex-direction: column;
}

.dashboard-title-main {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.dashboard-subtitle {
  font-size: 0.8rem;
  color: #00d4ff;
  margin: 0;
  font-weight: 500;
}

.scan-indicator-enhanced {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.scan-pulse-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00ff88;
  position: relative;
  animation: pulseRing 2s infinite;
}

.scan-pulse-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #00ff88;
  border-radius: 50%;
  animation: pulseRing 2s infinite;
  opacity: 0.6;
}

.scan-status-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.status-live {
  font-size: 0.7rem;
  font-weight: 700;
  color: #00ff88;
  letter-spacing: 0.1em;
}

.status-count {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
}

.events-grid-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.event-card-enhanced {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.event-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
  transition: all 0.3s ease;
}

.event-card-enhanced:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.event-card-enhanced:hover::before {
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), transparent);
}

.event-card-enhanced.primary-highlight {
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}

.event-card-enhanced.primary-highlight::before {
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.6), transparent);
}

.event-header-enhanced {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.event-icon-enhanced {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  position: relative;
}

.event-icon-enhanced.tech-gradient {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.event-icon-enhanced.art-gradient {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.event-icon-enhanced.music-gradient {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.event-symbol {
  color: #000;
  font-size: 16px;
}

.event-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.event-priority {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.event-priority.high {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.event-priority.medium {
  background: rgba(247, 147, 30, 0.2);
  color: #f7931e;
  border: 1px solid rgba(247, 147, 30, 0.3);
}

.event-confidence {
  font-size: 0.7rem;
  color: #00d4ff;
  font-weight: 600;
}

.event-content-enhanced {
  margin-bottom: 1rem;
}

.event-title-enhanced {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.event-datetime-enhanced,
.event-location-enhanced {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.datetime-icon,
.location-icon {
  color: #00d4ff;
  font-size: 12px;
}

.datetime-text,
.location-text {
  font-size: 0.8rem;
  color: #b8c4d0;
  font-weight: 500;
}

.event-tags-enhanced {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.tag-enhanced {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.tag-enhanced.primary {
  background: rgba(0, 255, 136, 0.15);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.tag-enhanced.secondary {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.tag-enhanced.accent {
  background: rgba(255, 107, 53, 0.15);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.tag-enhanced.art {
  background: rgba(255, 107, 53, 0.15);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.tag-enhanced.culture {
  background: rgba(247, 147, 30, 0.15);
  color: #f7931e;
  border: 1px solid rgba(247, 147, 30, 0.2);
}

.tag-enhanced.music {
  background: rgba(156, 39, 176, 0.15);
  color: #9c27b0;
  border: 1px solid rgba(156, 39, 176, 0.2);
}

.tag-enhanced.live {
  background: rgba(103, 58, 183, 0.15);
  color: #673ab7;
  border: 1px solid rgba(103, 58, 183, 0.2);
}

.event-actions-enhanced {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.action-btn-enhanced {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.action-btn-enhanced.primary {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #000;
}

.action-btn-enhanced.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn-enhanced:hover {
  transform: scale(1.1);
}

.action-btn-enhanced.primary:hover {
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.action-btn-enhanced.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.action-icon {
  font-size: 14px;
}

.dashboard-stats-enhanced {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-enhanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value-enhanced {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00d4ff;
  line-height: 1;
}

.stat-label-enhanced {
  font-size: 0.7rem;
  color: #b8c4d0;
  font-weight: 500;
  margin-top: 0.25rem;
}

.stat-separator {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

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

/* Framer Motion Animation Classes */
.motion-element {
  opacity: 0;
  transform: translateY(60px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.motion-element.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-stagger {
  animation-delay: var(--stagger-delay, 0s);
}

/* Enhanced Animation Keyframes */
@keyframes materializeIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.6) rotateX(45deg);
    filter: blur(10px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.05) rotateX(0deg);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0px);
  }
}

@keyframes flyInScale {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50px) scale(0.5) rotate(15deg);
  }
  70% {
    opacity: 0.9;
    transform: translateY(-15px) translateX(5px) scale(1.1) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
  }
}

.animate-materialize {
  animation: materializeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fly-in {
  animation: flyInScale 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Framer Motion Animation Classes */
.motion-element {
  opacity: 0;
  transform: translateY(60px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.motion-element.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-stagger {
  animation-delay: var(--stagger-delay, 0s);
}

/* Enhanced Animation Keyframes */
@keyframes materializeIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.6) rotateX(45deg);
    filter: blur(10px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.05) rotateX(0deg);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0px);
  }
}

@keyframes flyInScale {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50px) scale(0.5) rotate(15deg);
  }
  70% {
    opacity: 0.9;
    transform: translateY(-15px) translateX(5px) scale(1.1) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
  }
}

.animate-materialize {
  animation: materializeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fly-in {
  animation: flyInScale 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
