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

.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 & Split Layout --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-side {
    position: relative;
    z-index: 5;
}

.hero-text-side .badge {
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}

.hero-image-side {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.char-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--accent-solid);
    filter: blur(140px);
    border-radius: 50%;
    opacity: 0.25;
    z-index: 0;
}

.hero-character {
    position: relative;
    top: 60px;
    z-index: 2;
    height: 140%;
    max-height: 900px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    z-index: 3;
    background: rgba(29, 29, 38, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-1 {
    top: 15%;
    left: -15%;
    animation: float1 5s ease-in-out infinite;
}

.stat-2 {
    bottom: 15%;
    right: -5%;
    animation: float2 6s ease-in-out infinite reverse;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* --- 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;
}

/* --- Feature Showcase --- */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-showcase.reverse .showcase-image {
    order: 1;
}

.feature-showcase.reverse .showcase-text {
    order: 2;
}

.showcase-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.showcase-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.showcase-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.compact-features {
    margin-top: 6rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

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

.small-grid .feature-card {
    padding: 1.5rem;
}

.small-grid .feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.small-grid .feature-card p {
    font-size: 0.9rem;
}

.small-grid .feature-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1rem;
}

/* --- 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: #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-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .hero-actions a {
        width: auto;
    }

    .hero-image-side {
        height: 450px;
        order: -1; /* Bild auf Mobile nach oben */
    }

    .hero-character {
        display: block !important;
        height: 100%;
    }

    .stat-1 {
        top: 5%;
        left: 0;
    }

    .stat-2 {
        bottom: 5%;
        right: 0;
    }

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

    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .feature-showcase.reverse .showcase-image,
    .feature-showcase .showcase-image {
        order: -1;
    }

    .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 {
        padding: 0 1rem;
    }

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