/* ==========================================================================
   PETRI HEIL - Modern Landing Page CSS
   Inspired by pikzels.com with Petri-Heil brand colors
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Petri Heil Brand Colors
   -------------------------------------------------------------------------- */
:root {
  /* Primary Colors - Forest Green from Logo */
  --ph-primary: #1a5c3a;
  --ph-primary-light: #22c55e;
  --ph-primary-dark: #0d3320;
  --ph-primary-glow: rgba(34, 197, 94, 0.4);

  /* Secondary - Mint/Teal */
  --ph-secondary: #10b981;
  --ph-secondary-light: #34d399;

  /* Accent - Gold/Yellow from Logo */
  --ph-accent: #fbbf24;
  --ph-accent-light: #fcd34d;
  --ph-accent-dark: #f59e0b;

  /* Backgrounds - Dark Mode */
  --ph-bg-dark: #050a07;
  --ph-bg-darker: #020503;
  --ph-bg-card: rgba(26, 92, 58, 0.1);
  --ph-bg-card-hover: rgba(26, 92, 58, 0.2);

  /* Text Colors */
  --ph-text-primary: #f5f5f5;
  --ph-text-secondary: #a1a1aa;
  --ph-text-muted: #71717a;

  /* Gradients */
  --ph-gradient-primary: linear-gradient(135deg, var(--ph-primary) 0%, var(--ph-secondary) 100%);
  --ph-gradient-accent: linear-gradient(135deg, var(--ph-accent) 0%, var(--ph-accent-dark) 100%);
  --ph-gradient-dark: linear-gradient(180deg, var(--ph-bg-dark) 0%, var(--ph-bg-darker) 100%);
  --ph-gradient-glow: radial-gradient(ellipse at 50% 0%, var(--ph-primary-glow) 0%, transparent 70%);

  /* Borders & Effects */
  --ph-border: rgba(34, 197, 94, 0.2);
  --ph-border-hover: rgba(34, 197, 94, 0.4);
  --ph-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --ph-shadow-glow: 0 0 40px rgba(34, 197, 94, 0.3);

  /* Spacing */
  --ph-section-padding: 100px;
  --ph-container-max: 1200px;

  /* Typography */
  --ph-font-heading: 'Inter', 'Montserrat', system-ui, sans-serif;
  --ph-font-body: 'Inter', 'Lato', system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   Base Styles Override
   -------------------------------------------------------------------------- */
.landing-modern {
  background: var(--ph-bg-dark);
  color: var(--ph-text-primary);
  font-family: var(--ph-font-body);
  overflow-x: hidden;
}

.landing-modern * {
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Navigation - Glassmorphism Style
   -------------------------------------------------------------------------- */
.landing-modern .navbar {
  background: rgba(5, 10, 7, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ph-border);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.landing-modern .navbar.scrolled {
  background: rgba(5, 10, 7, 0.95) !important;
  box-shadow: var(--ph-shadow);
}

.landing-modern .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--ph-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-modern .nav-link {
  color: var(--ph-text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.landing-modern .nav-link:hover,
.landing-modern .nav-link.active {
  color: var(--ph-primary-light) !important;
}

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

.landing-modern .nav-link:hover::after {
  width: 80%;
}

/* --------------------------------------------------------------------------
   Hero Section - Full Screen with Glow Effects
   -------------------------------------------------------------------------- */
.landing-modern .masthead {
  min-height: 100vh;
  background: var(--ph-bg-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.landing-modern .masthead::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, 2%) rotate(1deg); }
  66% { transform: translate(-2%, -1%) rotate(-1deg); }
}

.landing-modern .masthead-bg {
  background:
    linear-gradient(180deg, rgba(5, 10, 7, 0.7) 0%, rgba(5, 10, 7, 0.9) 100%),
    url('/static/images/landing_page_background.jpg') center/cover !important;
}

.landing-modern .masthead .container {
  position: relative;
  z-index: 10;
}

/* Logo Animation */
.landing-modern .masthead-avatar {
  width: 180px !important;
  height: 180px !important;
  border: 3px solid var(--ph-primary-light) !important;
  box-shadow:
    0 0 60px rgba(34, 197, 94, 0.4),
    0 0 120px rgba(34, 197, 94, 0.2) !important;
  transition: all 0.5s ease;
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    box-shadow:
      0 0 60px rgba(34, 197, 94, 0.4),
      0 0 120px rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow:
      0 0 80px rgba(34, 197, 94, 0.6),
      0 0 150px rgba(34, 197, 94, 0.3);
  }
}

.landing-modern .masthead-avatar:hover {
  transform: scale(1.08) !important;
  box-shadow:
    0 0 100px rgba(34, 197, 94, 0.6),
    0 0 200px rgba(34, 197, 94, 0.3) !important;
}

/* Hero Typography */
.landing-modern .masthead-heading {
  font-family: var(--ph-font-heading);
  font-size: clamp(2rem, 5vw, 4rem) !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none !important;
}

.landing-modern .masthead-subheading {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  color: var(--ph-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.landing-modern .masthead-subheading .text-warning {
  color: var(--ph-accent) !important;
  background: var(--ph-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.landing-modern .divider-custom-line {
  width: 100px;
  height: 2px;
  background: var(--ph-gradient-primary);
  opacity: 0.6;
}

.landing-modern .divider-custom-icon {
  color: var(--ph-primary-light);
}

/* --------------------------------------------------------------------------
   Buttons - Modern Gradient Style
   -------------------------------------------------------------------------- */
.landing-modern .btn {
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.landing-modern .btn-warning,
.landing-modern .btn-primary {
  background: var(--ph-gradient-primary);
  color: white !important;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.landing-modern .btn-warning:hover,
.landing-modern .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.landing-modern .btn-light,
.landing-modern .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--ph-border);
  color: var(--ph-text-primary) !important;
}

.landing-modern .btn-light:hover,
.landing-modern .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--ph-border-hover);
  transform: translateY(-3px);
}

/* CTA Button Glow Effect */
.landing-modern .btn-warning::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.5s;
}

.landing-modern .btn-warning:hover::before {
  left: 100%;
}

/* --------------------------------------------------------------------------
   Stats Section - Big Numbers like pikzels.com
   -------------------------------------------------------------------------- */
.landing-modern .stats-section {
  padding: 80px 0;
  background: var(--ph-bg-darker);
  border-top: 1px solid var(--ph-border);
  border-bottom: 1px solid var(--ph-border);
}

.landing-modern .stat-item {
  text-align: center;
  padding: 2rem;
}

.landing-modern .stat-number {
  font-family: var(--ph-font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  background: var(--ph-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.landing-modern .stat-label {
  color: var(--ph-text-secondary);
  font-size: 1rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Section Styles - Dark Theme
   -------------------------------------------------------------------------- */
.landing-modern section,
.landing-modern .page-section {
  background: var(--ph-bg-dark);
  padding: var(--ph-section-padding) 0;
  position: relative;
}

.landing-modern section.bg-primary,
.landing-modern .page-section.bg-primary {
  background: var(--ph-bg-darker) !important;
}

.landing-modern section.bg-secondary,
.landing-modern .page-section.bg-secondary {
  background: var(--ph-bg-dark) !important;
}

/* Section Headers */
.landing-modern .section-heading {
  font-family: var(--ph-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ph-text-primary);
  margin-bottom: 1rem;
}

.landing-modern .section-subheading {
  color: var(--ph-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* --------------------------------------------------------------------------
   Cards - Glassmorphism Style
   -------------------------------------------------------------------------- */
.landing-modern .card,
.landing-modern .feature-card {
  background: var(--ph-bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ph-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.landing-modern .card::before,
.landing-modern .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ph-primary-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.landing-modern .card:hover,
.landing-modern .feature-card:hover {
  background: var(--ph-bg-card-hover);
  border-color: var(--ph-border-hover);
  transform: translateY(-8px);
  box-shadow: var(--ph-shadow-glow);
}

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

.landing-modern .card-title {
  color: var(--ph-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.landing-modern .card-text {
  color: var(--ph-text-secondary);
}

/* Card Icons */
.landing-modern .card-icon,
.landing-modern .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--ph-gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

/* --------------------------------------------------------------------------
   Feature Grid
   -------------------------------------------------------------------------- */
.landing-modern .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.landing-modern .pricing-card {
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.landing-modern .pricing-card.featured {
  border-color: var(--ph-primary-light);
  transform: scale(1.05);
}

.landing-modern .pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ph-gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.landing-modern .pricing-price {
  font-family: var(--ph-font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ph-text-primary);
  line-height: 1;
}

.landing-modern .pricing-price span {
  font-size: 1rem;
  color: var(--ph-text-secondary);
  font-weight: 400;
}

/* Pricing Cards - Bootstrap Override for Dark Theme */
.landing-modern #preise .card {
  background: rgba(15, 25, 20, 0.95);
  border: 1px solid var(--ph-border);
}

.landing-modern #preise .card-body {
  background: transparent;
}

.landing-modern #preise .card-body ul li {
  color: var(--ph-text-primary) !important;
  font-weight: 400;
}

.landing-modern #preise .card-body .text-muted {
  color: var(--ph-text-secondary) !important;
}

.landing-modern #preise .card-body .display-4 {
  color: var(--ph-primary-light) !important;
}

.landing-modern #preise .card-body hr {
  border-color: var(--ph-border);
  opacity: 0.5;
}

.landing-modern #preise .card-header {
  background: var(--ph-gradient-primary) !important;
  border-bottom: 1px solid var(--ph-border);
}

.landing-modern #preise .card-header.bg-secondary {
  background: linear-gradient(135deg, rgba(26, 92, 58, 0.8) 0%, rgba(13, 51, 32, 0.9) 100%) !important;
}

.landing-modern #preise .card-footer {
  background: rgba(15, 25, 20, 0.8) !important;
  border-top: 1px solid var(--ph-border);
}

.landing-modern #preise .card-footer.bg-light {
  background: rgba(15, 25, 20, 0.8) !important;
}

/* --------------------------------------------------------------------------
   Bootstrap bg-light Override for Dark Theme
   Fixes white-on-white text issue in sections like "Von Anglern, für Angler"
   -------------------------------------------------------------------------- */
.landing-modern .bg-light {
  background: var(--ph-bg-dark) !important;
  color: var(--ph-text-primary) !important;
}

.landing-modern .bg-light h1,
.landing-modern .bg-light h2,
.landing-modern .bg-light h3,
.landing-modern .bg-light h4,
.landing-modern .bg-light h5,
.landing-modern .bg-light h6 {
  color: var(--ph-text-primary) !important;
}

.landing-modern .bg-light p,
.landing-modern .bg-light span,
.landing-modern .bg-light li {
  color: var(--ph-text-secondary) !important;
}

/* Section 2 - "Von Anglern, für Angler entwickelt" specific styles */
.landing-modern #section2 {
  background: linear-gradient(180deg, var(--ph-bg-dark) 0%, rgba(26, 92, 58, 0.1) 50%, var(--ph-bg-dark) 100%) !important;
  border-top: 1px solid var(--ph-border);
  border-bottom: 1px solid var(--ph-border);
}

.landing-modern #section2 h2 {
  background: var(--ph-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-modern #section2 .lead,
.landing-modern #section2 p {
  color: var(--ph-text-secondary) !important;
}

/* Feature icons in section2 */
.landing-modern #section2 .fa-3x,
.landing-modern #section2 .fa-2x {
  color: var(--ph-primary-light) !important;
}

/* Alert box - "Ein Projekt des Fischereiverein Wangen e.V." */
.landing-modern #section2 .alert-info {
  background: linear-gradient(135deg, rgba(26, 92, 58, 0.3) 0%, rgba(16, 185, 129, 0.2) 100%) !important;
  border: 2px solid var(--ph-primary-light) !important;
  color: var(--ph-text-primary) !important;
}

.landing-modern #section2 .alert-info h3 {
  color: var(--ph-accent) !important;
  -webkit-text-fill-color: var(--ph-accent) !important;
  background: none !important;
}

.landing-modern #section2 .alert-info p {
  color: var(--ph-text-primary) !important;
}

