/* www.frankwinter.com - Komplettes neues CSS */

body {
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.blink-container {
    position: relative;
    display: inline-block;
    padding: 6px;
    border-radius: 50%;
    background: #666;
    box-shadow: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.highlight {
    background: #e07c4a;
    box-shadow: 0 0 15px rgba(224, 124, 74, 0.5);
}

.blink-container img#frank-portrait {
    display: block;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

img#frank-portrait {
    pointer-events: none;
}

.portrait-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    z-index: 2;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.headline {
    color: #fff;
    font-size: 2.5rem;
    margin-top: 45px;
    margin-bottom: 25px;
}

.description {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
    text-align: center;
    line-height: 1.6;
    padding: 0 20px;
}

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

.description a:hover {
    color: #f0a070;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.social-links a {
    color: #888;
    transition: color 0.2s ease;
}

.social-links a svg {
    transition: transform 0.2s ease;
}

.social-links a:hover svg {
    transform: scale(1.15);
}

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

@media (max-width: 768px) {
    .blink-container img#frank-portrait,
    .portrait-overlay {
        width: 250px;
        height: 250px;
    }

    .headline {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .blink-container {
        padding: 5px;
    }

    .blink-container img#frank-portrait,
    .portrait-overlay {
        width: 260px;
        height: 260px;
    }

    .headline {
        font-size: 1.6rem;
        margin-top: 55px;
        margin-bottom: 30px;
    }

    .description {
        font-size: 0.95rem;
        padding: 0 20px;
        line-height: 1.5;
    }

    .social-links {
        gap: 25px;
        margin-top: 50px;
    }

    .social-links a svg {
        width: 22px;
        height: 22p2x;
    }
}
