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

body {
  background-color: #0b0b0b;
  color: #ffffff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body.no-scroll {
  overflow: hidden;
}

/* --- LOADINGSCREEN --- */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #070707;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  text-align: center;
}

.loader-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 5px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 42, 42, 0.8), 0 0 35px rgba(139, 0, 0, 0.6);
  margin-bottom: 25px;
  animation: pulseText 2s infinite ease-in-out;
}

.progress-container {
  width: 260px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 4px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #8b0000, #ff2a2a);
  box-shadow: 0 0 12px #ff2a2a;
  animation: fillBar 1.6s ease-in-out forwards;
}

.loader-status {
  margin-top: 15px;
  font-size: 0.8rem;
  font-family: 'Courier New', Courier, monospace;
  color: #ff2a2a;
  letter-spacing: 2px;
  text-transform: uppercase;
  height: 1.2em;
  animation: pulseStatus 1.2s infinite ease-in-out;
}

@keyframes fillBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulseText {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.98); }
}

@keyframes pulseStatus {
  0%, 100% { opacity: 0.5; text-shadow: 0 0 2px rgba(255, 42, 42, 0.3); }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(255, 42, 42, 0.9); }
}

/* --- NAVBAR --- */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 2rem;
  background-color: #141414;
  border-bottom: 2px solid #8b0000;
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.logo {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.menu-btn:hover span {
  background-color: #ff2a2a;
}

/* --- HERO SECTION --- */
.hero {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background-color: rgba(255, 42, 42, 0.08);
  border: 1px solid rgba(255, 42, 42, 0.3);
  color: #ff2a2a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #ff2a2a;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff2a2a;
}

.hero-divider {
  border: 0;
  height: 1px;
  background: #2a2a2a;
  width: 100%;
  margin: 1.5rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ff2a2a;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 42, 42, 0.4);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #b0b0b0;
  max-width: 650px;
}

.hero-video-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 2.5rem;
  border: none;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: block;
  object-fit: cover;
}

.hero-divider-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 1px;
  background: #2a2a2a;
  border: none;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

/* --- STATS BOXEN --- */
.stats-container {
  display: flex;
  gap: 2rem;
  width: 100%;
  margin-top: 0.5rem;
}

.stat-card {
  flex: 1;
  background: linear-gradient(145deg, #161616, #0e0e0e);
  border: 1px solid rgba(255, 42, 42, 0.3);
  border-top: 3px solid #ff2a2a;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(139, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 42, 42, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: #ff2a2a;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 42, 42, 0.45);
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.stat-icon {
  font-size: 1.5rem;
  color: #ff2a2a;
  filter: drop-shadow(0 0 8px rgba(255, 42, 42, 0.8));
}

.stat-badge {
  font-size: 0.65rem;
  font-family: 'Courier New', Courier, monospace;
  color: #ff2a2a;
  background: rgba(255, 42, 42, 0.12);
  border: 1px solid rgba(255, 42, 42, 0.35);
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.stat-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0a0a0;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(255, 42, 42, 0.6);
}

/* --- SERVICE PAGE STYLES --- */
.service-card {
  width: 100%;
  background: linear-gradient(145deg, #161616, #0e0e0e);
  border: 1px solid rgba(255, 42, 42, 0.3);
  border-top: 3px solid #ff2a2a;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(139, 0, 0, 0.25);
}

.service-card-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 0.8rem;
}

.service-card-title {
  font-size: 1.3rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card-title i {
  color: #ff2a2a;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.service-table th,
.service-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #222222;
}

.service-table th {
  color: #ff2a2a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(255, 42, 42, 0.05);
}

.service-table td {
  font-size: 1rem;
  color: #dddddd;
}

.service-table tr:hover td {
  background: rgba(255, 42, 42, 0.08);
  color: #ffffff;
}

.table-icon {
  color: #ff2a2a;
  margin-right: 10px;
  font-size: 1.1rem;
}

.text-right {
  text-align: right;
}

.price-tag {
  font-weight: bold;
  color: #ff2a2a;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 1px;
}

/* --- FOOTER --- */
.site-footer {
  width: 100%;
  margin-top: 4rem;
  padding-bottom: 2rem;
  text-align: center;
}

.footer-divider {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 1px;
  background: #2a2a2a;
  border: none;
  margin-bottom: 1.5rem;
}

.footer-text {
  font-size: 0.8rem;
  color: #666666;
  letter-spacing: 1.5px;
}

/* --- SIDEBAR & OVERLAY --- */
.sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100dvh;
  background-color: #121212;
  border-right: 2px solid #8b0000;
  box-shadow: 5px 0 25px rgba(139, 0, 0, 0.5);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.sidebar.active {
  left: 0;
}

.close-btn {
  background: none;
  border: none;
  color: #ff2a2a;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  line-height: 1;
}

.sidebar-content {
  margin-top: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c0c0c0;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 42, 42, 0.2);
  transition: all 0.3s ease;
}

.nav-link i {
  color: #ff2a2a;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 42, 42, 0.15);
  border-color: #ff2a2a;
  box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
  transform: translateX(4px);
}

.sidebar-lang-container {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

.lang-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #333333;
}

.lang-icon {
  color: #ff2a2a;
}

.lang-select {
  background: transparent;
  color: #ffffff;
  border: none;
  outline: none;
  font-size: 0.9rem;
  width: 100%;
  cursor: pointer;
}

.lang-select option {
  background-color: #121212;
  color: #ffffff;
}

.sidebar-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 0.8rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.sidebar-footer a {
  color: #888888;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.sidebar-footer a:hover {
  color: #ff2a2a;
  transform: translateY(-3px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 90;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- 4-ECKIGER SETTINGS BUTTON & MODAL --- */
.settings-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #121212;
  border: 2px solid #ff2a2a;
  color: #ff2a2a;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

.settings-float-btn:hover {
  transform: rotate(90deg) scale(1.08);
  background: #ff2a2a;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 42, 42, 0.85);
}

.settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.settings-modal.active {
  opacity: 1;
  visibility: visible;
}

.settings-modal-content {
  background: linear-gradient(145deg, #161616, #0e0e0e);
  border: 2px solid #ff2a2a;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  box-shadow: 0 0 35px rgba(255, 42, 42, 0.4);
  position: relative;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.settings-modal.active .settings-modal-content {
  transform: scale(1);
}

.settings-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #888888;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.settings-close-btn:hover {
  color: #ff2a2a;
}

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

.settings-header h2 {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
}

.settings-icon {
  color: #ff2a2a;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(255, 42, 42, 0.8));
}

.settings-desc {
  color: #aaaaaa;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.purge-btn {
  width: 100%;
  padding: 13px;
  background: rgba(255, 42, 42, 0.1);
  border: 1px solid #ff2a2a;
  color: #ff2a2a;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.purge-btn:hover {
  background: #ff2a2a;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 42, 42, 0.6);
}

.purge-status {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #00ff88;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1.5px;
  height: 1.2em;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

@media (max-width: 650px) {
  .hero { padding: 2.5rem 1.5rem 1.5rem 1.5rem; }
  .hero-title { font-size: 2.5rem; }
  .stats-container { flex-direction: column; gap: 1.2rem; }
}
