/* Allgemeine Styles */
:root {
  --primary: #ff4500;
  --primary-dark: hsl(from var(--primary) h s l / 0.8);
  --secondary: #2c2c2c;
  --accent: #ffc400;
  --text-light: #ffffff;
  --text-dark: #333333;
  --gradient-fire: linear-gradient(to right, #ff4500, #ffc400);
  --gradient-phoenix: linear-gradient(
    135deg,
    #ff4500,
    #ffc400,
    #ff7300,
    #ff2300
  );
  --pricing-gradient: linear-gradient(135deg, #ff4500, #ff7300, #ffc400);
  --pricing-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: all 250ms ease-in-out;
  list-style: none;
}

body {
  background-color: #0c0c0c;
  background-image: linear-gradient(
      to right,
      rgba(20, 10, 5, 0.9),
      rgba(10, 5, 2, 0.8)
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='100' y1='33' x2='100' y2='-3'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23ff4500' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M100 0 L100 200 L0 200 L0 0 Z'/%3E%3C/svg%3E");
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ff4500' fill-opacity='0.03' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 100vw;
  padding: 0 8px;
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}
header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-phoenix);
  animation: fire-flow 4s linear infinite;
  z-index: 1;
}
@keyframes fire-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  background: none;
  margin: 0;
  letter-spacing: 1px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 60' width='40' height='40'%3E%3Cdefs%3E%3ClinearGradient id='fireGradient' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23ff4500'/%3E%3Cstop offset='50%25' stop-color='%23ff7300'/%3E%3Cstop offset='100%25' stop-color='%23ffc400'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23fireGradient)' d='M25 0 C30 15 40 20 40 30 C40 45 30 50 25 50 C20 50 10 45 10 30 C10 20 20 15 25 0 Z'%3E%3Canimate attributeName='d' dur='1.5s' repeatCount='indefinite' values='M25 0 C30 15 40 20 40 30 C40 45 30 50 25 50 C20 50 10 45 10 30 C10 20 20 15 25 0 Z; M25 0 C30 15 40 25 40 35 C40 50 30 55 25 55 C20 55 10 50 10 35 C10 25 20 15 25 0 Z; M25 0 C30 15 40 20 40 30 C40 45 30 50 25 50 C20 50 10 45 10 30 C10 20 20 15 25 0 Z' /%3E%3C/path%3E%3Cpath fill='%23ffcc00' opacity='0.5' d='M25 10 C28 20 34 24 34 30 C34 40 28 44 25 44 C22 44 16 40 16 30 C16 24 22 20 25 10 Z'%3E%3Canimate attributeName='d' dur='1.8s' repeatCount='indefinite' values='M25 10 C28 20 34 24 34 30 C34 40 28 44 25 44 C22 44 16 40 16 30 C16 24 22 20 25 10 Z; M25 10 C28 20 32 28 32 34 C32 44 28 48 25 48 C22 48 18 44 18 34 C18 28 22 20 25 10 Z; M25 10 C28 20 34 24 34 30 C34 40 28 44 25 44 C22 44 16 40 16 30 C16 24 22 20 25 10 Z' /%3E%3C/path%3E%3C/svg%3E");
}

.logo-icon::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 40px;
  height: 10px;
  background: linear-gradient(to top, rgba(255, 69, 0, 0.5), transparent);
  filter: blur(5px);
  animation: flame-flicker 1.5s infinite alternate;
}

@keyframes flame-flicker {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 10px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: url("/api/placeholder/1200/500") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff4500' fill-opacity='0.15' d='M0,32L48,48C96,64,192,96,288,122.7C384,149,480,171,576,170.7C672,171,768,149,864,160C960,171,1056,213,1152,208C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  animation: fire-wave 10s linear infinite;
}

@keyframes fire-wave {
  0% {
    transform: translateX(-5%) translateY(10%);
  }
  50% {
    transform: translateX(5%) translateY(5%);
  }
  100% {
    transform: translateX(-5%) translateY(10%);
  }
}

.hero-fire-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

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

.hero-content::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'%3E%3Cdefs%3E%3ClinearGradient id='phoenixGradient' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23ff4500'/%3E%3Cstop offset='50%25' stop-color='%23ff7300'/%3E%3Cstop offset='100%25' stop-color='%23ffc400'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23phoenixGradient)' d='M50,0 C55,20 65,30 75,35 C85,40 95,45 95,55 C95,65 85,75 75,85 C65,95 55,100 50,120 C45,100 35,95 25,85 C15,75 5,65 5,55 C5,45 15,40 25,35 C35,30 45,20 50,0 Z'%3E%3Canimate attributeName='d' dur='3s' repeatCount='indefinite' values='M50,0 C55,20 65,30 75,35 C85,40 95,45 95,55 C95,65 85,75 75,85 C65,95 55,100 50,120 C45,100 35,95 25,85 C15,75 5,65 5,55 C5,45 15,40 25,35 C35,30 45,20 50,0 Z; M50,0 C60,20 70,25 80,30 C90,35 100,45 100,55 C100,65 90,80 80,90 C70,100 60,105 50,120 C40,105 30,100 20,90 C10,80 0,65 0,55 C0,45 10,35 20,30 C30,25 40,20 50,0 Z; M50,0 C55,20 65,30 75,35 C85,40 95,45 95,55 C95,65 85,75 75,85 C65,95 55,100 50,120 C45,100 35,95 25,85 C15,75 5,65 5,55 C5,45 15,40 25,35 C35,30 45,20 50,0 Z' /%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
  filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.8));
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient-phoenix);
  background-size: 300% 100%;
  color: var(--text-light);
  border: none;
  border-radius: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: btn-gradient-shift 3s infinite;
  box-shadow: 0 2px 10px rgba(255, 69, 0, 0.5), 0 0 20px rgba(255, 196, 0, 0.3);
}

