/* Hintergrundbild */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('https://r2.fivemanage.com/yaiyylcSJRmbB71k2iwtd/images/NIKLAS.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
}

/* Hauptcontainer */
.container {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 1000px;
    animation: fadeIn 0.8s ease-in-out;
}

h1 {
    font-size: 2em;
    margin: 0 0 20px;
    color: #333;
}

/* Kategorien */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.category {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.category:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.category img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Social-Link-Button */
.social-link {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
    font-size: 1em;
}

.social-link i {
    margin-left: 8px;
}

.social-link:hover {
    transform: scale(1.1);
}

/* Plattform-spezifische Farben */
.instagram { background-color: #C13584; }
.instagram:hover { background-color: #e1306c; }

.discord { background-color: #7289DA; }
.discord:hover { background-color: #5b6eae; }

.tiktok { background-color: #000000; }
.tiktok:hover { background-color: #444444; }

.shop {
    background-color: #28a745;
}
.shop:hover {
    background-color: #218838;
}

/* Animierte Erscheinung */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .categories {
        flex-direction: column;
        align-items: center;
    }

    .category {
        width: 90%;
    }
}
