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

body {
    background: #0d0d0d;
    color: #f2f2f2;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

.hero {
    min-height: 85vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.70)),
        url("/minephoenix/img/hinter.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 4px solid #ff7b00;
}

.hero-live {
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.72)),
        url("/minephoenix/img/stream-banner.png"),
        url("/minephoenix/img/hinter.jpg");
    background-size: cover;
    background-position: center;
}

.overlay {
    padding: 30px;
}

.logo {
    max-width: 550px;
    width: 90%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 35px rgba(255,140,0,.8));
}

h1 {
    font-size: 4rem;
    color: #ff9d00;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(255, 123, 0, 0.8);
}

.hero p {
    font-size: 1.4rem;
    margin: 10px 0 30px;
    color: #ffffff;
}

.buttons,
.community-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.buttons a,
.community-buttons a {
    padding: 12px 24px;
    background: rgba(255, 123, 0, 0.15);
    border: 1px solid #ff8c00;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 123, 0, 0.25);
    transition: 0.2s ease;
}

.buttons a:hover,
.community-buttons a:hover {
    background: #ff8c00;
    color: #111;
}

main {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.card {
    background: rgba(25, 25, 25, 0.95);
    border: 1px solid #ff8c00;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
}

.card h2,
.project-overlay h2 {
    color: #ffb84d;
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 15px;
}

.minecraft-project {
    margin-bottom: 30px;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
        url("/minephoenix/img/hinter.jpg");
    background-size: cover;
    background-position: center;
    border: 1px solid #ff8c00;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
}

.project-overlay {
    padding: 80px 40px;
}

.project-overlay p {
    margin-bottom: 15px;
}

.community-buttons {
    margin-top: 20px;
    justify-content: flex-start;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.project-card {
    background: rgba(15, 15, 15, 0.95);
    border-radius: 12px;
    padding: 22px;
    transition: 0.3s ease;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.15);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.25);
}

.project-card h3 {
    color: #ffb347;
    margin: 15px 0 10px;
    font-size: 1.3rem;
}

.project-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

.project-info {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-info span {
    background: rgba(255,140,0,0.15);
    border: 1px solid rgba(255,140,0,0.4);
    padding: 6px 10px;
    border-radius: 6px;
    color: #ffb347;
    font-size: 0.9rem;
}

.status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
}

.online { border-left: 5px solid #00cc66; }
.planning { border-left: 5px solid #ffb347; }
.maintenance { border-left: 5px solid #3399ff; }
.offline { border-left: 5px solid #ff4444; }

.online .status {
    background: rgba(0,204,102,0.15);
    color: #7dffb2;
}

.planning .status {
    background: rgba(255,179,71,0.15);
    color: #ffd27f;
}

.maintenance .status {
    background: rgba(51,153,255,0.15);
    color: #9fc5ff;
}

.offline .status {
    background: rgba(255,68,68,0.15);
    color: #ff9999;
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #333;
    background: #080808;
    color: #cccccc;
}

footer a {
    color: #ffb84d;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #fff;
}

footer span {
    margin: 0 10px;
    color: #777;
}

/* Rechtliche Seiten */

.legal-page {
    background: #111;
}

.legal-hero {
    height: 320px;
    background-image:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.75)),
        url("/minephoenix/img/stream-banner.png");
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #ff7b00;
}

.legal-container {
    max-width: 1000px;
    margin: -60px auto 40px auto;
    padding: 35px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #ff8c00;
    border-radius: 12px;
    color: #f0f0f0;
    box-shadow:
        0 0 15px rgba(255, 140, 0, 0.4),
        0 0 30px rgba(255, 140, 0, 0.2);
}

.legal-container h1 {
    font-size: 2.4rem;
    color: #ff9d00;
    margin-top: 0;
    border-bottom: 2px solid #ff7b00;
    padding-bottom: 12px;
    text-shadow: none;
}

.legal-container h2 {
    color: #ffb84d;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-container a {
    color: #4db8ff;
}

.back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: #ffb84d !important;
    font-weight: bold;
    text-decoration: none;
}

.back-link:hover {
    color: white !important;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    background: transparent;
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 320px;
    }

    .buttons a,
    .community-buttons a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .community-buttons {
        justify-content: center;
    }

    .project-overlay {
        padding: 50px 25px;
    }

    .card {
        padding: 22px;
    }

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

    .legal-hero {
        height: 180px;
    }

    .legal-container {
        margin: 0;
        border-radius: 0;
        padding: 20px;
    }
}
.panel-header {
    width: 100%;
    max-height: 170px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 140, 0, 0.45);
    box-shadow: 0 0 18px rgba(255, 140, 0, 0.18);
}
.hero-logo { max-width: 520px; width: 90%; margin-bottom: 20px; filter: drop-shadow(0 0 35px rgba(255,140,0,.8)); }
