/*----------------------------------------------------------
WICHTIG: Kopiert euer script zwischen den beiden Kommentaren 
eurer File name muss darüber stehen! 
Für Footer und Header einfach aus Team.html kopieren
----------------------------------------------------------*/

/* footer */
footer {
    background-color: #161916;
    border-top: 1px solid #222;
    padding: 30px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.footer-left a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-left a:hover { opacity: 1; }

.footer-socials a {
    color: #888;
    font-size: 1.4rem;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-socials a:hover { color: var(--accent); }

/* header */
.site-header {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
}
.site-announcement {
    background: linear-gradient(90deg, rgba(74,222,128,0.2), rgba(74,222,128,0.08));
    border-bottom: 1px solid rgba(74,222,128,0.28);
    color: var(--text-main);
}
.site-announcement.hidden {
    display: none;
}
.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}
.announcement-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}
.announcement-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}
.announcement-close:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.logo a {
    display: inline-flex;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    /* no background icon anymore, use explicit <img> for clarity */
    padding-left: 0;
    background: none;
}

/* helper when using actual img element */
.logo a .logo-img {
    height: auto;
    width: 45px;
    max-width: 100%;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}

.logo a span { color: var(--accent); margin-left: 6px; }
.site-nav { display: flex; gap: 18px; align-items: center; }
.site-nav a { color: var(--text-muted); text-decoration: none; padding: 8px 12px; border-radius: 8px; transition: background 0.2s, color 0.2s; }
.site-nav a.active, .site-nav a:hover { color: var(--text-main); background: rgba(74,222,128,0.04); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn { background: transparent; border: 1px solid var(--border); color: var(--text-main); padding: 6px 10px; border-radius: 8px; cursor: pointer; }

/* language flag buttons (inline) */
.language-switch { display: flex; gap: 6px; }
.language-switch .lang-btn { padding: 6px 8px; font-size: 1.05rem; border-radius: 8px; }
.language-switch .lang-btn.active { background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.2); }

/* Login icon in header */
.login-link { display: inline-flex; align-items: center; justify-content: center; padding: 6px 8px; border-radius: 8px; color: var(--text-main); border: 1px solid transparent; text-decoration: none; }
.login-link i { font-size: 1.05rem; }
.login-link:hover { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.04); }

/* Login page modern styles */
.login-page {
    display: flex;
    justify-content: center;
    padding: 80px 20px 120px;
}

.login-panel {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(180deg, rgba(22,25,22,0.9), rgba(16,18,16,0.9));
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    padding: 36px;
    border-radius: 14px;
    text-align: center;
}

.login-panel h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--text-main);
}

.login-panel .input-group { text-align:left; margin-bottom:14px; }
.login-panel .input-group label { display:block; margin-bottom:8px; color:var(--text-muted); font-size:0.9rem; }
.login-panel .input-group input { width:100%; padding:12px 14px; border-radius:8px; border:1px solid var(--border); background:rgba(0,0,0,0.2); color:var(--text-main); }

.auth-row { display:flex; gap:12px; margin-top:18px; justify-content:center; flex-wrap:wrap; }
.auth-btn { flex:1 1 160px; display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:14px 18px; border-radius:10px; font-weight:700; letter-spacing:0.6px; border:2px solid transparent; cursor:pointer; transition:all 0.25s ease; }
.auth-btn.primary { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }
.auth-btn.outline { background: transparent; color: var(--text-main); border-color: var(--border); }
.auth-btn.google { background: linear-gradient(90deg,#fff,#f0f0f0); color:#222; border-color: rgba(0,0,0,0.06); }
.auth-btn i { font-size:1.05rem; }

.login-note { margin-top:16px; color:var(--text-muted); font-size:0.95rem; }

@media (max-width:480px) {
    .login-panel { padding:20px; border-radius:10px; }
    .auth-btn { padding:12px; font-size:0.95rem; }
    .login-page { padding:40px 12px 80px; }
}

/* small-screen overall improvements */
@media (max-width: 480px) {
    /* scale logo down and tighten spacing */
    .logo a .logo-img {
        width: 40px !important;
        height: auto;
        margin-right: 6px;
    }
    .header-inner {
        padding: 6px 10px;
        gap: 8px;
    }
    .site-header {
        padding: 8px 0;
    }
    .site-nav a {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
    .intro h1 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    .intro p {
        font-size: 0.9rem;
    }
    .content-area.container {
        padding: 16px 10px;
    }
    section {
        margin: 30px 0;
    }
    .what-we-make ul,
    .values-section ul,
    .cta-section ul {
        padding-left: 16px;
    }
    /* allow logo text to wrap below icon if narrow */
    .logo a { flex-wrap: wrap; justify-content: center; }
}

/* Hamburger / mobile */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: pointer;
    position: relative;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

/* transform hamburger into X when open */
.hamburger.open span:nth-child(1) {
    position: absolute;
    transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    position: absolute;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .announcement-inner {
        align-items: flex-start;
    }
    .announcement-text {
        font-size: 0.9rem;
    }
    .site-nav {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
        border-bottom: 1px solid var(--border);
        transition: max-height 0.35s ease, padding 0.35s ease;
        z-index: 1000;
    }
    .site-nav.open { max-height: 400px; padding: 14px 20px; }
    .site-nav a { padding: 12px 10px; border-radius: 6px; }
    .hamburger { display: flex; }
    .header-inner { position: relative; }
}

/* ============================================
   INDEX.HTML - HOMEPAGE STYLES
   ============================================ */

/* Override intro for homepage with hero effects */
index.html .intro,
.intro {
    text-align: center;
    margin: 80px 0 60px;
}

/* HOME PAGE - Hero style intro */
.content-area > .intro {
    padding: 100px 20px 80px;
    background: transparent;
    border-bottom: 1px solid var(--border);
    margin: 0 -20px 60px -20px;
    animation: fadeInDown 0.8s ease;
    position: relative;
    overflow: hidden;
}

.content-area > .intro h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.content-area > .intro p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Styles */
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section {
    padding: 80px 20px;
    border-bottom: 1px solid var(--border);
    animation: fadeInUp 0.8s ease;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.about-section { animation-delay: 0.1s; }
.what-we-make { animation-delay: 0.2s; }
.values-section { animation-delay: 0.3s; }
.tech-section { animation-delay: 0.4s; }
.cta-section { animation-delay: 0.5s; }
.contact-section { animation-delay: 0.6s; }
.closing-section { animation-delay: 0.7s; }

.about-section h2,
.what-we-make h2,
.values-section h2,
.tech-section h2,
.cta-section h2,
.contact-section h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.about-section h2::after,
.what-we-make h2::after,
.values-section h2::after,
.tech-section h2::after,
.cta-section h2::after,
.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.about-section p,
.tech-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 850px;
}

/* List Styles */
.what-we-make ul,
.values-section ul,
.cta-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-we-make li,
.values-section li,
.cta-section li {
    padding: 20px 0 20px 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(74, 222, 128, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.what-we-make li:before,
.cta-section li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

.values-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.what-we-make li:last-child,
.values-section li:last-child,
.cta-section li:last-child {
    border-bottom: none;
}

.what-we-make li:hover,
.values-section li:hover,
.cta-section li:hover {
    color: var(--accent);
    padding-left: 50px;
    background: rgba(74, 222, 128, 0.05);
    margin-left: -40px;
    padding-left: 90px;
}

.values-section li strong {
    color: var(--accent);
    font-weight: 700;
}

/* Highlights Box */
.highlights {
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: 16px;
    padding: 35px;
    margin-top: 50px;
    animation: slideInRight 0.8s ease;
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.1);
}

.highlights h3 {
    color: var(--accent);
    margin: 0 0 18px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.highlights p {
    color: var(--text-main);
    font-size: 1.15rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.6;
}

/* Contact Section Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #5dd896 100%);
    color: var(--bg-dark);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 30px 0;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.4);
    background: linear-gradient(135deg, #5dd896 0%, #4ade80 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

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

.social-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 30px;
}

/* Section Links */
.section-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 25px;
    padding: 10px 20px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.section-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent);
    border-radius: 6px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.section-link:hover {
    color: var(--bg-dark);
    opacity: 1;
}

.section-link:hover::before {
    opacity: 1;
}

/* Closing Section */
.closing-section {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.12) 0%, rgba(74, 222, 128, 0.06) 100%);
    border-bottom: none;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.closing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.closing-section p {
    font-size: 1.35rem;
    color: var(--text-main);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

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

/* Mobile Responsiveness for Homepage */
@media (max-width: 768px) {
    .content-area > .intro {
        padding: 70px 20px 60px;
        margin: 0 -20px 50px -20px;
    }

    .content-area > .intro h1 {
        font-size: 2.5rem;
    }

    .content-area > .intro p {
        font-size: 1.1rem;
    }

    .about-section,
    .what-we-make,
    .values-section,
    .tech-section,
    .cta-section,
    .contact-section,
    .closing-section {
        padding: 60px 20px;
    }

    .about-section h2,
    .what-we-make h2,
    .values-section h2,
    .tech-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .about-section p,
    .tech-section p {
        font-size: 1.05rem;
    }

    .what-we-make li,
    .values-section li,
    .cta-section li {
        padding: 16px 0 16px 35px;
        font-size: 1.05rem;
    }

    .what-we-make li:hover,
    .values-section li:hover,
    .cta-section li:hover {
        padding-left: 45px;
    }

    .highlights {
        padding: 28px;
        margin-top: 40px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 0.95rem;
    }

    .closing-section {
        padding: 70px 20px;
    }

    .closing-section p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .announcement-inner {
        gap: 12px;
        padding: 10px 0;
    }
    .announcement-close {
        width: 32px;
        height: 32px;
    }
    .content-area > .intro {
        padding: 50px 15px 40px;
        margin: 0 -15px 40px -15px;
    }

    .content-area > .intro h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .content-area > .intro p {
        font-size: 1rem;
    }

    .about-section,
    .what-we-make,
    .values-section,
    .tech-section,
    .cta-section,
    .contact-section,
    .closing-section {
        padding: 40px 15px;
    }

    .about-section h2,
    .what-we-make h2,
    .values-section h2,
    .tech-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .about-section p,
    .tech-section p {
        font-size: 1rem;
    }

    .what-we-make li,
    .values-section li,
    .cta-section li {
        padding: 14px 0 14px 32px;
        font-size: 1rem;
    }

    .what-we-make li:hover,
    .values-section li:hover,
    .cta-section li:hover {
        padding-left: 40px;
    }

    .highlights {
        padding: 22px;
        margin-top: 30px;
    }

    .highlights h3 {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .highlights p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .social-text {
        font-size: 1rem;
    }

    .closing-section {
        padding: 50px 15px;
    }

    .closing-section p {
        font-size: 1.1rem;
    }
}

/* contact.html */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
}

.terminal-window {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.terminal-header {
    background: rgba(255,255,255,0.05);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(74,222,128,0.4);
}

.terminal-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 8px;
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 30px;
    color: var(--text-main);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: var(--accent);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 14px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(74,222,128,0.08);
    box-shadow: 0 0 0 3px rgba(74,222,128,0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.terminal-submit {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 8px;
}

.terminal-submit:hover {
    background: #5dd896;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74,222,128,0.35);
}

.terminal-submit:active {
    transform: translateY(0);
}

/* projects.html */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin: 60px 0;
    animation: fadeInUp 0.8s ease;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
}

.project-header h2 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    flex: 1;
}

.project-status {
    background: rgba(255, 196, 2, 0.15);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2002;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-header {
    padding: 30px 30px 0 30px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
}

.modal-header h2 {
    color: var(--text-main);
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

.modal-close-btn {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 25px 20px 0 20px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 15px 20px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }
}

.mechanics-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.mechanics-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 8px 0 8px 25px;
    position: relative;
    margin: 0;
    border: none;
}

.mechanics-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.project-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(74, 222, 128, 0.08);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(74, 222, 128, 0.2);
    transition: all 0.25s ease;
}

.tag:hover {
    background: rgba(74, 222, 128, 0.15);
    border-color: var(--accent);
}

.project-link {
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent) 0%, #5dd896 100%);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
    cursor: pointer;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5dd896 0%, #7be49a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}


.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.5);
}

.project-link:hover::before {
    opacity: 1;
}

.empty-state-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 40px 0;
}