/* Registration Section */
.landing-modern #register {
  background: linear-gradient(135deg, var(--ph-primary-dark) 0%, var(--ph-primary) 100%) !important;
}

.landing-modern #register .card.bg-light {
  background: rgba(15, 25, 20, 0.95) !important;
  border: 1px solid var(--ph-border);
}

.landing-modern #register .card.bg-light .card-title,
.landing-modern #register .card.bg-light h3 {
  color: var(--ph-text-primary) !important;
}

.landing-modern #register .card.bg-light label,
.landing-modern #register .card.bg-light .form-label {
  color: var(--ph-text-secondary) !important;
}

.landing-modern #register .feature-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
}

.landing-modern #register .feature-box h5 {
  color: var(--ph-accent) !important;
}

.landing-modern #register .feature-box p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.landing-modern #preise .btn-outline-primary {
  color: var(--ph-primary-light);
  border-color: var(--ph-primary-light);
}

.landing-modern #preise .btn-outline-primary:hover {
  background: var(--ph-primary-light);
  color: white;
}

/* --------------------------------------------------------------------------
   Video Section
   -------------------------------------------------------------------------- */
.landing-modern .video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ph-shadow);
  border: 1px solid var(--ph-border);
}

.landing-modern .video-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: var(--ph-gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Form Styles
   -------------------------------------------------------------------------- */
.landing-modern .form-control,
.landing-modern .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ph-border);
  border-radius: 12px;
  color: var(--ph-text-primary);
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.landing-modern .form-control:focus,
.landing-modern .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ph-primary-light);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
  color: var(--ph-text-primary);
}