@keyframes btn-gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-phoenix);
  background-size: 300% 100%;
  border-radius: 50px;
  z-index: -1;
  animation: btn-border-animate 3s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes btn-border-animate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 69, 0, 0.8),
    transparent
  );
  filter: blur(5px);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.7), 0 0 30px rgba(255, 196, 0, 0.5);
  border-radius: 20px;
}

.btn:hover::before {
  opacity: 1;
}

/* Services Section */
.services {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h3 {
  font-size: 36px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title h3::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--gradient-fire);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

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

.service-card {
  background-color: var(--secondary);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--gradient-fire);
  z-index: -1;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 69, 0, 0.3);
}

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

.service-card:hover .service-content {
  border-color: transparent;
}

.service-content {
  background-color: var(--secondary);
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.service-icon {
  font-size: 50px;
  margin-bottom: 20px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: #dddddd;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Fire Animation */
.fire-divider {
  height: 100px;
  width: 100vw;
  min-width: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
}
.flames {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200vw;
  min-width: 100vw;
  height: 100px;
  pointer-events: none;
  background-repeat: repeat-x;
  background-size: cover;
}
.flames:nth-child(1) {
  z-index: 1;
  height: 70px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2880 320"><path fill="%23ff4500" fill-opacity="1" d="M0,96L96,112C192,128,384,160,576,165.3C768,171,960,149,1152,149.3C1344,149,1536,171,1728,197.3C1920,224,2112,256,2304,234.7C2496,213,2688,139,2784,101.3L2880,64L2880,320L2784,320C2688,320,2496,320,2304,320C2112,320,1920,320,1728,320C1536,320,1344,320,1152,320C960,320,768,320,576,320C384,320,192,320,96,320L0,320Z"></path></svg>');
  animation: fire-move 10s linear infinite;
}
.flames:nth-child(2) {
  z-index: 2;
  height: 50px;
  bottom: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2880 320"><path fill="%23ffc400" fill-opacity="0.8" d="M0,64L96,96C192,128,384,192,576,202.7C768,213,960,171,1152,133.3C1344,96,1536,64,1728,96C1920,128,2112,224,2304,245.3C2496,267,2688,213,2784,186.7L2880,160L2880,320L2784,320C2688,320,2496,320,2304,320C2112,320,1920,320,1728,320C1536,320,1344,320,1152,320C960,320,768,320,576,320C384,320,192,320,96,320L0,320Z"></path></svg>');
  animation: fire-move 7s linear infinite;
}
@keyframes fire-move {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 2880px bottom;
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: rgba(44, 44, 44, 0.3);
}

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

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.feature-icon::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 69, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.feature-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent);
}

.feature-item p {
  color: #dddddd;
  line-height: 1.6;
}

.features-grid .feature-item:nth-child(5) .feature-icon i {
  font-size: 38px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  text-align: center;
  background-image: url("/api/placeholder/1200/400");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-flames {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff4500" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,197.3C960,224,1056,256,1152,234.7C1248,213,1344,139,1392,101.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    repeat-x;
  background-size: 100% 100%;
  transform: rotate(180deg);
  animation: fire-move 4s linear infinite;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

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

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

.footer-links a {
  color: #dddddd;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "»";
  position: absolute;
  left: 0;
  color: var(--primary);
}

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

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-icon {
  margin-right: 10px;
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }
  .hero h2 {
    font-size: 36px;
  }

  .section-title h3 {
    font-size: 28px;
  }

  .cta h3 {
    font-size: 28px;
  }
}

/* Fire cursor effect */
.fire-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 196, 0, 0.8) 0%,
    rgba(255, 69, 0, 0.4) 70%,
    rgba(255, 69, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.fire-cursor.active {
  opacity: 1;
}

.fire-cursor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 196, 0, 0.5) 70%,
    rgba(255, 196, 0, 0) 100%
  );
  border-radius: 50%;
}

.particle {
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(255, 196, 0, 0.8) 0%,
    rgba(255, 69, 0, 0.4) 70%,
    rgba(255, 69, 0, 0) 100%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Benutzerpanel oben rechts */
.user-panel {
  margin-left: 20px;
}

.user-panel .btn.small {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 30px;
  background: var(--gradient-phoenix);
  color: var(--text-light);
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.4);
}

.user-panel .btn.small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.6);
}

/* Fix: Dropdowns sichtbar über Header */
header {
  z-index: 10000;
  position: relative;
}

nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10001;
}
/* ANCHOR Dropdown */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px; /* schöner als margin */
  padding: 0;
  margin: 0;
  align-items: center;
}

nav ul li {
  position: relative; /* für absolute Dropdown */
}

nav ul li a,
.dropdown .dropbtn {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav ul li a.active,
nav ul li a:hover,
.dropdown .dropbtn:hover,
.dropdown .dropbtn:focus {
  color: var(--primary);
  background-color: rgba(255 255 255 / 0.1);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  outline: none;
}
nav ul li a {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--gradient-phoenix);
  color: var(--text-light);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(255, 69, 0, 0.22),
    0 2px 16px 0 rgba(44, 44, 44, 0.18), 0 0 0 2px var(--primary);
  padding: 0.7rem 0 0.7rem 0;
  z-index: 1000;
  overflow: hidden;
  border: none;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.4, 1.4, 0.6, 1),
    transform 0.28s cubic-bezier(0.4, 1.4, 0.6, 1);
}

