/**
 * Modernes Design für NOHOPE.XYZ
 */

:root {
    --primary-color: #78edf2;
    --primary-dark: #5dd4d9;
    --secondary-color: #2c3e50;
    --bg-dark: #1a1a2e;
    --bg-darker: #0f0f1e;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --card-bg: #16213e;
    --border-color: #2a3a5a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(120, 237, 242, 0.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset für sticky Navigation */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: 
        radial-gradient(ellipse at top left, rgba(120, 237, 242, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(120, 237, 242, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(26, 26, 46, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, var(--bg-darker) 0%, #1a1a2e 30%, #16213e 60%, var(--bg-dark) 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 237, 242, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(120, 237, 242, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(120, 237, 242, 0.02) 0%, transparent 60%);
    background-size: 200% 200%, 200% 200%, 200% 200%;
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(120, 237, 242, 0.01) 2px,
            rgba(120, 237, 242, 0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(120, 237, 242, 0.01) 2px,
            rgba(120, 237, 242, 0.01) 4px
        );
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* Navigation */
.navbar-modern {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(120, 237, 242, 0.1) inset;
    border-bottom: 1px solid rgba(120, 237, 242, 0.15);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.navbar-top {
    display: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 1rem;
}

.navbar-brand img {
    max-height: 52px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(120, 237, 242, 0.2));
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(120, 237, 242, 0.4));
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    padding-left: 2rem;
}

.navbar-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-links a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.navbar-links a:hover::after {
    width: 70%;
}

.navbar-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
    padding-left: 2rem;
    border-left: 1px solid rgba(120, 237, 242, 0.1);
}

/* Mobile Menu Links - Hidden on desktop */
.mobile-menu-links {
    display: none;
}

.navbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(120, 237, 242, 0.08);
    border: 1px solid rgba(120, 237, 242, 0.15);
    opacity: 0.85;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(120, 237, 242, 0.2) 0%, transparent 70%);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.navbar-social a:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
    background: rgba(120, 237, 242, 0.15);
    border-color: rgba(120, 237, 242, 0.4);
    box-shadow: 0 4px 12px rgba(120, 237, 242, 0.25);
}

.navbar-social a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.navbar-social img {
    max-height: 22px;
    max-width: 22px;
    filter: invert(1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.navbar-social a:hover img {
    transform: scale(1.1);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    padding: 0.25rem;
    background: rgba(120, 237, 242, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(120, 237, 242, 0.1);
}

.lang-switcher button {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0.45rem 0.9rem;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    min-width: 40px;
}

.lang-switcher button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 7px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.lang-switcher button:hover {
    color: var(--bg-dark);
    transform: translateY(-1px);
}

.lang-switcher button:hover::before {
    opacity: 1;
}

.lang-switcher button.active {
    color: var(--bg-dark);
    box-shadow: 0 2px 8px rgba(120, 237, 242, 0.3);
}

.lang-switcher button.active::before {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(120, 237, 242, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    z-index: 1;
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    padding: 0 1rem;
}

.hero-content {
    text-align: left;
    animation: fadeInLeft 0.8s ease;
    overflow: visible;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(120, 237, 242, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-banner-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(120, 237, 242, 0.25));
    animation: fadeInRight 1s ease, float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-banner-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 20px 50px rgba(120, 237, 242, 0.35));
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(120, 237, 242, 0.15) 0%, rgba(120, 237, 242, 0.05) 100%);
    border: 1px solid rgba(120, 237, 242, 0.3);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(120, 237, 242, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 237, 242, 0.2);
    border-color: rgba(120, 237, 242, 0.5);
}

.hero-badge-text {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -1px;
    padding-bottom: 0.2em;
    overflow: visible;
}

.hero-title-main {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 40%, var(--primary-color) 80%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease, gradientShift 4s ease infinite;
    position: relative;
    display: inline-block;
    padding-bottom: 0.1em;
    overflow: visible;
}

.hero-subtitle {
    font-size: 1.9rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-weight: 500;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
    line-height: 1.9;
    max-width: 100%;
    animation: fadeInUp 1.2s ease;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.3s ease;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(120, 237, 242, 0.08) 0%, rgba(120, 237, 242, 0.03) 100%);
    border: 1px solid rgba(120, 237, 242, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 130px;
    position: relative;
    overflow: hidden;
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 237, 242, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-feature-item:hover::before {
    left: 100%;
}

.hero-feature-item:hover {
    background: linear-gradient(135deg, rgba(120, 237, 242, 0.15) 0%, rgba(120, 237, 242, 0.08) 100%);
    border-color: rgba(120, 237, 242, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(120, 237, 242, 0.2);
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.hero-feature-item:hover .hero-feature-icon {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.hero-feature-item span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.hero-feature-item:hover span {
    color: var(--primary-color);
}

.hero-cta-container {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(120, 237, 242, 0.3), 0 0 0 0 rgba(120, 237, 242, 0.5);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(120, 237, 242, 0.4), 0 0 30px rgba(120, 237, 242, 0.3);
    color: var(--bg-dark);
}

.hero-cta:active {
    transform: translateY(-2px) scale(1);
}

.hero-cta svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-cta:hover svg {
    transform: translateX(6px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text-light);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(120, 237, 242, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(120, 237, 242, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.hero-cta-secondary:hover::before {
    width: 100%;
}

.hero-cta-secondary:hover {
    background: rgba(120, 237, 242, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(120, 237, 242, 0.2);
}

.hero-cta-secondary:active {
    transform: translateY(-2px);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 50% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.25;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Sections */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Server Cards */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.server-card-hidden {
    display: none;
}

.servers-grid.show-all .server-card-hidden {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.servers-toggle-container {
    margin-top: 3rem;
    text-align: center;
}

.servers-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(120, 237, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.servers-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.servers-toggle-btn:hover::before {
    left: 100%;
}

.servers-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(120, 237, 242, 0.4);
}

.servers-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
}

.servers-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.server-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 33, 62, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.server-card:hover::before {
    opacity: 1;
}

.server-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(22, 33, 62, 0.85) 100%);
}

.server-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.server-card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.server-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.8rem;
    position: relative;
    overflow: hidden;
}

.server-status::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.server-status.online {
    background: linear-gradient(135deg, var(--success-color) 0%, #45a049 100%);
    color: white;
    padding-left: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.server-status.offline {
    background: linear-gradient(135deg, #666 0%, #555 100%);
    color: white;
    padding-left: 1.5rem;
}

.server-info {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Request Form Section */
.request-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 25px;
    padding: 4rem;
    margin-top: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.request-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(120, 237, 242, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.request-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(176, 176, 176, 0.5);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 26, 46, 0.8);
    box-shadow: 0 0 0 4px rgba(120, 237, 242, 0.15), 0 4px 20px rgba(120, 237, 242, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(120, 237, 242, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(120, 237, 242, 0.4);
}

.form-submit:active {
    transform: translateY(-1px) scale(1);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.form-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(120, 237, 242, 0.08);
    border: 1px solid rgba(120, 237, 242, 0.2);
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.form-note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.form-note-content {
    flex: 1;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-note-content strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-note-content ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
    list-style-type: disc;
}

.form-note-content li {
    margin-bottom: 0.4rem;
    color: var(--text-gray);
}

.form-note-content li:last-child {
    margin-bottom: 0;
}

/* Community Section */
.community-container {
    margin-top: 3rem;
}

.community-discord-widget {
    margin-bottom: 3rem;
}

.discord-widget-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.discord-widget-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.discord-widget-card h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.discord-widget-iframe {
    width: 100%;
    min-height: 500px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.discord-widget-placeholder {
    background: rgba(26, 26, 46, 0.6);
    border: 1.5px dashed var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: var(--text-gray);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-join-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
    letter-spacing: 0.5px;
}

.discord-join-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
    color: white;
    text-decoration: none;
}

.discord-join-button:active {
    transform: translateY(-1px) scale(1);
}

.community-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.community-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 33, 62, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.community-card:hover::before {
    opacity: 1;
}

.community-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(22, 33, 62, 0.85) 100%);
    text-decoration: none;
    color: inherit;
}

.community-card img {
    max-height: 50px;
    margin-bottom: 1rem;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.community-card:hover img {
    transform: scale(1.1);
}

.community-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.community-card:hover h3 {
    color: var(--primary-color);
}

.community-link-text {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.community-link-text::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.community-card:hover .community-link-text {
    transform: translateX(5px);
}

.community-card:hover .community-link-text::after {
    transform: translateX(5px);
}

/* Footer */
.footer-modern {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 5rem;
}

.footer-modern p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
        grid-template-columns: 1fr 0.9fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 75vh;
        padding: 4rem 1rem 3rem;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-title-main::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-features {
        gap: 1rem;
        justify-content: center;
        margin-bottom: 2.5rem;
    }
    
    .hero-feature-item {
        min-width: 100px;
        padding: 1rem 1.2rem;
    }
    
    .hero-feature-icon {
        font-size: 2.2rem;
    }
    
    .hero-cta-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-cta,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }
    
    .navbar-container {
        padding: 0 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .navbar-links {
        display: none;
    }
    
    .navbar-social {
        display: none;
    }
    
    .mobile-menu-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .mobile-menu-links.active {
        right: 0;
    }
    
    .mobile-menu-links a {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.1rem;
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
    }
    
    /* Entferne border-bottom vom letzten Link vor der Sprachauswahl */
    .mobile-menu-links a:last-of-type {
        border-bottom: none;
    }
    
    .mobile-menu-links a::after {
        display: none;
    }
    
    .mobile-menu-links .lang-switcher {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border-color);
    }
    
    .mobile-menu-links .lang-switcher button {
        flex: 1;
        text-align: center;
    }
    
    .mobile-social {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
        width: 100%;
        justify-content: center;
    }
    
    .mobile-social a {
        opacity: 0.8;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-social a:hover {
        opacity: 1;
        transform: scale(1.1);
    }
    
    .mobile-social img {
        max-height: 30px;
        filter: invert(1);
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .discord-widget-card {
        padding: 1.5rem;
    }
    
    .discord-widget-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .discord-widget-iframe {
        min-height: 400px;
    }
    
    .discord-widget-placeholder {
        min-height: 400px;
        padding: 2rem;
    }
    
    .community-links-grid {
        grid-template-columns: 1fr;
    }
    
    .servers-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .server-card {
        width: 100%;
        max-width: 100%;
    }
    
    .servers-toggle-container {
        margin-top: 2rem;
        text-align: center;
    }
    
    .servers-toggle-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: var(--bg-dark);
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(120, 237, 242, 0.3);
        position: relative;
        overflow: hidden;
        width: 100%;
        justify-content: center;
    }
    
    .servers-toggle-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s ease;
    }
    
    .servers-toggle-btn:hover::before {
        left: 100%;
    }
    
    .servers-toggle-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(120, 237, 242, 0.4);
    }
    
    .servers-toggle-btn .toggle-icon {
        transition: transform 0.3s ease;
    }
    
    .servers-toggle-btn.active .toggle-icon {
        transform: rotate(180deg);
    }
    
    .servers-toggle-container {
        margin-top: 2rem;
        text-align: center;
    }
    
    .servers-toggle-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: var(--bg-dark);
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(120, 237, 242, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .servers-toggle-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s ease;
    }
    
    .servers-toggle-btn:hover::before {
        left: 100%;
    }
    
    .servers-toggle-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(120, 237, 242, 0.4);
    }
    
    .servers-toggle-btn .toggle-icon {
        transition: transform 0.3s ease;
    }
    
    .servers-toggle-btn.active .toggle-icon {
        transform: rotate(180deg);
    }
    
    .request-section {
        padding: 2rem 1.5rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .servers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Discord Widget */
.discord-widget {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

/* Server List */
.server-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.server-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.server-item-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.server-item-info {
    flex: 1;
}

.server-item-title {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.server-item-details {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Mobile Social - Hidden on desktop */
.mobile-social {
    display: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 33, 62, 0.95) 100%);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-banner-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(120, 237, 242, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 237, 242, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.cookie-btn-decline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(120, 237, 242, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ko-Fi Section */
.kofi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.kofi-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 33, 62, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.kofi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.kofi-card:hover::before {
    opacity: 1;
}

.kofi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.kofi-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.kofi-embed iframe {
    border-radius: 10px;
    width: 100%;
}

.kofi-progress-container {
    margin: 2rem 0;
}

.kofi-progress-text {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.5rem 0;
    text-align: center;
}

.kofi-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
    background-color: transparent;
}

.kofi-info-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.kofi-info-text p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.kofi-info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kofi-info-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.kofi-thanks {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin-top: 1.5rem !important;
}

.kofi-supporter-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.kofi-supporter-list::-webkit-scrollbar {
    width: 6px;
}

.kofi-supporter-list::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 10px;
}

.kofi-supporter-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.kofi-supporter-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@media (max-width: 1024px) {
    .kofi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kofi-embed {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .kofi-grid {
        grid-template-columns: 1fr;
    }
    
    .kofi-card {
        padding: 2rem 1.5rem;
    }
    
    .kofi-supporter-list {
        max-height: 400px;
    }
}
