/* ==========================================================================
   DashcamDrivers Germany - Modern Custom Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

/* CSS Variables for Premium Automotive Theme */
:root {
  --bg-primary: #0a0b0e;        /* Dark asphalt / carbon black */
  --bg-secondary: #12141c;      /* Deep steel / garage floor */
  --bg-card: #1a1d26;           /* Premium gray card container */
  --bg-card-hover: #222633;     /* Lighter gray on card hover */
  
  --accent-orange: #ff7b00;     /* Warning caution orange */
  --accent-orange-glow: rgba(255, 123, 0, 0.45);
  --accent-yellow: #f8c102;     /* Hazard sign yellow */
  
  --police-blue: #0077ff;       /* Blue light accent */
  --police-red: #ff2233;        /* Red light accent */
  
  --text-primary: #f5f6fa;      /* Clean white */
  --text-secondary: #9ea4b0;    /* Muted dashboard gray */
  --text-muted: #5e6470;        /* Muted placeholder text */
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-color-hover: rgba(255, 123, 0, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  --max-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* Pitch Draft Notice Banner */
.pitch-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: var(--accent-orange);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 1100; /* Higher than navbar */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
  transform: translateZ(0);
}



/* Floating Navigation Bar */
.navbar {
  position: fixed;
  top: 40px; /* Offset by pitch banner height */
  left: 0;
  right: 0;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4%;
  z-index: 1000;
  background: rgba(10, 11, 14, 0.85); /* More opaque background for better Safari compositing */
  backdrop-filter: blur(8px); /* Lighter blur is 4x cheaper to compute in Safari */
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
  transform: translateZ(0);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--police-blue) 0%, var(--accent-orange) 50%, var(--police-red) 100%);
  z-index: 1001;
}

.navbar.scrolled {
  height: 70px;
  background: rgba(10, 11, 14, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.nav-brand span {
  color: var(--accent-orange);
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  grid-column: 3;
  justify-self: end;
  background: linear-gradient(135deg, var(--accent-orange), #ff4d00);
  color: white;
  padding: 10px 22px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px var(--accent-orange-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.6);
  background: linear-gradient(135deg, #ff8c1a, var(--accent-orange));
}

.mobile-menu-btn {
  grid-column: 3;
  justify-self: end;
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Glowing Police Lights background decoration */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 8s infinite alternate;
  transform: translateZ(0);
  will-change: transform;
}

.hero::before {
  top: 5%;
  left: -5%;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.8) 0%, rgba(0, 119, 255, 0) 70%);
}

.hero::after {
  bottom: 5%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 34, 51, 0.8) 0%, rgba(255, 34, 51, 0) 70%);
  animation-delay: 4s;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.08; }
  100% { transform: scale(1.3); opacity: 0.18; }
}

.hero-container {
  width: 90%;
  max-width: var(--max-width);
  z-index: 1;
}

.hero-banner-wrapper {
  margin-bottom: 40px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 123, 0, 0.15);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  position: relative;
  transform: perspective(1000px) rotateX(2deg);
  transition: var(--transition-slow);
}

.hero-banner-wrapper:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.01);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 123, 0, 0.25);
  border-color: var(--border-color-hover);
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-tagline {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Dashboard / Stats Section */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--police-blue), var(--police-red));
  opacity: 0;
  transition: var(--transition-normal);
}

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

.stat-card.youtube-card::before {
  background: linear-gradient(90deg, #ff0000, #ff5555);
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.youtube-icon-bg {
  background: rgba(255, 0, 0, 0.1);
  color: #ff3333;
}

.video-icon-bg {
  background: rgba(255, 123, 0, 0.1);
  color: var(--accent-orange);
}

.upload-icon-bg {
  background: rgba(0, 119, 255, 0.1);
  color: var(--police-blue);
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.1);
}

.stat-card.youtube-card:hover .youtube-icon-bg {
  background: rgba(255, 0, 0, 0.2);
}

.stat-card.video-card:hover .video-icon-bg {
  background: rgba(255, 123, 0, 0.2);
}

.stat-card.upload-card:hover .upload-icon-bg {
  background: rgba(0, 119, 255, 0.2);
}

.stat-action {
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-normal);
}