.dropdown:hover > .dropdown-content,
.dropdown:focus-within > .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-content a {
  display: block;
  padding: 16px 28px;
  color: var(--text-light);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  background: transparent;
  border: none;
  border-radius: 0;
  min-width: 100%;
  box-sizing: border-box;
  transition: background 0.22s, color 0.22s, text-shadow 0.22s;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
  background: linear-gradient(
    90deg,
    rgba(255, 196, 0, 0.16) 0%,
    rgba(255, 69, 0, 0.22) 100%
  );
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  font-size: 17px;
  border: none;
  border-radius: 0;
  padding: 16px 28px;
  min-width: 100%;
  box-sizing: border-box;
  outline: none;
}

/* Caret Animation */
.dropbtn .fa-caret-down {
  transition: transform 0.28s cubic-bezier(0.4, 1.4, 0.6, 1);
}
.dropdown:hover .dropbtn .fa-caret-down,
.dropdown:focus-within .dropbtn .fa-caret-down {
  transform: rotate(-180deg);
}

.contact-info {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;

  a {
    text-decoration: none;
    font-size: 18px;
    color: var(--primary);
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
  }

  a:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
  }
}
.logo-text {
  text-decoration: none;
  color: var(--primary);
}

.faq-button {
  text-decoration: none;
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #ffe53b;
  background-image: linear-gradient(147deg, #ffe53b 0%, #ff2525 74%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.151);
  position: relative;
}
.faq-button svg {
  height: 1.5em;
  fill: white;
}
.faq-button:hover svg {
  animation: jello-vertical 0.7s both;
}
@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.tooltip {
  position: absolute;
  top: -20px;
  opacity: 0;
  background-color: #ffe53b;
  background-image: linear-gradient(147deg, #ffe53b 0%, #ff2525 74%);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.2s;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.tooltip::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ff2525;
  background-size: 1000%;
  background-position: center;
  transform: rotate(45deg);
  bottom: -15%;
  transition-duration: 0.3s;
}

.faq-button:hover .tooltip {
  top: -40px;
  opacity: 1;
  transition-duration: 0.3s;
}
a {
  text-transform: lowercase;
  color: #ff7300;
  text-decoration: none;
}
a:focus,
a:hover {
  color: var(--primary-dark);
}
/* Ausnahme für Buttons und Navigation */
nav a,
.btn,
.btn.small,
.user-panel .btn,
.faq-button,
.footer-links a {
  text-transform: none;
  color: inherit;
}

/* Panel Button Verbesserungen */
.panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 32px;
  background: var(--gradient-phoenix);
  color: var(--text-light);
  box-shadow: 0 2px 12px 0 rgba(255, 69, 0, 0.25),
    0 0 16px 0 rgba(255, 196, 0, 0.15);
  border: none;
  transition: transform 0.18s, box-shadow 0.3s, background 0.3s;
  cursor: pointer;
  outline: none;
  z-index: 2;
}
.panel-btn .panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-right: 2px;
  box-shadow: 0 0 8px 2px rgba(255, 196, 0, 0.15);
}
.panel-btn .panel-icon i {
  color: var(--text-light);
  font-size: 22px;
  transition: color 0.3s;
}
.panel-btn .panel-text {
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.panel-btn .panel-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.18);
  transition: opacity 0.25s, bottom 0.25s;
  pointer-events: none;
  z-index: 10;
}
.panel-btn:hover,
.panel-btn:focus {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(255, 69, 0, 0.35),
    0 0 32px 0 rgba(255, 196, 0, 0.22);
  background: var(--gradient-fire);
}
.panel-btn:hover .panel-icon i,
.panel-btn:focus .panel-icon i {
  color: #222;
}
.panel-btn:hover .panel-tooltip,
.panel-btn:focus .panel-tooltip {
  visibility: visible;
  opacity: 1;
  bottom: 140%;
}
@media (max-width: 600px) {
  .logo-text {
    font-size: 20px;
  }
  .panel-btn {
    font-size: 14px;
    padding: 8px 12px 8px 8px;
  }
  .panel-btn .panel-icon {
    width: 26px;
    height: 26px;
  }
}

.fire-divider-invert {
  transform: rotate(180deg);
}

.blue-divider {
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.blue-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
.blue-divider-top {
  transform: rotate(180deg);
  margin-bottom: -2px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.logo-link:visited,
.logo-link:active,
.logo-link:hover {
  color: inherit;
  text-decoration: none;
}
header {
  position: fixed;
}

.minecraft-packages {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(44, 44, 44, 0.6) 100%
  );
}

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

.package-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4500, #ff8c00, #ff4500);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
  border-color: rgba(255, 69, 0, 0.3);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff4500, #ff8c00);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
}

.package-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 69, 0, 0.1),
    rgba(255, 140, 0, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 69, 0, 0.3);
  transition: all 0.3s ease;
}

.package-card:hover .package-icon {
  transform: scale(1.1);
  border-color: rgba(255, 69, 0, 0.6);
  background: linear-gradient(
    135deg,
    rgba(255, 69, 0, 0.2),
    rgba(255, 140, 0, 0.2)
  );
}

.package-icon i {
  font-size: 32px;
  color: #ff4500;
  transition: all 0.3s ease;
}

