body {
    background: #000;
    color: #ddd;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Haupt-Content-Bereich */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Intro-Text */
.intro-text {
    margin-bottom: 30px;
}
.intro-text h1 {
    margin-bottom: 10px;
    font-size: 28px;
}
.intro-text p {
    font-size: 16px;
    line-height: 1.5;
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Einzelne Card */
.card {
    width: 260px;
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
}

/* Screenshot */
.card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
}

/* Titel */
.card h2 {
    font-size: 18px;
    margin: 10px 0 5px 0;
}

/* Beschreibung */
.card p {
    font-size: 14px;
    line-height: 1.4;
    color: #bbb;
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}
.btn:hover {
    background: #666;
}
