/* ========================================
   NEUES FARBSCHEMA: SCHWARZ & ROT
   ======================================== */

/* Grundlegende Stile für die gesamte Seite */
body {
    background-color: #0d0d0d; /* Noch dunklerer Hintergrund */
    color: #f4f4f4; /* Etwas hellerer Text für besseren Kontrast */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Container, um den Inhalt zu zentrieren */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

/* --- Header & Navigation --- */
header {
    background-color: #1a1a1a; /* Dunkler Header-Hintergrund */
    border-bottom: 3px solid #D80032; /* GEÄNDERT: Kräftiger roter Akzentstreifen */
    padding: 1rem 0;
    position: sticky; /* Hält den Header beim Scrollen oben */
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px); /* Moderner "Glas"-Effekt */
    background-color: rgba(26, 26, 26, 0.8); /* Leicht durchsichtig */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    margin: 0;
    font-weight: bold;
    font-size: 26px;
    color: #ffffff;
    text-shadow: 0 0 5px #D80032; /* NEU: Dezentes Leuchten für den Logo-Text */
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 25px;
}

header nav a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 5px; /* Platz für den Hover-Effekt */
    border-bottom: 2px solid transparent; /* Platzhalter für den Rand */
    transition: all 0.3s ease;
}

header nav a:hover {
    color: #D80032; /* GEÄNDERT: Rote Farbe bei Mausberührung */
    border-bottom-color: #D80032; /* NEU: Unterstreichung erscheint bei Hover */
}


/* --- Hero Sektion --- */
.hero {
    /* NEU: Ein subtiler Gradient über dem Bild lässt den Text besser hervortreten */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1500x500') no-repeat center center/cover;
    text-align: center;
    padding: 120px 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* NEU: Textschatten für bessere Lesbarkeit */
}

.hero h2 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    max-width: 600px; /* Begrenzt die Breite für bessere Lesbarkeit */
    margin: 0 auto 40px auto;
}

.server-info p {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 25px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #444;
}

.button-primary {
    background-color: #D80032; /* GEÄNDERT: Roter Button */
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(216, 0, 50, 0.3); /* NEU: Roter Schatten für den Button */
}

.button-primary:hover {
    background-color: #A30027; /* GEÄNDERT: Dunkleres Rot bei Hover */
    transform: translateY(-3px); /* NEU: Leichter "Anhebe"-Effekt */
    box-shadow: 0 6px 20px rgba(216, 0, 50, 0.5); /* NEU: Stärkerer Schatten bei Hover */
}


/* --- Features Sektion --- */
.features {
    padding: 80px 20px;
    text-align: center;
}

.features h3 {
    font-size: 36px;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* NEU: Responsives Grid */
    gap: 30px;
}

.feature-item {
    background-color: #1a1a1a;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #D80032; /* GEÄNDERT: Roter Akzent-Rand */
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* NEU: Schatten für mehr Tiefe */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* NEU: Weiche Übergänge */
}

.feature-item:hover {
    transform: translateY(-5px); /* NEU: "Anhebe"-Effekt bei Hover */
    box-shadow: 0 8px 25px rgba(216, 0, 50, 0.3); /* NEU: Roter Leuchteffekt bei Hover */
}

.feature-item h4 {
    margin-top: 0;
    font-size: 22px;
}

/* --- Footer --- */
footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid #333;