body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.page-title {
    margin: 20px 0;
    font-size: 2em;
    color: #00ffe0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    padding-top: 150%; /* Verhältnis für Kartenhöhe */
    transform-style: preserve-3d;
}

.card-front {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #111;
    border: 2px solid #00ffe0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 255, 224, 0.4);
}

.card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #00ffe0;
    margin-bottom: 12px;
    object-fit: cover;
}

.card-name {
    font-size: 1.2em;
    margin: 5px 0;
    color: #fff;
}

.card-motto {
    font-size: 0.9em;
    color: #bbb;
    font-style: italic;
}