.empty-state-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Highlight Link styling */
.highlight-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 0;
    border-bottom: 2px solid var(--accent);
}

.highlight-link:hover {
    opacity: 0.8;
}

/* ============================================
   MOBILE OPTIMIZATION - ALL DEVICES
   ============================================ */

/* Mobile First - Extra Small Devices (< 375px) */
@media (max-width: 374px) {
    .intro {
        margin: 40px 0 30px;
    }

    .intro h1 {
        font-size: 1.8rem;
    }

    .intro p {
        font-size: 0.9rem;
    }

    .site-nav a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .about-section h2,
    .what-we-make h2,
    .values-section h2,
    .tech-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.4rem;
    }

    .project-card {
        padding: 18px;
    }

    .project-header h2 {
        font-size: 1.1rem;
    }

    .projects-container {
        gap: 15px;
    }

    .member-card {
        padding: 18px 12px;
    }

    .avatar-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .modal-header {
        padding: 20px 15px 0 15px;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-footer {
        padding: 12px 15px;
    }
}

/* Small Devices (375px - 480px) */
@media (min-width: 375px) and (max-width: 480px) {
    .intro {
        margin: 50px 0 35px;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 18px;
    }

    body {
        font-size: 15px;
    }

    .site-nav a {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .about-section,
    .what-we-make,
    .values-section,
    .tech-section,
    .cta-section,
    .contact-section,
    .closing-section {
        padding: 40px 18px;
    }

    .about-section h2,
    .what-we-make h2,
    .values-section h2,
    .tech-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .what-we-make li,
    .values-section li,
    .cta-section li {
        padding: 12px 0 12px 28px;
        font-size: 0.95rem;
    }

    .project-card {
        padding: 22px;
    }

    .projects-container {
        gap: 20px;
        margin: 30px 0;
    }

    .team-grid {
        gap: 18px;
        margin-bottom: 50px;
    }

    .member-card {
        padding: 20px 15px;
    }

    .avatar-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .modal-header {
        padding: 22px 18px 0 18px;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 18px;
    }

    .modal-body h3 {
        font-size: 1.05rem;
    }

    .modal-footer {
        padding: 15px 18px;
    }
}

/* Medium Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .intro {
        margin: 60px 0 45px;
    }

    .intro h1 {
        font-size: 2.3rem;
    }

    .intro p {
        font-size: 1.05rem;
    }

    .container {
        padding: 0 20px;
    }

    .site-nav a {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .about-section,
    .what-we-make,
    .values-section,
    .tech-section,
    .cta-section,
    .contact-section,
    .closing-section {
        padding: 50px 20px;
    }

    .about-section h2,
    .what-we-make h2,
    .values-section h2,
    .tech-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.9rem;
        margin-bottom: 22px;
    }

    .what-we-make li,
    .values-section li,
    .cta-section li {
        padding: 14px 0 14px 32px;
        font-size: 1rem;
    }

    .projects-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        margin: 50px 0;
    }

    .project-card {
        padding: 25px;
    }

    .team-grid {
        gap: 22px;
        margin-bottom: 60px;
    }

    .member-card {
        padding: 28px 18px;
    }

    .avatar-wrapper {
        width: 85px;
        height: 85px;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .cta-button {
        padding: 13px 32px;
        font-size: 0.92rem;
    }

    .highlights {
        padding: 25px;
        margin-top: 35px;
    }

    .closing-section p {
        font-size: 1.15rem;
    }

    .modal-content {
        max-width: 600px;
        width: 90%;
    }

    .modal-header {
        padding: 25px 25px 0 25px;
    }

    .modal-header h2 {
        font-size: 1.7rem;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-footer {
        padding: 18px 25px;
    }
}
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }

    .project-card {
        padding: 25px;
    }

    .project-header h2 {
        font-size: 1.3rem;
    }

    .project-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .projects-container {
        gap: 20px;
        margin: 30px 0;
    }

    .project-card {
        padding: 20px;
    }

    .project-header {
        flex-direction: column;
        gap: 10px;
    }

    .project-header h2 {
        font-size: 1.2rem;
    }

    .project-status {
        align-self: flex-start;
    }

    .project-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .project-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* wiki.html */

/* news.html */
.news-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0;
}

