:root {
    --text-main: #f0f0f5;
    --text-muted: #9aa0a6;
    --accent-gradient: linear-gradient(135deg, #ff2a5f, #ff7e40);
    --accent-solid: #ff2a5f;
    --discord-color: #5865F2;
    --glass-bg: rgba(20, 20, 24, 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-color: #040406;
    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.03) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 1;
}

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

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

.orb-2 {
    width: 500px;
    height: 500px;
    background: #ff7e40;
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

@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;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
}

.btn-discord {
    background-color: var(--discord-color);
    color: #fff;
}

.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.9;
}

.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: 36px;
    width: auto;
    display: block;
}

/* --- Burger Button --- */
.burger-menu {
    display: none;
    cursor: pointer;
    color: var(--text-main);
    transition: color 0.3s ease, transform 0.2s ease;
    z-index: 1100;
}

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

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

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

/* --- Nav Links Desktop --- */
.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 --- */
.hero {
    min-height: 80vh;
    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));
    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;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-solid);
}

.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;
}

.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: #666;
    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);
}

/* --- Legal Pages Impressum / Datenschutz --- */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-card {
    max-width: 1050px;
    margin: 0 auto;
    padding: 42px;
    line-height: 1.75;
}

.legal-card h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}

.legal-card h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.legal-card h3 {
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
    color: rgba(255, 255, 255, 0.78);
}

.legal-card a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-card ul {
    padding-left: 22px;
    margin-top: 10px;
}

.legal-card ul li {
    margin-bottom: 8px;
}

.legal-updated {
    margin-top: 32px;
    font-size: 14px;
    opacity: 0.75;
}

/* --- Tablet Anpassungen --- */
@media (max-width: 1024px) {
    .hero-character {
        right: 32%;
        height: 48vh;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

/* --- Mobile Anpassungen --- */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .container {
        padding: 0 1.5rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 78vh;
        padding: 7rem 1.5rem 3rem;
    }

    .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;
    }

    .text-block,
    .ethics-panel,
    .credit-list {
        padding: 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: 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: 2.5rem;
        transition: left 0.35s ease-in-out;
        border-top: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.45rem;
        color: var(--text-main);
    }

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

    .nav-icon {
        display: block;
        width: 28px;
        height: 28px;
        color: var(--accent-solid);
    }

    .category-item {
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .callout-box {
        padding: 3rem 1.5rem;
    }

    .legal-page {
        padding: 115px 0 60px;
    }

    .legal-card {
        padding: 26px;
    }

    .footer-links {
        gap: 10px;
    }
}

/* --- Kleine Handys --- */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 31px;
    }

    .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,
    .legal-card {
        padding: 1.5rem;
    }

    .footer {
        padding: 2.5rem 1rem;
    }
}