.landing-modern .form-control::placeholder {
  color: var(--ph-text-muted);
}

.landing-modern .form-label {
  color: var(--ph-text-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.landing-modern footer,
.landing-modern .footer {
  background: var(--ph-bg-darker) !important;
  border-top: 1px solid var(--ph-border);
  padding: 4rem 0 2rem;
}

.landing-modern .footer-link {
  color: var(--ph-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.landing-modern .footer-link:hover {
  color: var(--ph-primary-light);
}

.landing-modern .social-icon {
  width: 44px;
  height: 44px;
  background: var(--ph-bg-card);
  border: 1px solid var(--ph-border);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ph-text-secondary);
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.landing-modern .social-icon:hover {
  background: var(--ph-primary);
  border-color: var(--ph-primary);
  color: white;
  transform: translateY(-3px);
}

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

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

.landing-modern .animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.landing-modern .animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.landing-modern .delay-100 { animation-delay: 0.1s; }
.landing-modern .delay-200 { animation-delay: 0.2s; }
.landing-modern .delay-300 { animation-delay: 0.3s; }
.landing-modern .delay-400 { animation-delay: 0.4s; }

/* Scroll Reveal */
.landing-modern [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-modern [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Mobile Responsiveness
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  :root {
    --ph-section-padding: 60px;
  }

  .landing-modern .navbar-collapse {
    background: rgba(5, 10, 7, 0.98);
    backdrop-filter: blur(20px);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--ph-border);
  }

  .landing-modern .masthead-avatar {
    width: 120px !important;
    height: 120px !important;
  }

  .landing-modern .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .landing-modern .masthead {
    padding: 2rem 1rem;
  }

  .landing-modern .masthead-heading {
    font-size: 1.75rem !important;
  }

  .landing-modern .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

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

  .landing-modern .stat-number {
    font-size: 2.5rem;
  }

  .landing-modern .card,
  .landing-modern .feature-card {
    padding: 1.5rem;
  }
}

/* Prevent horizontal scroll */
.landing-modern,
.landing-modern body {
  overflow-x: hidden;
  max-width: 100vw;
}

.landing-modern .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.landing-modern .text-gradient {
  background: var(--ph-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-modern .text-gradient-accent {
  background: var(--ph-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-modern .bg-glass {
  background: var(--ph-bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ph-border);
}

.landing-modern .glow {
  box-shadow: var(--ph-shadow-glow);
}

/* App Store Badges */
.landing-modern .app-badge {
  height: 50px;
  border-radius: 10px;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.landing-modern .app-badge:hover {
  transform: translateY(-3px);
  filter: brightness(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Scroll indicator */
.landing-modern .scroll-indicator {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}