.package-card:hover .package-icon i {
  color: #ff8c00;
  transform: scale(1.1);
}

.package-header h4 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price-amount {
  font-size: 36px;
  font-weight: bold;
  color: #ff4500;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.price-period {
  font-size: 16px;
  color: #cccccc;
  font-weight: 300;
}

.package-features {
  flex: 1;
  margin: 30px 0;
}

.package-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.package-features .feature-item:last-child {
  border-bottom: none;
}

.package-features .feature-item:hover {
  background: rgba(255, 69, 0, 0.1);
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
  margin-right: -10px;
}

.package-features .feature-item i {
  font-size: 18px;
  color: #ff4500;
  width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-features .feature-item:hover i {
  color: #ff8c00;
  transform: scale(1.2);
}

.package-features .feature-item span {
  color: #dddddd;
  font-size: 16px;
  font-weight: 500;
}

.package-footer {
  margin-top: auto;
  text-align: center;
}

.package-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff4500, #ff8c00);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.package-btn::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 ease;
}

.package-btn:hover::before {
  left: 100%;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 69, 0, 0.4);
}

.package-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.package-btn:hover i {
  transform: scale(1.2);
}

/* Package-specific styles */
.package-card.starter {
  border-color: rgba(255, 69, 0, 0.2);
}

.package-card.starter::before {
  background: linear-gradient(90deg, #ff4500, #ff6347, #ff4500);
}

.package-card.premium {
  border-color: rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
}

.package-card.premium::before {
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.package-card.premium .package-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 237, 78, 0.1)
  );
  border-color: rgba(255, 215, 0, 0.3);
}

.package-card.premium .package-icon i {
  color: #ffd700;
}

.package-card.premium:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.3);
}

.package-card.premium:hover .package-icon {
  border-color: rgba(255, 215, 0, 0.6);
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 237, 78, 0.2)
  );
}

.package-card.premium:hover .package-icon i {
  color: #ffed4e;
}

.package-card.premium .price-amount {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.package-card.premium .package-features .feature-item i {
  color: #ffd700;
}

.package-card.premium .package-features .feature-item:hover i {
  color: #ffed4e;
}

.package-card.premium .package-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #333;
}

.package-card.premium .package-btn:hover {
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

.package-card.blitz {
  border-color: rgba(0, 191, 255, 0.2);
}

.package-card.blitz::before {
  background: linear-gradient(90deg, #00bfff, #87ceeb, #00bfff);
}

.package-card.blitz .package-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.1),
    rgba(135, 206, 235, 0.1)
  );
  border-color: rgba(0, 191, 255, 0.3);
}

.package-card.blitz .package-icon i {
  color: #00bfff;
}

.package-card.blitz:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
  border-color: rgba(0, 191, 255, 0.3);
}

.package-card.blitz:hover .package-icon {
  border-color: rgba(0, 191, 255, 0.6);
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.2),
    rgba(135, 206, 235, 0.2)
  );
}

.package-card.blitz .price-amount {
  color: #00bfff;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.package-card.blitz .package-features .feature-item i {
  color: #00bfff;
}

.package-card.blitz .package-features .feature-item:hover i {
  color: #87ceeb;
}

