        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #0D0D0D;
            color: #F2F2F2;
            line-height: 1.6;
        }
		
        header h1 {
         font-size: 3rem;
         margin-bottom: 10px;
         letter-spacing: 2px;
        }
        header p {
         font-size: 1.2rem;
         color: #A0A0A0;
        }
		header {
		padding: 20px 20px;
		background: #111;
		border-bottom: 2px solid #E63946;
		position: relative;

		display: flex;
		flex-direction: column;
		align-items: center;
		}
        .section {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 20px;
        }
        .section h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #E63946;
        }
        .section p {
            color: #D0D0D0;
        }
        .cta-box {
            text-align: center;
            margin-top: 40px;
        }
        .cta-button {
            display: inline-block;
            padding: 14px 28px;
            background: #E63946;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            transition: 0.2s;
        }
        .cta-button:hover {
            background: #b92d38;
        }
        footer {
            text-align: center;
            padding: 40px 20px;
            margin-top: 60px;
            background: #111;
            color: #777;
            font-size: 0.9rem;
        }
        footer a {
            color: #A0A0A0;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .impressum {
            font-size: 0.9rem;
            color: #C0C0C0;
        }
		header img.logo {
    filter: hue-rotate(-40deg) saturate(2) brightness(1.2);
}
.glow-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    background: #E63946;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.45);
}

.glow-btn:hover {
    background: #ff4d5a;
    box-shadow: 0 0 18px rgba(255, 77, 90, 0.75),
                0 0 32px rgba(255, 77, 90, 0.45);
    transform: translateY(-2px);
}
.section-hades-stats {
    padding: 40px 0;
    background: #0b0b0b;
    border-top: 1px solid #222;
}

.section-hades-stats .hades-header h2 {
    color: #ffcc00;
    margin-bottom: 5px;
}

.section-hades-stats .hades-header p {
    color: #ccc;
    margin-bottom: 20px;
}

.hades-stats-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 20px;
}
.logo-wave {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.logo-wave {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.logo-wave::after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: blur(8px);
    transform: skewX(-20deg);
    animation: wave 20s ease-in-out infinite;
}

@keyframes wave {
    0%   { left: -200%; }
    15%  { left: 200%; }   /* 2 Sekunden sichtbare Bewegung */
    100% { left: 200%; }   /* 11 Sekunden Pause */
}
.footer-claim {
  font-size: 1.2em;
  font-weight: 600;
  padding: 12px 18px;
  background: rgba(120, 0, 180, 0.25); /* leicht violett transparent */
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(160, 0, 255, 0.45); /* Glow */
  margin-bottom: 10px;
}

.lang-switcher img {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ff115e;
    padding: 1px;
    box-shadow: 0 0 8px rgba(255, 17, 94, 0.55);
    transition: 0.15s ease;
}
.lang-switcher img:hover {
    transform: scale(1.12);
    box-shadow: 0 0 12px rgba(255, 17, 94, 0.85);
}
header {
    position: relative;
    padding: 20px 20px 30px;
    background: #111;
    border-bottom: 2px solid #E63946;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Flaggen oben rechts */
.lang-switcher {
    position: absolute;
    top: 18px;
    right: 22px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Menü UNTER dem Header, rechtsbündig */
.top-nav {
    max-width: 900px;
    margin: 8px auto 0;
    padding: 0 20px;

    display: flex;
    justify-content: flex-end;
}

.top-nav .auth-links {
    display: flex;
    gap: 14px;
}

.top-nav .auth-links a {
    text-decoration: none;
    color: #ddd;
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.2s ease;
}

.top-nav .auth-links a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateY(-1px);
}
