:root {
    --text-main: #f0f0f5;
    --text-muted: #9aa0a6;

    --accent-gradient: linear-gradient(135deg, #ff2a5f, #ff7e40);
    --accent-solid: #ff2a5f;
    --accent-orange: #ff7e40;
    --accent-purple: #7b3cff;

    --discord-color: #5865F2;

    --glass-bg: rgba(29, 29, 38, 0.5);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

    --navbar-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 42, 95, 0.28) 0%, rgba(255, 42, 95, 0.10) 28%, transparent 55%),
        radial-gradient(circle at 82% 38%, rgba(123, 60, 255, 0.34) 0%, rgba(123, 60, 255, 0.15) 30%, transparent 60%),
        radial-gradient(circle at 80% 86%, rgba(255, 126, 64, 0.26) 0%, rgba(255, 126, 64, 0.10) 32%, transparent 62%),
        linear-gradient(135deg, #170714 0%, #07040d 42%, #12091f 72%, #2a0b18 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

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

.max-w-1000 {
    max-width: 1000px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* --- Premium Background Effects --- */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(115deg, rgba(255, 42, 95, 0.05), transparent 35%, rgba(123, 60, 255, 0.06) 72%, rgba(255, 126, 64, 0.05));
    background-size: 32px 32px, 100% 100%;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.42;
    animation: floatOrb 25s infinite ease-in-out alternate;
}

.orb-1 {
    width: 650px;
    height: 650px;
    background: var(--accent-solid);
    top: -12%;
    left: -10%;
}

.orb-2 {
    width: 650px;
    height: 650px;
    background: var(--accent-purple);
    top: 18%;
    right: -18%;
    animation-delay: -5s;
}

.orb-3 {
    width: 520px;
    height: 520px;
    background: var(--accent-orange);
    bottom: -18%;
    right: 8%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.2); }
}

/* --- Glassmorphism Effect --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.floating {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- Allgemeine Bild-Elemente --- */
.image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.glass-image {
    background: var(--glass-bg);
    padding: 0.5rem;
}

/* --- Content Split --- */
.content-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

/* --- Buttons --- */
.btn-primary, .btn-discord, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    padding: 0.5rem 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 42, 95, 0.18);
}

.btn-discord {
    background-color: var(--discord-color);
    color: #fff;
    box-shadow: 0 12px 28px rgba(88, 101, 242, 0.18);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--accent-solid);
}

.btn-primary:hover, .btn-discord:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* --- Navigation Desktop --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 125px;
    width: auto;
    display: block;
}

.burger-menu {
    display: none;
    cursor: pointer;
    color: var(--text-main);
    transition: color 0.3s ease, transform 0.2s ease;
    background: transparent;
    border: none;
    padding: 0.25rem;
}

.burger-menu:hover {
    color: var(--accent-solid);
}

.burger-menu:active {
    transform: scale(0.94);
}

.burger-menu svg {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--accent-solid);
}

.nav-icon {
    display: none;
}

/* --- Hero Section & Übergangsfigur --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 42, 95, 0.1);
    color: var(--accent-solid);
    border: 1px solid rgba(255, 42, 95, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    text-transform: uppercase;
    background: var(--text-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-character {
    position: absolute;
    bottom: -160px;
    right: 39%;
    height: 55vh;
    max-height: 600px;
    z-index: 5;
    pointer-events: none;
    filter:
        drop-shadow(0 30px 40px rgba(0, 0, 0, 0.85))
        drop-shadow(0 0 25px rgba(255, 42, 95, 0.35))
        drop-shadow(0 0 34px rgba(123, 60, 255, 0.20));
    animation: characterBreathe 6s ease-in-out infinite;
}

@keyframes characterBreathe {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.015); }
    100% { transform: translateY(0px) scale(1); }
}

/* --- Sections & Texts --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.text-block {
    padding: 3rem;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* --- Feature Grid --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 42, 95, 0.65);
    background: rgba(36, 29, 48, 0.58);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-solid);
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Category Grid --- */
.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-item {
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
}

/* --- Clean Lists & Multi-Col --- */
.clean-list {
    list-style: none;
}

.clean-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.clean-list li i {
    width: 20px;
    height: 20px;
    color: var(--accent-solid);
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-style: normal;
    font-weight: bold;
}

.credit-list {
    padding: 3rem;
}

.multi-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* --- Ethics Panels --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ethics-panel {
    padding: 3rem;
}

.ethics-panel h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ethics-panel p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.panel-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.icon-accent {
    color: var(--accent-solid);
}

/* --- Callout Box --- */
.callout-box {
    padding: 4rem 2rem;
}

.callout-box h2 {
    margin-bottom: 1.5rem;
}

.callout-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    padding: 3rem 2rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    position: relative;
    z-index: 2;
}

.legal-hint {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin: 18px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.25);
}

/* --- Mobile Anpassungen --- */
@media (max-width: 768px) {
    body.menu-open { overflow: hidden; }
    .container { padding: 0 1.5rem; }
    .section-padding { padding: 4rem 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions a { width: 100%; }
    .hero-character { display: none !important; }
    .grid-2 { grid-template-columns: 1fr; }
    .content-split { grid-template-columns: 1fr; gap: 2rem; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions a { width: 100%; }
    .nav-container { padding: 0 1.5rem; }
    .burger-menu { display: flex; align-items: center; justify-content: center; }
    
    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background:
            radial-gradient(circle at 80% 28%, rgba(123, 60, 255, 0.18), transparent 45%),
            radial-gradient(circle at 20% 75%, rgba(255, 42, 95, 0.16), transparent 46%),
            rgba(10, 10, 14, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.4s ease-in-out;
        border-top: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.5rem; color: var(--text-main); }
    .nav-links a:hover, .nav-links a.active-link { color: var(--accent-solid); }
    .nav-icon { display: block; width: 28px; height: 28px; color: var(--accent-solid); }
    .text-block, .ethics-panel, .credit-list { padding: 2rem; }
}

@media (max-width: 480px) {
    .container, .nav-container { padding: 0 1rem; }
    .logo-img { height: 31px; }
    .hero { padding: 7rem 1rem 3rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .large { padding: 0.9rem 1.4rem; font-size: 1rem; }
    .nav-links a { font-size: 1.25rem; }
    .text-block, .ethics-panel, .credit-list { padding: 1.5rem; }
    .footer { padding: 2.5rem 1rem; }
}