.package-card.blitz .package-btn {
  background: linear-gradient(45deg, #00bfff, #87ceeb);
}

.package-card.blitz .package-btn:hover {
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-card {
    min-height: auto;
    padding: 25px;
  }

  .package-card.premium {
    transform: none;
  }

  .package-header h4 {
    font-size: 24px;
  }

  .price-amount {
    font-size: 28px;
  }

  .package-icon {
    width: 60px;
    height: 60px;
  }

  .package-icon i {
    font-size: 24px;
  }
}

/* AGB Section Styles */
.agb-section {
  padding: 80px 0 40px 0;
  background: #18120c;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agb-title {
  font-size: 2.5rem;
  color: #ffc400;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 60px;
}
.agb-title i {
  margin-right: 10px;
  color: #ff7300;
}
.agb-subtitle {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 32px;
}
.agb-card {
  background: rgba(30, 32, 38, 0.85);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(255, 69, 0, 0.1);
  padding: 32px 18px;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agb-list {
  list-style: decimal inside;
  padding-left: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agb-list li {
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #fff;
  background: none;
  border-left: 4px solid #ff7300;
  padding-left: 14px;
  border-radius: 4px;
  transition: background 0.2s;
  width: 95%;
  max-width: 420px;
  text-align: left;
}
.agb-list-title {
  font-weight: 700;
  color: #ffc400;
  font-size: 1.08rem;
  margin-right: 6px;
}
@media (max-width: 600px) {
  .agb-card {
    padding: 14px 4px;
  }
  .agb-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .agb-list li {
    font-size: 0.92rem;
    width: 100%;
    max-width: 100%;
  }
}

.impressum-section {
  padding: 80px 0 40px 0;
  background: #18120c;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impressum-title {
  font-size: 2.5rem;
  color: #ffc400;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 60px;
}
.impressum-title i {
  margin-right: 10px;
  color: #ff7300;
}
.impressum-subtitle {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 32px;
}
.impressum-card {
  background: rgba(30, 32, 38, 0.85);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(255, 69, 0, 0.1);
  padding: 32px 18px;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impressum-list {
  list-style: decimal inside;
  padding-left: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impressum-list li {
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #fff;
  background: none;
  border-left: 4px solid #ff7300;
  padding-left: 14px;
  border-radius: 4px;
  transition: background 0.2s;
  width: 95%;
  max-width: 420px;
  text-align: left;
}
.impressum-list-title {
  font-weight: 700;
  color: #ffc400;
  font-size: 1.08rem;
  margin-right: 6px;
}
@media (max-width: 600px) {
  .impressum-card {
    padding: 14px 4px;
  }
  .impressum-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .impressum-list li {
    font-size: 0.92rem;
    width: 100%;
    max-width: 100%;
  }
}

.error-404 {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    background-color: #0c0c0c;
    background-image: linear-gradient(
        to right,
        rgba(20, 10, 5, 0.9),
        rgba(10, 5, 2, 0.8)
      ),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='100' y1='33' x2='100' y2='-3'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23ff4500' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M100 0 L100 200 L0 200 L0 0 Z'/%3E%3C/svg%3E");
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */
  header {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
  }
  header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-phoenix);
    animation: fire-flow 4s linear infinite;
    z-index: 1;
  }
  @keyframes fire-flow {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo h1 {
    font-size: 28px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 10px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .logo-icon::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 40px;
    height: 10px;
    background: linear-gradient(to top, rgba(255, 69, 0, 0.5), transparent);
    filter: blur(5px);
    animation: flame-flicker 1.5s infinite alternate;
  }

  @keyframes flame-flicker {
    0% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }

  nav ul {
    display: flex;
    list-style: none;
  }

  nav ul li {
    margin-left: 25px;
  }

  nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 10px;
  }

  nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
  }

  nav ul li a:hover {
    color: var(--primary);
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  /* Hero Section */
  .hero {
    background: url("/api/placeholder/1200/500") center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }

  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff4500' fill-opacity='0.15' d='M0,32L48,48C96,64,192,96,288,122.7C384,149,480,171,576,170.7C672,171,768,149,864,160C960,171,1056,213,1152,208C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    animation: fire-wave 10s linear infinite;
  }

  @keyframes fire-wave {
    0% {
      transform: translateX(-5%) translateY(10%);
    }
    50% {
      transform: translateX(5%) translateY(5%);
    }
    100% {
      transform: translateX(-5%) translateY(10%);
    }
  }

  .hero-fire-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
  }

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

  .hero-content::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'%3E%3Cdefs%3E%3ClinearGradient id='phoenixGradient' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23ff4500'/%3E%3Cstop offset='50%25' stop-color='%23ff7300'/%3E%3Cstop offset='100%25' stop-color='%23ffc400'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23phoenixGradient)' d='M50,0 C55,20 65,30 75,35 C85,40 95,45 95,55 C95,65 85,75 75,85 C65,95 55,100 50,120 C45,100 35,95 25,85 C15,75 5,65 5,55 C5,45 15,40 25,35 C35,30 45,20 50,0 Z'%3E%3Canimate attributeName='d' dur='3s' repeatCount='indefinite' values='M50,0 C55,20 65,30 75,35 C85,40 95,45 95,55 C95,65 85,75 75,85 C65,95 55,100 50,120 C45,100 35,95 25,85 C15,75 5,65 5,55 C5,45 15,40 25,35 C35,30 45,20 50,0 Z; M50,0 C60,20 70,25 80,30 C90,35 100,45 100,55 C100,65 90,80 80,90 C70,100 60,105 50,120 C40,105 30,100 20,90 C10,80 0,65 0,55 C0,45 10,35 20,30 C30,25 40,20 50,0 Z; M50,0 C55,20 65,30 75,35 C85,40 95,45 95,55 C95,65 85,75 75,85 C65,95 55,100 50,120 C45,100 35,95 25,85 C15,75 5,65 5,55 C5,45 15,40 25,35 C35,30 45,20 50,0 Z' /%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.8));
  }

  .hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-phoenix);
    background-size: 300% 100%;
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: btn-gradient-shift 3s infinite;
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.5),
      0 0 20px rgba(255, 196, 0, 0.3);
  }

  @keyframes btn-gradient-shift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-phoenix);
    background-size: 300% 100%;
    border-radius: 50px;
    z-index: -1;
    animation: btn-border-animate 3s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  @keyframes btn-border-animate {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .btn::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 69, 0, 0.8),
      transparent
    );
    filter: blur(5px);
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.7),
      0 0 30px rgba(255, 196, 0, 0.5);
  }

  .btn:hover::before {
    opacity: 1;
  }

  /* Services Section */
  .services {
    padding: 80px 0;
  }

  .section-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-title h3 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .section-title h3::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient-fire);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .service-card {
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .service-card::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-fire);
    z-index: -1;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.3);
  }

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

  .service-card:hover .service-content {
    border-color: transparent;
  }

  .service-content {
    background-color: var(--secondary);
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
  }

  .service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .service-card p {
    color: #dddddd;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* Fire Animation */
  .fire-divider {
    height: 100px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
  }

  .flames {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff4500" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,197.3C960,224,1056,256,1152,234.7C1248,213,1344,139,1392,101.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
      repeat-x;
    background-size: 100% 100%;
    animation: fire-move 4s linear infinite;
  }

  .flames:nth-child(2) {
    bottom: 10px;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffc400" fill-opacity="0.8" d="M0,64L48,96C96,128,192,192,288,202.7C384,213,480,171,576,133.3C672,96,768,64,864,96C960,128,1056,224,1152,245.3C1248,267,1344,213,1392,186.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
      repeat-x;
    background-size: 100% 100%;
    animation: fire-move 3s linear infinite;
  }

  @keyframes fire-move {
    0% {
      background-position: 0 bottom;
    }
    100% {
      background-position: 1440px bottom;
    }
  }

  /* Features Section */
  .features {
    padding: 80px 0;
    background-color: rgba(44, 44, 44, 0.3);
  }

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

  .feature-item {
    text-align: center;
    padding: 20px;
  }

  .feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    display: inline-block;
  }

  .feature-icon::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
  }

  .feature-item p {
    color: #dddddd;
    line-height: 1.6;
  }

  /* CTA Section */
  .cta {
    padding: 80px 0;
    text-align: center;
    background-image: url("/api/placeholder/1200/400");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }

  .cta-content {
    position: relative;
    z-index: 2;
  }

  .cta h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
  }

  .cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  /* Footer */
  footer {
    background-color: #1a1a1a;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
  }

  .footer-flames {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff4500" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,197.3C960,224,1056,256,1152,234.7C1248,213,1344,139,1392,101.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>')
      repeat-x;
    background-size: 100% 100%;
    transform: rotate(180deg);
    animation: fire-move 4s linear infinite;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
    position: relative;
    padding-bottom: 10px;
  }

  .footer-column h4::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
  }

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

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

  .footer-links a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
  }

  .footer-links a::before {
    content: "»";
    position: absolute;
    left: 0;
    color: var(--primary);
  }

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

  .footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }

  .contact-icon {
    margin-right: 10px;
    color: var(--primary);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom p {
    color: #999999;
    font-size: 14px;
  }

  .social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-icon:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-5px);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      text-align: center;
    }

    nav ul {
      margin-top: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    nav ul li {
      margin: 5px 10px;
    }
    .hero h2 {
      font-size: 36px;
    }

    .section-title h3 {
      font-size: 28px;
    }

    .cta h3 {
      font-size: 28px;
    }
  }

  /* Fire cursor effect */
  .fire-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(255, 196, 0, 0.8) 0%,
      rgba(255, 69, 0, 0.4) 70%,
      rgba(255, 69, 0, 0) 100%
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }

  .fire-cursor.active {
    opacity: 1;
  }

  .fire-cursor::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 196, 0, 0.5) 70%,
      rgba(255, 196, 0, 0) 100%
    );
    border-radius: 50%;
  }

  .particle {
    position: absolute;
    background: radial-gradient(
      circle,
      rgba(255, 196, 0, 0.8) 0%,
      rgba(255, 69, 0, 0.4) 70%,
      rgba(255, 69, 0, 0) 100%
    );
    border-radius: 50%;
    pointer-events: none;
  }

  /* Benutzerpanel oben rechts */
  .user-panel {
    margin-left: 20px;
  }

  .user-panel .btn.small {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 30px;
    background: var(--gradient-phoenix);
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.4);
  }

  .user-panel .btn.small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.6);
  }

  /* Fix: Dropdowns sichtbar über Header */
  header {
    z-index: 10000;
    position: relative;
  }

  nav ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10001;
  }
  /* ANCHOR Dropdown */
  nav ul {
    display: flex;
    list-style: none;
    gap: 25px; /* schöner als margin */
    padding: 0;
    margin: 0;
    align-items: center;
  }

  nav ul li {
    position: relative; /* für absolute Dropdown */
  }

  nav ul li a,
  .dropdown .dropbtn {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  nav ul li a.active,
  nav ul li a:hover,
  .dropdown .dropbtn:hover,
  .dropdown .dropbtn:focus {
    color: var(--primary);
    background-color: rgba(255 255 255 / 0.1);
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    outline: none;
  }

  nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
  }

  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 100%;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-light);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0.5rem 0;
    z-index: 1000;
  }

  .dropdown-content li {
    width: 100%;
  }

  .dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: black;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.3s ease;
    border-radius: 0 10px 10px 0;
  }

  .dropdown-content a:hover,
  .dropdown-content a:focus {
    background-color: #ddd;
    color: black;
    outline: none;
  }

  .dropdown:hover > .dropdown-content,
  .dropdown:focus-within > .dropdown-content {
    display: block;
  }
  h1,
  p {
    text-align: center;
  }

  .centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    a {
      text-decoration: none;
      color: var(--accent);
    }
  }
  .center-error {
    margin: auto;
    width: 50%;
    padding-top: 42.5%;
  }
}

