body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    padding: 40px 0;
    border-bottom: 1px solid #222;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Style für das Promi-Raster auf der Startseite */
.celeb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.celeb-link {
    background-color: #1e1e1e;
    color: #00bcd4;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    border: 1px solid #333;
}

.celeb-link:hover {
    background-color: #00bcd4;
    color: #121212;
    transform: translateY(-3px);
}

/* Style für die Bilder-Galerie */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tattoo-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.back-btn {
    display: inline-block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 20px;
}
.back-btn:hover {
    color: #00bcd4;
}

footer {
    margin-top: 8px;
    padding: 20px;
    color: #777;
    font-size: 0.9em;
}