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

body {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background: linear-gradient(135deg, #9b4f96, #7e2a6d, #9b4f96, #6a2860);
    background-size: 400% 400%;
    animation: gradientAnimation 8s ease infinite;
    color: #fff;
    text-align: center;
    padding: 40px 20px; /* Kleinere Höhe */
    font-size: 2.2em; /* Kleinere Schriftgröße */
    border-bottom: 3px solid #a945ff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Leichter Schatten für mehr Tiefe */
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px #000;
}

header p {
    font-size: 1.3em;
    color: #d1b3ff;
}

.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px auto;
    max-width: 1200px;
}

.product {
    background-color: #1f1f1f;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    width: 500px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.product h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #a945ff;
}

.product p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #ccc;
}

.buy-btn, .discord-btn {
    background: linear-gradient(135deg, #a945ff, #6c1b9c);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    text-decoration: none;
    display: inline-block;
}

.buy-btn:hover, .discord-btn:hover {
    background: linear-gradient(135deg, #c065ff, #8225bd);
    transform: scale(1.05);
}

.contact {
    text-align: center;
    margin: 60px auto;
    color: #ddd;
}

.contact h2 {
    color: #a945ff;
    font-size: 2em;
    margin-bottom: 20px;
}

.product img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

footer {
    text-align: center;
    background: linear-gradient(135deg, #4e196c, #8324a8);
    color: #fff;
    padding: 25px;
    border-top: 3px solid #a945ff;
    font-size: 0.95em;
}