/* Hamburger-Menü Styles */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-left: 10px;
  transition: background 0.2s;
  position: relative;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger:focus {
  outline: 2px solid var(--primary);
  background: rgba(255, 69, 0, 0.08);
}
.hamburger:hover {
  background: rgba(255, 69, 0, 0.08);
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.menu-overlay.open {
  display: block;
}

@media (max-width: 900px) {
  nav .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #18120c;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0 20px 0;
    gap: 0;
    box-shadow: 0 8px 32px 0 rgba(255, 69, 0, 0.12);
    transform: translateY(-120%);
    transition: transform 0.3s cubic-bezier(0.4, 1.4, 0.6, 1);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
  }
  nav .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-overlay.open {
    display: block;
  }
  .hamburger {
    display: flex;
  }
  nav ul.main-nav li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  nav ul.main-nav li a,
  .dropdown .dropbtn {
    width: 100%;
    padding: 18px 24px;
    font-size: 20px;
    border-radius: 0;
    text-align: left;
    background: none;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  nav ul.main-nav li a.active,
  nav ul.main-nav li a:hover,
  .dropdown .dropbtn:hover,
  .dropdown .dropbtn:focus {
    background: rgba(255, 69, 0, 0.08);
    color: var(--primary);
  }
  nav ul.main-nav .dropdown-content {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: none;
    padding: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  nav ul.main-nav .dropdown.open .dropdown-content {
    display: block;
  }
  nav ul.main-nav .dropdown-content a {
    padding: 16px 36px;
    font-size: 18px;
    color: var(--text-light);
    background: none;
    border: none;
  }
}

/* Responsive Logo */
.logo-img {
  width: 44px;
  height: auto;
  max-width: 100%;
}

/* Responsive Buttons */
.btn,
.panel-btn,
.package-btn {
  min-width: 44px;
  min-height: 44px;
  font-size: 1.1rem;
  padding: 16px 32px;
  margin: 10px 0;
}
@media (max-width: 600px) {
  .btn,
  .panel-btn,
  .package-btn {
    font-size: 1.2rem;
    padding: 18px 0;
    width: 100%;
    border-radius: 18px;
    margin: 12px 0;
  }
}

/* Responsive Images */
img,
.logo-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Schriftgrößen & Zeilenabstand */
body,
p,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}
@media (max-width: 600px) {
  body {
    font-size: 1.08rem;
  }
  h1,
  .logo-text {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  p,
  li,
  a {
    font-size: 1rem;
  }
}

/* Grid/Flexbox Layouts */
@media (max-width: 900px) {
  .header-content,
  .footer-content {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .services-grid,
  .features-grid,
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Container Anpassung */
.container {
  width: 100%;
  max-width: 100vw;
  padding: 0 8px;
}

/* Feste Breiten vermeiden */
.service-card,
.feature-item,
.package-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}
@media (min-width: 901px) {
  .hamburger {
    display: none !important;
  }
}

/* Kundenmeinungen / Testimonials */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.3) 0%,
    rgba(255, 196, 0, 0.07) 100%
  );
}
.testimonials .section-title {
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(30, 20, 10, 0.97);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(255, 69, 0, 0.13),
    0 2px 16px 0 rgba(255, 196, 0, 0.09);
  padding: 38px 28px 32px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1.5px solid rgba(255, 196, 0, 0.13);
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1deg);
  box-shadow: 0 16px 48px 0 rgba(255, 69, 0, 0.22),
    0 4px 32px 0 rgba(255, 196, 0, 0.13);
  border-color: var(--accent);
}
.testimonial-emoji {
  font-size: 2.1rem;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(255, 196, 0, 0.13));
}
.testimonial-text {
  font-size: 1.13rem;
  font-style: italic;
  color: #ffe8b0;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.7;
}
.testimonial-name {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  margin-top: 6px;
}
@media (max-width: 700px) {
  .testimonials {
    padding: 40px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonial-card {
    padding: 22px 10px 18px 10px;
  }
}

/* Bestellung / Order Section */
.order-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.3) 0%,
    rgba(255, 196, 0, 0.07) 100%
  );
  min-height: 70vh;
}
.order-form {
  background: rgba(30, 20, 10, 0.97);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(255, 69, 0, 0.13),
    0 2px 16px 0 rgba(255, 196, 0, 0.09);
  padding: 38px 28px 32px 28px;
  color: #fff;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.order-form label {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}
.order-form input,
.order-form select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 196, 0, 0.13);
  background: #18120c;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  outline: none;
  transition: border 0.2s;
}
.order-form input:focus,
.order-form select:focus {
  border-color: var(--accent);
}
.order-form button {
  padding: 14px 0;
  border-radius: 15px;
  background: var(--gradient-phoenix);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 10px;
}
.order-form button:hover {
  background: var(--gradient-fire);
  transform: translateY(-2px) scale(1.03);
}
.order-success {
  color: #ffc400;
  font-weight: 700;
  text-align: center;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .order-form {
    padding: 18px 4px 18px 4px;
  }
}

