body {
    font-family: 'Roboto Slab', serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* Typografie */
.pixel-font {
    font-family: 'Minecraft', 'Roboto Slab', serif;
    font-size: 5em;
    color: #4CAF50;
    text-shadow: 4px 4px #000000;
}
.slogan {
    font-size: 1.5em;
    font-weight: 400;
    margin-top: -20px;
    margin-bottom: 30px;
    color: #ccc;
}
.section-title {
    font-size: 2.5em;
    color: #FFC107;
    margin-bottom: 40px;
    text-shadow: 2px 2px #000;
}
h3 {
    font-size: 1.8em;
    color: #FFEB3B;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn.primary {
    background-color: #4CAF50;
    color: white;
}
.btn.secondary {
    background-color: #FFC107;
    color: #333;
}
.btn.primary:active, .btn.secondary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Layout */
.hero-section {
    background: url('bild.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 50px;
    border-radius: 10px;
    border: 2px solid #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.hero-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.server-ip {
    background: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2em;
    border: 1px solid #555;
}

.info-section, .cta-section {
    padding: 80px 20px;
    text-align: center;
}
.info-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.info-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
}
.info-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.cta-section {
    background-color: #222;
}
.cta-content {
    background: #333;
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* Footer */
footer {
    background-color: #0d0d0d;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #333;
}
footer a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-action {
        flex-direction: column;
        gap: 10px;
    }
    .pixel-font {
        font-size: 3em;
    }
    .info-grid {
        flex-direction: column;
        align-items: center;
    }
}


/* Neuer Button für die Karte */
.btn.tertiary {
    background-color: #3498db; /* Hellblau */
    color: white;
}

.btn.tertiary:hover {
    background-color: #2980b9;
}

/* Container für die Buttons, um sie untereinander zu stapeln */
.hero-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Fügt einen kleinen Abstand zwischen den Buttons hinzu */
    margin-top: 15px;
}