.news-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.05);
}

.news-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.news-header h2 {
    color: var(--text-main);
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    line-height: 1.3;
}

.news-date {
    color: var(--accent);
    font-size: 0.9rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.news-content p {
    margin: 0 0 20px 0;
    color: var(--text-muted);
}

.news-content p:last-child {
    margin-bottom: 0;
}

.news-signature {
    color: var(--text-main) !important;
    font-weight: 600;
    font-style: italic;
    margin-top: 30px !important;
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 222, 128, 0.2);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 500px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-state h2 {
    color: var(--text-main);
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* News Cards wenn später hinzugefügt */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.news-card-image {
    width: 100%;
    height: 200px;
    background: #1a1d1a;
    object-fit: cover;
}

.news-card-content {
    padding: 25px;
}

.news-card-date {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    color: var(--text-main);
    margin: 10px 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.news-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
}

.news-card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.news-card-link:hover {
    opacity: 0.8;
}

:root {
    --bg-dark: #0f110f;
    --card-bg: #161916;
    --text-main: #ffffff;
    --text-muted: #888;
    --accent: #4ade80; 
    --border: #222;
}

html, body {
    height: 100%;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-dark);
}

.content-area {
    flex: 1;
}

.intro { text-align: center; margin: 80px 0 60px; }
h1 span { color: var(--accent); }

.search-container input {
    width: 100%;
    max-width: 450px;
    background: #1a1d1a;
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: border 0.3s;
}

.search-container input:focus {
    border-color: var(--accent);
    outline: none;
}

.category-title {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 3px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

.member-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.avatar-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    padding: 5px;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.specialty {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.85rem;
    margin: 10px 0 20px;
}

.status-box {
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.email {
    color: var(--accent);
    font-size: 0.9rem;
    margin: 0 0 15px;
    font-weight: 500;
    word-break: break-all;
}

/* team.html */
:root {
    --bg-dark: #0f110f;
    --card-bg: #161916;
    --text-main: #ffffff;
    --text-muted: #888;
    --accent: #4ade80; 
    --border: #222;
}

/* Sticky Footer Fix */
html, body {
    height: 100%;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-dark);
}

.content-area {
    flex: 1; /* Schiebt den Footer nach unten */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Deine Team-spezifischen Styles */
/*----------------------------------------------------------
   TEAM.HTML - FINALES LAYOUT FIX
----------------------------------------------------------*/

/* 1. Container & Intro */
.intro {
    text-align: center;
    margin: 60px 0 40px; /* Etwas kompakterer Abstand oben */
}

    .intro h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

/* 2. Das Grid (WICHTIG!) */
.team-grid {
    display: grid;
    /* Erlaubt Karten nebeneinander (min 280px breit) */
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    /* Zentriert das gesamte Grid im Inhaltsbereich */
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px; /* Verhindert, dass das Grid zu breit auseinanderfällt */
    margin: 0 auto 80px; /* Zentriert den Grid-Block selbst */
}

/* 3. Karten-Feinschliff */
.member-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .member-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent);
    }

.avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--border);
    padding: 3px;
    background: rgba(255,255,255,0.02);
}

    .avatar-wrapper img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