/* Bestellung: Hosting-Auswahl & Modal */
.hosting-choice-section {
  padding: 80px 0 60px 0;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.3) 0%,
    rgba(255, 196, 0, 0.07) 100%
  );
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hosting-choice-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.hosting-card {
  background: rgba(20, 20, 22, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  box-shadow: 0 0 32px 0 #ff450033, 0 8px 32px 0 rgba(255, 69, 0, 0.13);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  padding: 38px 32px 32px 32px;
  color: #fff;
  max-width: 370px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.hosting-card h4 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.hosting-card p {
  color: #ffe8b0;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.hosting-card .btn {
  min-width: 180px;
  font-size: 1.1rem;
  margin: 0;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.modal.open {
  display: flex;
}
.modal-content {
  background: rgba(20, 20, 22, 0.97);
  border-radius: 22px;
  box-shadow: 0 0 32px 0 #ff450033, 0 8px 32px 0 rgba(255, 69, 0, 0.13);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  padding: 38px 28px 32px 28px;
  color: #fff;
  max-width: 420px;
  width: 95vw;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.25s cubic-bezier(0.4, 2, 0.6, 1) 1;
}
@keyframes modalIn {
  0% {
    transform: scale(0.95) translateY(40px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.6rem;
  color: #ffc400;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #ff4500;
}
@media (max-width: 900px) {
  .hosting-choice-grid {
    flex-direction: column;
    gap: 24px;
  }
  .hosting-card {
    min-width: 0;
    width: 100%;
    max-width: 98vw;
  }
}

/* Team Section */
.team-section {
  margin: 40px auto 60px auto;
  max-width: 900px;
  padding: 0 16px;
}
.team-section h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.team-card {
  background: #191919;
  border-radius: 14px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px 0 rgba(255, 69, 0, 0.09);
  padding: 28px 18px 24px 18px;
}
.team-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 0 10px 18px;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-align: left;
}
.team-title.owner {
  background: #ff1616;
}
.team-title.co-owner {
  background: #ff3c3c;
}
.team-title.manager {
  background: #ff7b00;
}
.team-title.moderator {
  background: #e06bf7;
}
.team-title.t-moderator {
  background: #8e24aa;
}
.team-title.supporter {
  background: #ffc400;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #23272a;
  border: 3px solid #ff1616;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px 0 rgba(255, 69, 0, 0.13);
}
.team-name {
  color: #ff1616;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2px;
  letter-spacing: 0.5px;
}
@media (max-width: 700px) {
  .team-members {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .team-member {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    gap: 14px;
  }
  .team-avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    margin-right: 10px;
  }
  .team-name {
    font-size: 1rem;
    margin-top: 0;
    text-align: left;
  }
}

.owner {
  background-color: #ff4500;
}
.manager {
  background-color: #ff9800;
}
.admin {
  background-color: #ffb300;
}
.dev {
  background-color: #2979ff;
}
.tdev {
  background-color: #64b5f6;
}
.mod {
  background-color: #c158dc;
}
.tmod {
  background-color: #8e24aa;
}
.sup {
  background-color: #ffd600;
}
.tsup {
  background-color: #fff176;
}
.helfer {
  background-color: #43a047;
}
.thelfer {
  background-color: #81c784;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 10, 5, 0.8));
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ff4500' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.3;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(20, 20, 20, 0.9);
  border: 2px solid rgba(255, 69, 0, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pricing-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--pricing-shadow);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 196, 0, 0.3);
  margin-top: 20px;
  margin-bottom: 20px;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pricing-gradient);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
  z-index: 10;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}

.amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
}

.period {
  font-size: 16px;
  color: #888;
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 30px;
}

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

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--accent);
  font-size: 18px;
  min-width: 20px;
}

