/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.7;
    letter-spacing: 0.01em;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

main {
    max-width: 1000px;
    width: 100%;
    text-align: left;
}

.interactive-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text {
    font-weight: 600;
}

.interactive-btn {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 0.3rem 0.6rem;
    margin: 0 0.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.interactive-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.hidden-text {
    display: inline;
    filter: blur(3px);
    opacity: 0.3;
    transition: all 0.3s ease;
    user-select: none;
}

.hidden-text.visible {
    filter: blur(0);
    opacity: 1;
    user-select: text;
}

.hidden-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hidden-text a:hover {
    color: #ccc;
    text-decoration: underline;
}

.social-links {
    margin-top: 2rem;
    text-align: center;
}

.social-links a {
    color: #fff;
    text-decoration: underline;
    margin: 0 0.5rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #ccc;
}

.profile-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.profile-image {
    max-width: 120px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top; 
    box-shadow: 0 0 40px 20px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.5s, filter 0.5s, opacity 0.5s;
    opacity: 0.95;
    filter: blur(0.5px) grayscale(10%);
    background: radial-gradient(circle, rgba(0,0,0,0.8) 40%, transparent 100%);
}

.profile-image:hover {
    box-shadow: 0 16px 48px 0 rgba(0,0,0,0.28);
    filter: blur(0) grayscale(0%);
    opacity: 1;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    main {
        max-width: 100%;
        padding: 0 1rem;
    }
    .interactive-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    .interactive-btn {
        font-size: 1rem;
        padding: 0.2rem 0.4rem;
    }
    body {
        padding: 1rem;
    }
}
  