/* Status/Datum Box unten in der Karte */
.status-box {
    margin-top: auto; /* Schiebt die Box immer nach ganz unten in der Karte */
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* MOBILE OPTIMIZATION FOR TEAM.HTML */
@media (max-width: 640px) {
    .intro {
        margin: 40px 0 30px;
    }

    .intro h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .intro p {
        font-size: 0.95rem;
    }

    .search-container {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .search-container input {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .category-title {
        font-size: 1rem;
        letter-spacing: 2px;
        padding-left: 12px;
        margin-bottom: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .member-card {
        padding: 25px 16px;
    }

    .member-card h3 {
        font-size: 1.1rem;
        margin: 12px 0 6px;
    }

    .member-card .role {
        font-size: 0.85rem;
    }

    .member-card .specialty {
        font-size: 0.8rem;
        margin: 8px 0 16px;
    }

    .avatar-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .status-box {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .intro {
        margin: 30px 0 20px;
    }

    .intro h1 {
        font-size: 1.5rem;
    }

    .search-container input {
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    .team-grid {
        gap: 15px;
        margin-bottom: 40px;
    }

    .member-card {
        padding: 20px 12px;
    }

    .avatar-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .member-card h3 {
        font-size: 1rem;
    }

    body {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .terminal-window {
        border-radius: 8px;
    }

    .terminal-body {
        padding: 20px;
    }

    .contact-form {
        gap: 16px;
    }

    .input-group label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .input-group input,
    .input-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .input-group textarea {
        min-height: 120px;
    }

    .terminal-submit {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Under Construction Page */
.under-construction {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.construction-content {
    text-align: center;
    max-width: 500px;
}

.construction-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

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

.construction-content h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(74, 222, 128, 0.2);
}

.construction-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.maintenance-admin-box {
    margin-top: 32px;
}

.maintenance-admin-form {
    margin-top: 20px;
    text-align: left;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.maintenance-admin-msg {
    margin: 14px 0 0;
    color: var(--text-main);
    font-size: 0.95rem;
}

.construction-progress {
    width: 100%;
    height: 4px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), rgba(74, 222, 128, 0.4));
    width: 65%;
    border-radius: 2px;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 45%;
    }
    50% {
        width: 75%;
    }
    100% {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .construction-content h1 {
        font-size: 2rem;
    }

    .construction-content p {
        font-size: 1rem;
    }

    .construction-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .under-construction {
        min-height: 50vh;
        padding: 30px 15px;
    }

    .construction-content h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .construction-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .construction-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 25, 22, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--accent);
    padding: 20px;
    z-index: 2000;
    animation: slideInUp 0.4s ease-out;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.hidden {
    animation: slideOutDown 0.4s ease-out forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-message {
    flex: 1;
}

.cookie-title {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: transparent;
    font-family: inherit;
}

.cookie-reject {
    color: var(--text-muted);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
    color: var(--text-main);
}

.cookie-accept {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.cookie-accept:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
        gap: 10px;
    }

    .cookie-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px 12px;
    }

    .cookie-content {
        gap: 12px;
    }

    .cookie-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .cookie-text {
        font-size: 0.9rem;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-btn {
        width: 100%;
        padding: 9px 12px;
        font-size: 0.8rem;
    }
}

/* Impressum Page */
.impressum-hero {
    text-align: center;
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

.impressum-hero h1 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(74, 222, 128, 0.2);
}

.impressum-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.impressum-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 60px;
}

.impressum-box {
    background: rgba(74, 222, 128, 0.02);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.impressum-box:hover {
    background: rgba(74, 222, 128, 0.05);
    border-color: var(--accent);
    transform: translateX(5px);
}

.impressum-title {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.impressum-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.impressum-text p {
    margin: 15px 0;
    line-height: 1.8;
}

.impressum-text a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.impressum-text a:hover {
    border-bottom-color: var(--accent);
    opacity: 0.8;
}

.impressum-text strong {
    color: var(--text-main);
}

/* Impressum Responsive */
@media (max-width: 768px) {
    .impressum-hero {
        padding: 60px 0 40px;
        margin-bottom: 40px;
    }

    .impressum-hero h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .impressum-hero .hero-subtitle {
        font-size: 1rem;
    }

    .impressum-box {
        padding: 30px;
        gap: 20px;
    }

    .impressum-title {
        font-size: 1.3rem;
    }

    .impressum-text {
        font-size: 0.95rem;
    }

    .impressum-content {
        gap: 30px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .impressum-hero {
        padding: 40px 0 30px;
        margin-bottom: 30px;
    }

    .impressum-hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .impressum-hero .hero-subtitle {
        font-size: 0.9rem;
    }

    .impressum-box {
        padding: 20px;
        border-left-width: 3px;
    }

    .impressum-title {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .impressum-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .impressum-text p {
        margin: 12px 0;
    }

    .impressum-content {
        gap: 20px;
        padding-bottom: 30px;
    }
}

/* ============================================
   LIQUID GLASS REDESIGN
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg-dark: #061913;
    --bg-deep: #04110d;
    --card-bg: rgba(125, 214, 176, 0.08);
    --card-strong: rgba(125, 214, 176, 0.12);
    --glass-border: rgba(180, 240, 214, 0.18);
    --glass-highlight: rgba(255, 255, 255, 0.28);
    --text-main: #f3fff8;
    --text-muted: rgba(221, 238, 229, 0.72);
    --accent: #63d8a4;
    --accent-strong: #8ce8bf;
    --border: rgba(125, 214, 176, 0.14);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.28);
    --shadow-glow: 0 0 0 1px rgba(255,255,255,0.03), 0 22px 80px rgba(66, 172, 132, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    background:
        radial-gradient(circle at 14% 18%, rgba(113, 219, 170, 0.16), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(88, 173, 125, 0.11), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(93, 186, 141, 0.09), transparent 28%),
        linear-gradient(160deg, #04150f 0%, #062018 38%, #04140f 100%);
    background-attachment: fixed;
}

.site-wrapper {
    position: relative;
    overflow-x: clip;
    background: transparent;
}

.site-wrapper::before,
.site-wrapper::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}

.site-wrapper::before {
    width: 32rem;
    height: 32rem;
    top: -10rem;
    right: -8rem;
    background: radial-gradient(circle, rgba(117, 221, 171, 0.14), rgba(117, 221, 171, 0.02) 60%, transparent 70%);
    animation: floatBlobA 18s ease-in-out infinite;
}

.site-wrapper::after {
    width: 26rem;
    height: 26rem;
    left: -8rem;
    bottom: 8rem;
    background: radial-gradient(circle, rgba(74, 156, 112, 0.12), rgba(74, 156, 112, 0.015) 62%, transparent 72%);
    animation: floatBlobB 22s ease-in-out infinite;
}

.site-header,
.site-announcement,
footer,
.cookie-banner,
.login-panel,
.terminal-window,
.project-card,
.news-item,
.member-card,
.empty-state,
.highlights,
.impressum-box,
.construction-content,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section {
    position: relative;
    z-index: 1;
}

.site-announcement,
.site-header,
footer,
.cookie-banner {
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.site-announcement {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
        linear-gradient(90deg, rgba(105,240,174,0.18), rgba(105,240,174,0.05));
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08);
}

.announcement-inner {
    padding: 14px 0;
}

.announcement-close,
.lang-btn,
.login-link,
.site-nav a,
.cta-button,
.auth-btn,
.cookie-btn,
.terminal-submit,
.project-link {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 12px 30px rgba(0,0,0,0.18);
}

.announcement-close::before,
.lang-btn::before,
.login-link::before,
.site-nav a::before,
.cta-button::before,
.auth-btn::before,
.cookie-btn::before,
.terminal-submit::before,
.project-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.22), transparent 45%, rgba(255,255,255,0.08));
    opacity: 0.9;
    pointer-events: none;
}

.site-header {
    margin: 14px auto 0;
    width: min(1180px, calc(100% - 24px));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.18);
}

.header-inner {
    padding: 16px 22px;
}

.logo a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.02rem;
    letter-spacing: 0.02em;
}

.logo a .logo-img {
    width: 48px;
    border-radius: 18px;
    padding: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.site-nav {
    gap: 10px;
}

.site-nav a,
.lang-btn,
.login-link {
    border-radius: 999px;
    color: var(--text-main);
}

.site-nav a {
    padding: 10px 16px;
}

.site-nav a.active,
.site-nav a:hover,
.lang-btn.active,
.lang-btn:hover,
.login-link:hover {
    color: var(--text-main);
    border-color: rgba(151,255,208,0.34);
    background: linear-gradient(180deg, rgba(151,255,208,0.18), rgba(255,255,255,0.08));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 16px 34px rgba(61, 173, 124, 0.2);
}

.content-area {
    position: relative;
    z-index: 1;
}

.content-area > .intro,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section,
.impressum-box,
.terminal-window,
.login-panel,
.empty-state,
.construction-content {
    border: 1px solid rgba(255,255,255,0.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
        linear-gradient(180deg, rgba(105,240,174,0.06), rgba(105,240,174,0.02));
    border-radius: 32px;
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.16);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
}

.content-area > .intro {
    margin: 20px 0 38px;
    padding: 96px 34px 88px;
    overflow: hidden;
}

.content-area > .intro::before,
.content-area > .intro::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.content-area > .intro::before {
    width: 18rem;
    height: 18rem;
    left: -4rem;
    top: -3rem;
    background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 68%);
}

.content-area > .intro::after {
    width: 26rem;
    height: 26rem;
    right: -7rem;
    bottom: -12rem;
    background: radial-gradient(circle, rgba(105,240,174,0.18), transparent 65%);
}

.content-area > .intro h1,
.section-title,
.about-section h2,
.what-we-make h2,
.values-section h2,
.tech-section h2,
.cta-section h2,
.contact-section h2,
.impressum-hero h1,
.construction-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.04em;
    text-transform: none;
}

.content-area > .intro h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 0.95;
    text-shadow: 0 10px 35px rgba(0,0,0,0.24);
}

.content-area > .intro p,
.about-section p,
.tech-section p,
.contact-section p,
.social-text,
.news-content,
.impressum-text,
.construction-content p {
    color: var(--text-muted);
}

.discord-section {
    position: relative;
    margin: 0 0 26px;
    padding: 38px 34px;
    overflow: hidden;
    border-radius: 38px;
    border: 1px solid rgba(141, 223, 179, 0.14);
    background:
        linear-gradient(180deg, rgba(20, 49, 39, 0.9), rgba(8, 22, 17, 0.78)),
        linear-gradient(0deg, rgba(85, 146, 82, 0.18) 0 6%, transparent 6%),
        radial-gradient(circle at 18% 16%, rgba(148, 228, 181, 0.1), transparent 24%),
        radial-gradient(circle at 84% 76%, rgba(90, 167, 117, 0.12), transparent 28%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 26px 56px rgba(0,0,0,0.24),
        0 0 0 1px rgba(98, 214, 161, 0.04);
}

.discord-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(180, 255, 204, 0.04), transparent 18%),
        repeating-linear-gradient(
            90deg,
            rgba(120, 196, 134, 0.025) 0,
            rgba(120, 196, 134, 0.025) 2px,
            transparent 2px,
            transparent 18px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(95, 162, 106, 0.02) 0,
            rgba(95, 162, 106, 0.02) 2px,
            transparent 2px,
            transparent 18px
        );
}

.discord-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 34px;
    align-items: center;
}

.discord-kicker {
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(205, 255, 225, 0.84);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(146, 227, 182, 0.16);
}

.discord-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164, 255, 198, 1), rgba(87, 195, 132, 0.88));
    box-shadow: 0 0 14px rgba(108, 220, 155, 0.44);
}

.discord-text .section-title {
    margin-bottom: 18px;
    max-width: 12ch;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.95;
}

.discord-highlight {
    color: #8cf0c0;
    text-shadow: 0 0 22px rgba(121, 235, 177, 0.18);
}

.discord-description {
    max-width: 62ch;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.discord-features {
    margin: 28px 0 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.discord-feature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 14px 18px;
    border-radius: 22px;
    color: var(--text-main);
    border: 1px solid rgba(140, 220, 176, 0.14);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        linear-gradient(0deg, rgba(85, 148, 90, 0.16) 0 14%, transparent 14%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 12px 26px rgba(0,0,0,0.18);
}

.discord-feature i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    font-size: 1rem;
    color: #072216;
    background: linear-gradient(180deg, rgba(170, 244, 202, 0.98), rgba(105, 214, 155, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        0 10px 24px rgba(77, 176, 125, 0.2);
}

.discord-feature span {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #071e14;
    background: linear-gradient(180deg, rgba(171, 244, 202, 1), rgba(97, 214, 155, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.24),
        0 18px 32px rgba(74, 172, 121, 0.22);
}

.discord-join-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        0 22px 36px rgba(74, 172, 121, 0.28),
        0 0 24px rgba(105, 221, 162, 0.18);
}

.discord-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.discord-orb-large {
    width: 300px;
    height: 300px;
    left: 8%;
    top: 0;
    background: radial-gradient(circle, rgba(144, 224, 181, 0.32), rgba(144, 224, 181, 0.04) 66%, transparent 72%);
}

.discord-orb-small {
    width: 180px;
    height: 180px;
    right: 0;
    bottom: 4%;
    background: radial-gradient(circle, rgba(91, 171, 118, 0.28), rgba(91, 171, 118, 0.05) 68%, transparent 74%);
}

.discord-preview {
    position: relative;
    width: min(100%, 420px);
    padding: 26px;
    border-radius: 34px;
    border: 1px solid rgba(152, 228, 185, 0.16);
    background:
        linear-gradient(180deg, rgba(25, 58, 46, 0.78), rgba(11, 26, 20, 0.72)),
        linear-gradient(0deg, rgba(79, 136, 75, 0.18) 0 9%, transparent 9%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.11),
        0 28px 44px rgba(0,0,0,0.24);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.discord-preview-top,
.discord-preview-tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.discord-preview-top {
    margin-bottom: 22px;
}

.discord-preview-status,
.discord-preview-pill,
.discord-preview-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(145, 226, 180, 0.14);
    background: rgba(255,255,255,0.06);
    color: rgba(227, 255, 239, 0.88);
}

.discord-preview-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    padding: 12px 0 24px;
}

.discord-preview-logo {
    position: relative;
    width: 168px;
    height: 168px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.24), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
    border: 1px solid rgba(171, 245, 202, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 20px 38px rgba(0,0,0,0.22);
}

.discord-preview-logo::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    border: 1px solid rgba(172, 245, 203, 0.24);
    pointer-events: none;
}

.discord-preview-logo img {
    width: 112px;
    height: 112px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

.discord-preview-copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-main);
}

.discord-preview-copy p {
    color: var(--text-muted);
    line-height: 1.6;
}

.discord-preview-tags {
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .discord-content {
        grid-template-columns: 1fr;
    }

    .discord-text .section-title {
        max-width: none;
    }

    .discord-visual {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .discord-section {
        padding: 26px 20px;
        border-radius: 28px;
    }

    .discord-features {
        grid-template-columns: 1fr;
    }

    .discord-feature {
        min-height: 58px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .discord-join-btn {
        width: 100%;
        justify-content: center;
    }

    .discord-visual {
        min-height: 300px;
    }

    .discord-preview {
        padding: 20px;
        border-radius: 26px;
    }

    .discord-preview-logo {
        width: 136px;
        height: 136px;
    }
}

.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section {
    margin-bottom: 26px;
    padding: 54px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-section h2::after,
.what-we-make h2::after,
.values-section h2::after,
.tech-section h2::after,
.cta-section h2::after,
.contact-section h2::after {
    background: linear-gradient(90deg, rgba(151,255,208,0.95), rgba(255,255,255,0.28));
    height: 4px;
    border-radius: 999px;
}

.what-we-make li,
.values-section li,
.cta-section li,
.status-box,
.specialty,
.project-status,
.tag {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
}

.what-we-make li,
.values-section li,
.cta-section li {
    margin-bottom: 12px;
    padding: 18px 22px 18px 54px;
    border-bottom: none;
}

.what-we-make li:hover,
.values-section li:hover,
.cta-section li:hover {
    margin-left: 0;
    padding-left: 64px;
    color: var(--text-main);
    background: linear-gradient(180deg, rgba(151,255,208,0.16), rgba(255,255,255,0.06));
}

.highlights,
.empty-state,
.construction-content,
.impressum-box,
.terminal-window,
.login-panel,
.news-item,
.project-card,
.member-card {
    overflow: hidden;
}

.highlights,
.empty-state,
.construction-content {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05)),
        radial-gradient(circle at top left, rgba(151,255,208,0.16), transparent 50%);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.16);
}

.cta-button,
.terminal-submit,
.auth-btn.primary,
.cookie-accept,
.project-link {
    color: #042117;
    background: linear-gradient(180deg, rgba(182,255,224,0.96), rgba(105,240,174,0.82));
    border-color: rgba(255,255,255,0.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 18px 34px rgba(61, 173, 124, 0.24);
}

.auth-btn.outline,
.cookie-reject {
    color: var(--text-main);
}

.cta-button:hover,
.terminal-submit:hover,
.auth-btn:hover,
.cookie-btn:hover,
.project-link:hover {
    transform: translateY(-2px) scale(1.01);
}

.terminal-window,
.login-panel,
.project-card,
.news-item,
.member-card,
.impressum-box {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05)),
        linear-gradient(180deg, rgba(105,240,174,0.08), rgba(105,240,174,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.14);
}

.terminal-header,
.news-header,
.modal-header {
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.login-panel .input-group input,
.input-group input,
.input-group textarea,
.search-container input {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    color: var(--text-main);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.login-panel .input-group input:focus,
.input-group input:focus,
.input-group textarea:focus,
.search-container input:focus {
    border-color: rgba(151,255,208,0.34);
    background: linear-gradient(180deg, rgba(151,255,208,0.12), rgba(255,255,255,0.06));
    box-shadow: 0 0 0 4px rgba(105,240,174,0.12), inset 0 1px 0 rgba(255,255,255,0.18);
}

.avatar-wrapper {
    border: 1px solid rgba(255,255,255,0.16);
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.cookie-banner {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)),
        rgba(7, 28, 20, 0.72);
    border-top: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 -12px 40px rgba(0,0,0,0.18);
}

footer {
    margin: 18px auto 24px;
    width: min(1180px, calc(100% - 24px));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)),
        rgba(7, 24, 18, 0.66);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.14);
}

.footer-socials a {
    width: 44px;
    height: 44px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
}

.footer-socials a:hover {
    color: var(--text-main);
    border-color: rgba(151,255,208,0.26);
    background: linear-gradient(180deg, rgba(151,255,208,0.16), rgba(255,255,255,0.05));
}

@keyframes floatBlobA {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-18px, 28px, 0) scale(1.04); }
}

@keyframes floatBlobB {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(24px, -16px, 0) scale(1.06); }
}

@media (max-width: 768px) {
    .site-header,
    footer {
        width: min(100% - 18px, 1180px);
        border-radius: 24px;
    }

    .header-inner {
        padding: 14px 16px;
    }

    .site-nav {
        top: 78px;
        margin: 0 10px;
        border-radius: 24px;
        background: rgba(7, 24, 18, 0.85);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .content-area > .intro,
    .about-section,
    .what-we-make,
    .values-section,
    .tech-section,
    .cta-section,
    .contact-section,
    .closing-section {
        border-radius: 28px;
        padding: 38px 20px;
    }
}

@media (max-width: 480px) {
    .site-header,
    footer {
        width: calc(100% - 14px);
        border-radius: 22px;
    }

    .content-area > .intro {
        padding: 74px 18px 66px;
    }

    .content-area > .intro h1 {
        font-size: 2.5rem;
    }

    .announcement-close,
    .footer-socials a {
        width: 40px;
        height: 40px;
    }
}

/* Dark tuning for liquid glass */
:root {
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --shadow-glow: 0 0 0 1px rgba(255,255,255,0.02), 0 22px 70px rgba(73, 205, 143, 0.10);
}

.site-announcement {
    background:
        linear-gradient(135deg, rgba(11, 40, 31, 0.78), rgba(7, 24, 18, 0.58)),
        linear-gradient(90deg, rgba(105,240,174,0.12), rgba(105,240,174,0.03));
    border-bottom: 1px solid rgba(151,255,208,0.12);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
}

.site-header,
footer,
.cookie-banner {
    background:
        linear-gradient(180deg, rgba(12, 34, 27, 0.82), rgba(6, 20, 15, 0.68)),
        rgba(6, 20, 15, 0.54);
    border-color: rgba(151,255,208,0.10);
    box-shadow: 0 18px 50px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}

.announcement-close,
.lang-btn,
.login-link,
.site-nav a,
.cta-button,
.auth-btn,
.cookie-btn,
.terminal-submit,
.project-link {
    border: 1px solid rgba(136,218,183,0.10);
    background: linear-gradient(180deg, rgba(20, 48, 38, 0.82), rgba(10, 28, 21, 0.60));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 12px 26px rgba(0,0,0,0.18);
}

.announcement-close::before,
.lang-btn::before,
.login-link::before,
.site-nav a::before,
.cta-button::before,
.auth-btn::before,
.cookie-btn::before,
.terminal-submit::before,
.project-link::before {
    background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 46%, rgba(255,255,255,0.02));
}

.site-nav a.active,
.site-nav a:hover,
.lang-btn.active,
.lang-btn:hover,
.login-link:hover {
    background: linear-gradient(180deg, rgba(36, 86, 69, 0.82), rgba(15, 39, 29, 0.70));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 16px 30px rgba(49, 132, 102, 0.16);
}

.content-area > .intro,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section,
.impressum-box,
.terminal-window,
.login-panel,
.empty-state,
.construction-content,
.highlights,
.news-item,
.project-card,
.member-card {
    border-color: rgba(136,218,183,0.08);
    background:
        linear-gradient(180deg, rgba(18, 44, 35, 0.76), rgba(8, 24, 18, 0.62)),
        linear-gradient(180deg, rgba(99,216,164,0.035), rgba(99,216,164,0.012));
    box-shadow: 0 20px 60px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.08);
}

.content-area > .intro::before {
    background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 68%);
}

.content-area > .intro::after {
    background: radial-gradient(circle, rgba(99,216,164,0.10), transparent 65%);
}

.highlights,
.empty-state,
.construction-content {
    background:
        linear-gradient(180deg, rgba(20, 50, 39, 0.84), rgba(8, 24, 18, 0.66)),
        radial-gradient(circle at top left, rgba(140,232,191,0.06), transparent 50%);
}

.what-we-make li,
.values-section li,
.cta-section li,
.status-box,
.specialty,
.project-status,
.tag {
    border: 1px solid rgba(136,218,183,0.08);
    background: linear-gradient(180deg, rgba(24, 55, 43, 0.68), rgba(10, 27, 21, 0.56));
}

.what-we-make li:hover,
.values-section li:hover,
.cta-section li:hover {
    background: linear-gradient(180deg, rgba(34, 78, 62, 0.72), rgba(14, 33, 25, 0.62));
}

.terminal-header,
.news-header,
.modal-header {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(136,218,183,0.08);
}

.login-panel .input-group input,
.input-group input,
.input-group textarea,
.search-container input {
    border: 1px solid rgba(136,218,183,0.10);
    background: linear-gradient(180deg, rgba(18, 44, 35, 0.78), rgba(8, 22, 17, 0.62));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.login-panel .input-group input:focus,
.input-group input:focus,
.input-group textarea:focus,
.search-container input:focus {
    background: linear-gradient(180deg, rgba(26, 58, 46, 0.82), rgba(10, 27, 21, 0.68));
    box-shadow: 0 0 0 4px rgba(99,216,164,0.10), inset 0 1px 0 rgba(255,255,255,0.10);
}

.avatar-wrapper,
.footer-socials a,
.logo a .logo-img {
    border-color: rgba(136,218,183,0.10);
    background: linear-gradient(180deg, rgba(20, 48, 38, 0.78), rgba(8, 22, 17, 0.58));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.footer-socials a:hover {
    background: linear-gradient(180deg, rgba(35, 83, 66, 0.78), rgba(12, 30, 22, 0.62));
}

html,
body {
    background:
        radial-gradient(circle at 14% 18%, rgba(114, 219, 176, 0.10), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(84, 179, 136, 0.07), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(99, 186, 149, 0.06), transparent 28%),
        linear-gradient(160deg, #03110c 0%, #051a13 42%, #04110d 100%) !important;
    background-color: #04110d !important;
}

body.site-wrapper {
    background:
        radial-gradient(circle at 14% 18%, rgba(114, 219, 176, 0.10), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(84, 179, 136, 0.07), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(99, 186, 149, 0.06), transparent 28%),
        linear-gradient(160deg, #03110c 0%, #051a13 42%, #04110d 100%) !important;
    background-color: #04110d !important;
    min-height: 100vh;
}

.content-area,
.container,
main {
    background-color: transparent !important;
}

/* Minecraft flavor on top of dark glass */
.content-area > .intro,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section,
.impressum-box,
.terminal-window,
.login-panel,
.empty-state,
.construction-content,
.highlights,
.news-item,
.project-card,
.member-card {
    position: relative;
}

.content-area > .intro::before,
.about-section::before,
.what-we-make::before,
.values-section::before,
.tech-section::before,
.cta-section::before,
.contact-section::before,
.closing-section::before,
.impressum-box::before,
.terminal-window::before,
.login-panel::before,
.empty-state::before,
.construction-content::before,
.highlights::before,
.news-item::before,
.project-card::before,
.member-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(134, 224, 181, 0.04), transparent 18%),
        repeating-linear-gradient(
            90deg,
            rgba(127, 208, 171, 0.016) 0,
            rgba(127, 208, 171, 0.016) 1px,
            transparent 1px,
            transparent 14px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(127, 208, 171, 0.012) 0,
            rgba(127, 208, 171, 0.012) 1px,
            transparent 1px,
            transparent 14px
        );
    opacity: 0.8;
}

.content-area > .intro::after,
.highlights::after,
.project-card::after,
.member-card::after,
.news-item::after,
.terminal-window::after,
.empty-state::after,
.construction-content::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 6px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, #487a4c 0%, #62a56f 26%, #85cf9a 52%, #4d8453 100%);
    box-shadow:
        0 1px 0 rgba(211, 255, 220, 0.18),
        0 8px 24px rgba(74, 156, 112, 0.16);
    pointer-events: none;
}

.site-header::after,
footer::after,
.site-announcement::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 22%, rgba(132, 222, 175, 0.05), transparent 18%),
        radial-gradient(circle at 78% 78%, rgba(132, 222, 175, 0.03), transparent 18%);
}

.site-nav a.active,
.site-nav a:hover,
.lang-btn.active,
.lang-btn:hover,
.login-link:hover,
.cta-button:hover,
.auth-btn:hover,
.project-link:hover {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 16px 30px rgba(49, 132, 102, 0.16),
        0 0 0 1px rgba(99, 216, 164, 0.08);
}

.about-section h2::before,
.what-we-make h2::before,
.values-section h2::before,
.tech-section h2::before,
.cta-section h2::before,
.contact-section h2::before,
.section-title::before {
    content: "[]";
    display: inline-block;
    margin-right: 12px;
    color: rgba(140, 232, 191, 0.62);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.08em;
}

.tag,
.status-box,
.specialty {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 6px 18px rgba(0,0,0,0.14);
}

.project-status,
.tag {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.04em;
}

.empty-icon,
.construction-icon {
    filter: drop-shadow(0 0 12px rgba(99, 216, 164, 0.16));
}

/* Stronger Minecraft atmosphere */
.site-wrapper::before,
.site-wrapper::after {
    filter: blur(2px);
}

.site-wrapper::before {
    width: 38rem;
    height: 38rem;
    background:
        linear-gradient(0deg, rgba(48, 84, 34, 0.26) 0 14%, rgba(84, 134, 54, 0.20) 14% 22%, transparent 22%),
        radial-gradient(circle, rgba(80, 160, 92, 0.18), transparent 64%);
    opacity: 0.95;
}

.site-wrapper::after {
    width: 30rem;
    height: 30rem;
    background:
        linear-gradient(0deg, rgba(42, 74, 31, 0.18) 0 16%, rgba(92, 145, 58, 0.14) 16% 24%, transparent 24%),
        radial-gradient(circle, rgba(66, 142, 83, 0.16), transparent 66%);
    opacity: 0.85;
}

.content-area > .intro {
    background:
        linear-gradient(180deg, rgba(18, 44, 35, 0.82), rgba(8, 24, 18, 0.66)),
        radial-gradient(circle at 20% 20%, rgba(118, 163, 94, 0.16), transparent 24%),
        radial-gradient(circle at 82% 72%, rgba(72, 125, 68, 0.18), transparent 26%),
        linear-gradient(0deg, rgba(67, 103, 46, 0.24) 0 4.5%, rgba(122, 175, 81, 0.20) 4.5% 7%, transparent 7%);
}

.content-area > .intro::before,
.about-section::before,
.what-we-make::before,
.values-section::before,
.tech-section::before,
.cta-section::before,
.contact-section::before,
.closing-section::before,
.impressum-box::before,
.terminal-window::before,
.login-panel::before,
.empty-state::before,
.construction-content::before,
.highlights::before,
.news-item::before,
.project-card::before,
.member-card::before {
    background:
        linear-gradient(180deg, rgba(162, 255, 177, 0.04), transparent 18%),
        repeating-linear-gradient(
            90deg,
            rgba(125, 201, 101, 0.028) 0,
            rgba(125, 201, 101, 0.028) 2px,
            transparent 2px,
            transparent 18px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(104, 168, 82, 0.02) 0,
            rgba(104, 168, 82, 0.02) 2px,
            transparent 2px,
            transparent 18px
        );
}

.content-area > .intro::after,
.highlights::after,
.project-card::after,
.member-card::after,
.news-item::after,
.terminal-window::after,
.empty-state::after,
.construction-content::after {
    height: 10px;
    left: 18px;
    right: 18px;
    border-radius: 12px 12px 999px 999px;
    background:
        linear-gradient(180deg, rgba(166, 224, 108, 0.95), rgba(95, 153, 59, 0.92));
    box-shadow:
        0 1px 0 rgba(220, 255, 175, 0.32),
        0 10px 28px rgba(84, 178, 81, 0.22);
}

.site-nav a,
.lang-btn,
.login-link {
    background:
        linear-gradient(180deg, rgba(20, 48, 38, 0.88), rgba(10, 28, 21, 0.66)),
        linear-gradient(0deg, rgba(79, 132, 52, 0.10) 0 10%, transparent 10%);
}

.site-nav a.active,
.site-nav a:hover,
.lang-btn.active,
.lang-btn:hover,
.login-link:hover {
    background:
        linear-gradient(180deg, rgba(44, 98, 68, 0.88), rgba(17, 43, 31, 0.74)),
        linear-gradient(0deg, rgba(138, 199, 78, 0.18) 0 12%, transparent 12%);
}

.cta-button,
.terminal-submit,
.auth-btn.primary,
.project-link {
    background:
        linear-gradient(180deg, rgba(181, 238, 118, 0.96), rgba(93, 165, 67, 0.92));
    color: #0b1a10;
}

.tag,
.project-status,
.status-box,
.specialty {
    background:
        linear-gradient(180deg, rgba(29, 60, 38, 0.82), rgba(12, 29, 20, 0.66)),
        linear-gradient(0deg, rgba(98, 163, 60, 0.10) 0 14%, transparent 14%);
    border-color: rgba(125, 201, 101, 0.12);
}

.about-section h2::before,
.what-we-make h2::before,
.values-section h2::before,
.tech-section h2::before,
.cta-section h2::before,
.contact-section h2::before,
.section-title::before {
    content: "[#]";
    color: rgba(171, 255, 154, 0.72);
}

.logo a .logo-img,
.avatar-wrapper {
    image-rendering: auto;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 0 0 1px rgba(98, 163, 60, 0.10),
        0 10px 24px rgba(0,0,0,0.16);
}

/* Softer glass tuning */
:root {
    --card-bg: rgba(18, 35, 28, 0.92);
    --card-strong: rgba(22, 44, 34, 0.96);
    --glass-border: rgba(138, 214, 170, 0.10);
    --glass-highlight: rgba(255, 255, 255, 0.06);
    --shadow-glow: 0 0 0 1px rgba(255,255,255,0.015), 0 18px 42px rgba(0,0,0,0.22);
}

.site-header,
footer,
.site-announcement,
.content-area > .intro,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section,
.impressum-box,
.terminal-window,
.login-panel,
.empty-state,
.construction-content,
.highlights,
.news-item,
.project-card,
.member-card,
.discord-section,
.discord-preview {
    border-color: rgba(138, 214, 170, 0.10);
    box-shadow: 0 16px 38px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(10px) saturate(112%);
    -webkit-backdrop-filter: blur(10px) saturate(112%);
}

.site-header,
footer,
.site-announcement {
    background:
        linear-gradient(180deg, rgba(13, 29, 23, 0.94), rgba(8, 18, 14, 0.90)),
        linear-gradient(0deg, rgba(72, 128, 74, 0.08) 0 8%, transparent 8%);
}

.content-area > .intro,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section,
.impressum-box,
.terminal-window,
.login-panel,
.empty-state,
.construction-content,
.highlights,
.news-item,
.project-card,
.member-card {
    background:
        linear-gradient(180deg, rgba(18, 38, 30, 0.94), rgba(10, 22, 17, 0.90)),
        linear-gradient(0deg, rgba(86, 148, 88, 0.10) 0 5%, transparent 5%);
}

.content-area > .intro::before,
.content-area > .intro::after,
.discord-orb,
.site-wrapper::before,
.site-wrapper::after {
    opacity: 0.58;
    filter: blur(1px);
}

.site-nav a,
.lang-btn,
.login-link,
.what-we-make li,
.values-section li,
.cta-section li,
.tag,
.project-status,
.status-box,
.specialty {
    border-color: rgba(138, 214, 170, 0.10);
    background:
        linear-gradient(180deg, rgba(22, 46, 36, 0.90), rgba(11, 24, 19, 0.84)),
        linear-gradient(0deg, rgba(89, 151, 83, 0.08) 0 10%, transparent 10%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 18px rgba(0,0,0,0.14);
}

.site-nav a.active,
.site-nav a:hover,
.lang-btn.active,
.lang-btn:hover,
.login-link:hover,
.what-we-make li:hover,
.values-section li:hover,
.cta-section li:hover {
    background:
        linear-gradient(180deg, rgba(34, 72, 56, 0.92), rgba(14, 33, 25, 0.88)),
        linear-gradient(0deg, rgba(114, 187, 116, 0.12) 0 10%, transparent 10%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 24px rgba(0,0,0,0.16);
}

.discord-section {
    background:
        linear-gradient(180deg, rgba(18, 40, 31, 0.95), rgba(9, 20, 16, 0.92)),
        linear-gradient(0deg, rgba(85, 146, 82, 0.12) 0 5%, transparent 5%);
}

.discord-feature,
.discord-preview-status,
.discord-preview-pill,
.discord-preview-tags span,
.discord-kicker {
    background:
        linear-gradient(180deg, rgba(24, 50, 39, 0.88), rgba(11, 25, 19, 0.82)),
        linear-gradient(0deg, rgba(93, 160, 98, 0.08) 0 10%, transparent 10%);
    border-color: rgba(138, 214, 170, 0.10);
}

.discord-preview {
    background:
        linear-gradient(180deg, rgba(19, 42, 33, 0.92), rgba(10, 22, 17, 0.88)),
        linear-gradient(0deg, rgba(79, 136, 75, 0.10) 0 7%, transparent 7%);
}

.discord-preview-logo {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.10), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 14px 28px rgba(0,0,0,0.18);
}

/* Minimal glass fallback */
.site-header,
footer,
.site-announcement,
.content-area > .intro,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section,
.impressum-box,
.terminal-window,
.login-panel,
.empty-state,
.construction-content,
.highlights,
.news-item,
.project-card,
.member-card,
.discord-section,
.discord-preview,
.discord-feature,
.discord-kicker,
.discord-preview-status,
.discord-preview-pill,
.discord-preview-tags span,
.site-nav a,
.lang-btn,
.login-link,
.what-we-make li,
.values-section li,
.cta-section li,
.tag,
.project-status,
.status-box,
.specialty {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header,
footer,
.site-announcement {
    background:
        linear-gradient(180deg, rgba(12, 25, 20, 0.98), rgba(8, 16, 13, 0.97)),
        linear-gradient(0deg, rgba(69, 123, 69, 0.05) 0 6%, transparent 6%);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.content-area > .intro,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section,
.impressum-box,
.terminal-window,
.login-panel,
.empty-state,
.construction-content,
.highlights,
.news-item,
.project-card,
.member-card,
.discord-section,
.discord-preview {
    border-color: rgba(132, 202, 157, 0.08);
    background:
        linear-gradient(180deg, rgba(16, 31, 25, 0.98), rgba(10, 18, 15, 0.97)),
        linear-gradient(0deg, rgba(76, 130, 75, 0.06) 0 4%, transparent 4%);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.03);
}

.content-area > .intro::before,
.content-area > .intro::after,
.discord-orb,
.site-wrapper::before,
.site-wrapper::after,
.discord-section::before {
    opacity: 0.22;
}

.discord-orb,
.site-wrapper::before,
.site-wrapper::after {
    filter: blur(0);
}

.site-nav a,
.lang-btn,
.login-link,
.what-we-make li,
.values-section li,
.cta-section li,
.tag,
.project-status,
.status-box,
.specialty,
.discord-feature,
.discord-kicker,
.discord-preview-status,
.discord-preview-pill,
.discord-preview-tags span {
    background:
        linear-gradient(180deg, rgba(20, 39, 31, 0.96), rgba(11, 21, 17, 0.94)),
        linear-gradient(0deg, rgba(89, 151, 83, 0.05) 0 8%, transparent 8%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 6px 14px rgba(0,0,0,0.12);
}

.site-nav a.active,
.site-nav a:hover,
.lang-btn.active,
.lang-btn:hover,
.login-link:hover,
.what-we-make li:hover,
.values-section li:hover,
.cta-section li:hover {
    background:
        linear-gradient(180deg, rgba(30, 57, 44, 0.98), rgba(14, 28, 22, 0.96)),
        linear-gradient(0deg, rgba(108, 174, 104, 0.08) 0 8%, transparent 8%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 18px rgba(0,0,0,0.14);
}

.discord-preview-logo {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 10px 20px rgba(0,0,0,0.14);
}

.site-nav a,
.lang-btn,
.login-link,
.announcement-close,
.cta-button,
.terminal-submit,
.auth-btn,
.cookie-btn,
.project-link,
.discord-join-btn {
    border-color: rgba(132, 202, 157, 0.08);
    background: rgba(18, 34, 27, 0.96);
    box-shadow: none;
}

.site-nav a.active,
.site-nav a:hover,
.lang-btn.active,
.lang-btn:hover,
.login-link:hover,
.announcement-close:hover,
.cta-button:hover,
.terminal-submit:hover,
.auth-btn:hover,
.cookie-btn:hover,
.project-link:hover,
.discord-join-btn:hover {
    transform: none;
    background: rgba(28, 52, 40, 0.98);
    box-shadow: none;
}

.cta-button,
.terminal-submit,
.auth-btn.primary,
.project-link,
.discord-join-btn {
    color: #dff8e8;
    background: linear-gradient(180deg, rgba(34, 78, 55, 0.98), rgba(22, 54, 38, 0.98));
}

.auth-btn.outline,
.cookie-btn,
.announcement-close,
.lang-btn,
.login-link,
.site-nav a {
    color: var(--text-main);
}

.site-header,
footer,
.site-announcement {
    border-radius: 18px;
}

.content-area > .intro,
.about-section,
.what-we-make,
.values-section,
.tech-section,
.cta-section,
.contact-section,
.closing-section,
.impressum-box,
.terminal-window,
.login-panel,
.empty-state,
.construction-content,
.highlights,
.news-item,
.project-card,
.member-card,
.discord-section,
.discord-preview {
    border-radius: 18px;
}

.site-nav a,
.lang-btn,
.login-link,
.announcement-close,
.cta-button,
.terminal-submit,
.auth-btn,
.cookie-btn,
.project-link,
.discord-join-btn,
.what-we-make li,
.values-section li,
.cta-section li,
.tag,
.project-status,
.status-box,
.specialty,
.discord-feature,
.discord-kicker,
.discord-preview-status,
.discord-preview-pill,
.discord-preview-tags span {
    border-radius: 10px;
}

.site-nav a {
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
}

.site-nav a:hover {
    border-color: transparent;
    background: rgba(28, 52, 40, 0.70);
    box-shadow: none;
}

.site-nav a.active {
    border: 1px solid rgba(132, 202, 157, 0.16);
    background: rgba(28, 52, 40, 0.98);
    box-shadow: none;
}