.pricing-btn {
  width: 100%;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--pricing-gradient);
  border: none;
  border-radius: 10px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-btn::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 ease;
}

.pricing-btn:hover::before {
  left: 100%;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4);
}

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

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .amount {
    font-size: 36px;
  }

  .pricing-header h4 {
    font-size: 24px;
  }
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95),
    rgba(20, 10, 5, 0.9)
  );
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ff4500' fill-opacity='0.03' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.3;
}

.faq-grid {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(255, 69, 0, 0.2);
}

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

.faq-question:hover {
  background: rgba(255, 69, 0, 0.1);
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-question i {
  color: var(--primary);
  font-size: 16px;
  transition: transform 0.3s ease;
  min-width: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(255, 69, 0, 0.05);
}

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

.faq-answer p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

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

  .faq-question h4 {
    font-size: 16px;
  }

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

  .faq-answer p {
    font-size: 15px;
  }
}

/* Loading States */
.btn.loading,
.pricing-btn.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn.loading::after,
.pricing-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--text-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Lazy Loading */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.lazy.loaded {
  opacity: 1;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Effect */
.parallax {
  transform: translateZ(0);
  will-change: transform;
}

/* Enhanced Hover Effects */
.service-card:hover,
.pricing-card:hover,
.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 69, 0, 0.3);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .btn.loading::after,
  .pricing-btn.loading::after {
    width: 16px;
    height: 16px;
  }

  .fade-in {
    transform: translateY(20px);
  }
}

/* Status Section */
.status {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 10, 5, 0.8));
  position: relative;
}

.status::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ff4500' fill-opacity='0.03' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.3;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.status-card {
  background: rgba(20, 20, 20, 0.9);
  border: 2px solid rgba(255, 69, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pricing-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.status-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.status-card:hover::before {
  transform: scaleX(1);
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.status-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.status-indicator.offline {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.status-indicator.warning {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric:last-child {
  border-bottom: none;
}

.metric-label {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.metric-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.status-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.status-footer p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

.status-refresh {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
}

.status-refresh i {
  transition: transform 0.3s ease;
}

.status-refresh:hover i {
  transform: rotate(180deg);
}

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

  .status-card {
    padding: 20px;
  }

  .status-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .status-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--text-light);
  font-size: 14px;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(255, 69, 0, 0.3);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-color: #4caf50;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.notification.error {
  border-color: #f44336;
  box-shadow: 0 5px 20px rgba(244, 67, 54, 0.3);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-content i {
  font-size: 16px;
}

.notification.success .notification-content i {
  color: #4caf50;
}

.notification.error .notification-content i {
  color: #f44336;
}

@media (max-width: 768px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    transform: translateY(-100%);
  }

  .notification.show {
    transform: translateY(0);
  }
}

.nolink {
  &:hover {
    color: var(--text-light);
  }
}

.package-card.not-available {
  filter: grayscale(0.85) brightness(0.92) opacity(0.7);
  pointer-events: none;
  position: relative;
}
.package-card.not-available::after {
  content: "Nicht verfügbar";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44, 44, 44, 0.92);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 7px 22px;
  border-radius: 18px;
  z-index: 20;
  box-shadow: 0 2px 12px #0003;
  letter-spacing: 1px;
}
.package-card.not-available .package-btn,
.package-card.not-available button,
.package-card.not-available a {
  background: #aaa !important;
  color: #fff !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  border: none !important;
  opacity: 0.7;
}
