/* Grundlegende Einstellungen für die gesamte Seite */
body {
    background-color: #1a1a1a; /* Dunkler Hintergrund */
    color: #ffffff; /* Weisse Schrift */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center; /* Zentriert den Container horizontal */
    min-height: 100vh;
}

/* Container begrenzt die Breite auf typische Handy-Größe */
.container {
    width: 100%;
    max-width: 480px; /* Breite ähnlich wie Instagram-Story */
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen Elementen */
}

/* Profilbild rund und zentriert */
.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Macht das Bild kreisrund */
    object-fit: cover;
    border: 3px solid #333; /* Leichter Rand */
    margin-bottom: 10px;
}

/* Name und Bio Styling */
h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.bio {
    color: #aaaaaa; /* Etwas grauer für weniger Fokus */
    margin: 5px 0 20px 0;
    font-size: 0.9rem;
}

/* Link Button Styling (Basis) */
.link-btn {
    display: block; /* Nimmt ganze Breite ein */
    background-color: #2d2d2d; /* Dunkelgrauer Button */
    color: #fff;
    text-decoration: none; /* Unterstreichung entfernen */
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 50px; /* Pillen-Form */
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s; /* Animation bei Hover */
    border: 1px solid #3d3d3d;
}

/* Hover-Effekt: Button wird heller und wächst leicht */
.link-btn:hover {
    background-color: #3d3d3d;
    transform: scale(1.02);
}

/* PRIMARY BUTTON (Fanvue) - Sticht heraus */
.btn-primary {
    background-color: #fff; /* Weisser Hintergrund */
    color: #000; /* Schwarze Schrift */
    border: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* Leuchteschein */
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: scale(1.03);
}

/* Footer Styling */
.legal-footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #666;
}

.legal-footer a {
    color: #888;
    text-decoration: none;
}

.legal-footer a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 5px;
}