.stat-card:hover .stat-action {
  color: var(--text-primary);
}

.stat-card.youtube-card:hover .stat-action {
  color: #ff5555;
}

.stat-card.video-card:hover .stat-action {
  color: var(--accent-orange);
}

.stat-card.upload-card:hover .stat-action {
  color: var(--police-blue);
}

.stat-arrow {
  transition: transform var(--transition-fast);
}

.stat-card:hover .stat-arrow {
  transform: translateX(4px);
}

.stat-number {
  font-size: 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Pulsing Live Dot */
.live-dot {
  width: 10px;
  height: 10px;
  background-color: #00e676;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #00e676;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px #00e676; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.live-badge {
  background-color: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: #00e676;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Section Header Styles */
.section {
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
}

.section-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tagline {
  color: var(--accent-orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
}

/* Submissions Section (Einsendungen) */
.submission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.video-container {
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 119, 255, 0.1);
  border: 1px solid var(--border-color);
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.submission-visual {
  background: radial-gradient(circle at 70% 30%, rgba(255, 123, 0, 0.1), transparent), var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.submission-visual::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.6) 0%, rgba(255, 123, 0, 0) 70%);
  opacity: 0.25;
  pointer-events: none;
}

.submission-highlight {
  position: relative;
  z-index: 1;
}

.submission-highlight-badge {
  background-color: rgba(255, 123, 0, 0.1);
  color: var(--accent-orange);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 123, 0, 0.2);
  display: inline-block;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submission-highlight h4 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.submission-highlight p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* Checklist items */
.submission-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist-item span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.check-icon {
  color: #00e676; /* Vibrant green check mark */
  background-color: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 50%;
  padding: 3px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.submission-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #ff4d00);
  color: white;
  box-shadow: 0 4px 15px var(--accent-orange-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.6);
  background: linear-gradient(135deg, #ff8c1a, var(--accent-orange));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

/* Upload Action styles */
.btn-upload {
  width: 100%;
  margin-bottom: 20px;
}

/* Shop / Rettungsgassen Section */
.shop-intro {
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.shop-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Showcase Slider/Grid */
.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform var(--transition-slow);
  width: max-content;
  transform: translateZ(0);
  will-change: transform;
}

.gallery-card {
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.gallery-image-container {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: var(--transition-slow);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.15) rotate(2deg);
}

.gallery-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.gallery-arrow:hover {
  background-color: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  transform: scale(1.05);
}

.gallery-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.shop-cta-box {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.08), rgba(248, 193, 2, 0.03)), var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 20px auto 0 auto;
  gap: 30px;
}

.shop-cta-text h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.shop-cta-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* About Us Section (Über Uns) */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-text strong {
  color: var(--text-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition-normal);
}

.about-badge-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
}

.about-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 123, 0, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.about-badge-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.about-badge-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Footer & Impressum */
.footer {
  background-color: #050608;
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-logo span {
  color: var(--accent-orange);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.social-btn:hover {
  transform: translateY(-3px);
  color: white;
}

.social-btn.youtube:hover {
  background-color: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: 24px;
}

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

/* Modal for Impressum / Legal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

.modal h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 10px;
}

.modal p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.modal-legal-section {
  margin-bottom: 20px;
}

.modal-legal-section h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 600;
}

/* Mobile Responsiveness Rules */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .submission-grid {
    grid-template-columns: 1fr;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-grid {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 6%;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(18, 20, 28, 0.96); /* Slightly more solid to remove blur overhead */
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    gap: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  .nav-cta {
    display: none; /* Hide in navbar on small screens to save space */
  }
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .shop-cta-box {
    flex-direction: column;
    text-align: center;
  }
  
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  
  .submission-buttons {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 14px 20px;
  }
}
