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

body {
    font-family: Arial, sans-serif;
    background-color: #000000; /* Schwarzer Hintergrund */
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin: 20px;
}

h1 {
    font-size: 2rem;
    color: #FF0000; /* Roter Titel */
}

p {
    font-size: 1.2rem;
    color: #DDDDDD;
}

/* Layout der Setup-Kacheln */
#setup-container {
    display: grid;
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
}

@media (max-width: 768px) {
    #setup-container {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf kleineren Bildschirmen */
    }
}

@media (max-width: 480px) {
    #setup-container {
        grid-template-columns: 1fr; /* 1 Spalte auf sehr kleinen Bildschirmen */
    }
}

.setup-card {
    background-color: #1A1A1A; /* Dunkelgrauer Hintergrund für Karten */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.setup-card:hover {
    transform: scale(1.05);
}

.setup-image img {
    width: 100%;
    height: auto;
}

.setup-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    height: 100%;
}

.setup-title {
    font-size: 1.2rem;
    color: #FF0000; /* Roter Titel in der Karte */
    margin-bottom: 8px;
}

.setup-description {
    font-size: 0.9rem;
    color: #BBBBBB;
    margin-bottom: auto;
}

.download-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #FF0000; /* Roter Button */
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.download-button:hover {
    background-color: #D50000; /* Dunkleres Rot beim Hover */
}

