/* ── EASTER GRAND PRIX THEME ── */
:root {
    --primary: #4ade80; /* Frühlingsgrün */
    --primary-dim: rgba(74, 222, 128, 0.2);
    --accent: #facc15; /* Sonnengelb/Gold */
    --accent-dim: rgba(250, 204, 21, 0.2);
    --bg: #050505;
    --bg2: #0a0a0a;
    --panel: rgba(15, 20, 15, 0.85);
    --border: rgba(74, 222, 128, 0.15);
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

body {
    background-color: var(--bg) !important;
    background-image: radial-gradient(circle at 50% -20%, #1a2e1a 0%, #050505 100%) !important;
    color: var(--text);
    overflow-x: hidden;
}

/* ── PETAL FALL ANIMATION ── */
body::after {
    content: "";
    position: fixed;
    top: -10%;
    left: 0;
    width: 100%;
    height: 110%;
    background-image: 
        radial-gradient(circle at 10% 10%, #fff 1px, transparent 1px),
        radial-gradient(circle at 20% 20%, #4ade80 2px, transparent 2px),
        radial-gradient(circle at 30% 10%, #facc15 1px, transparent 1px);
    background-size: 400px 400px;
    animation: petals 15s linear infinite;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

@keyframes petals {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(400px) rotate(20deg); }
}

/* ── LAYOUT WIDENING ── */
.layout-container {
    width: 95% !important;
    max-width: 2600px !important;
    grid-template-columns: 350px minmax(0, 1fr) 350px !important;
    gap: 40px !important;
}

/* ── PREMIUM STYLING ── */
.pro-card, .stat-box, .dashboard-module, .hero-srv-card {
    background: var(--panel) !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: visible;
}

.pro-tab.active, .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #166534 100%) !important;
    color: #fff !important;
    box-shadow: 0 5px 20px rgba(74, 222, 128, 0.4);
    border: none;
}

/* ── BOMBASTIC HEADER ── */
.site-header {
    background: #050a05 !important;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    position: relative;
}

.site-header::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('deco.png') repeat-x center;
    background-size: contain;
    background-position: center bottom;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
    mix-blend-mode: screen;
}

.nav-link {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    transition: all 0.3s ease !important;
}

.nav-link:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 15px var(--primary);
}

/* ── EASTER DECO: MODULES ── */
/* Racing Hase links */
.dashboard-module::before, .stat-box::before, .pro-card::before, .hero-srv-card::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: url('deco.png') no-repeat left top;
    background-size: 300px;
    background-position: 0px 0px;
    z-index: 100;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Racing Eier rechts */
.dashboard-module::after, .stat-box::after, .pro-card::after, .hero-srv-card::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: url('deco.png') no-repeat right top;
    background-size: 300px;
    background-position: -200px 0px;
    z-index: 100;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* ── 404 ERROR PAGE ── */
.error-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 40px 20px;
  text-align: center;
  font-family: var(--font-main, 'Rajdhani', sans-serif);
}

.error-visual {
  position: relative;
  margin-bottom: 40px;
  max-width: 600px;
  width: 100%;
}

.error-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(232, 35, 42, 0.3);
  border: 1px solid rgba(232, 35, 42, 0.2);
}

.error-glitch-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-title, 'Orbitron', sans-serif);
  text-shadow: 0 0 20px rgba(232, 35, 42, 0.8);
  letter-spacing: 10px;
  pointer-events: none;
}

.error-title {
  font-family: var(--font-title, 'Orbitron', sans-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--primary, #e8232a);
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.error-message {
  font-size: 18px;
  color: var(--text-dim, #aaa);
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .error-glitch-text { font-size: 80px; }
  .error-title { font-size: 32px; }
  .error-actions { flex-direction: column; }
}

