:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-pink: #ff00ff;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    /* Mobile viewport fix */
    overflow-x: hidden;
    /* Prevent rubber-banding on iOS if it fits perfectly */
    overscroll-behavior: none;
    cursor: default;
    /* We have custom bubbles */
}

/* Container for bubbles to prevent them causing scrollbars */
#cursor-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
}

/* Subtle gradient background - less intense than before */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 1), #000000 80%);
    z-index: -1;
}

.card-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    z-index: 10;
}

/* Profile Section */
.profile-header {
    text-align: center;
}

.image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    /* Soft glow instead of hard border */
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    /* Clean text, no gradient */
}

/* Social Nav - The "Business Card" Links */
.social-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
    /* Center items */
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    /* Very subtle hit area */
    transition: all 0.3s ease;
    width: fit-content;
    /* Don't stretch full width */
}

.social-item:hover {
    color: #fff;
    transform: translateX(5px);
    /* Small movement instead of boxy hover */
    /* No background change, just text brightness or subtle glow? */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.social-item:hover .social-icon {
    transform: scale(1.1);
    color: var(--accent-pink);
    /* Only icon gets color on hover? Or whole item? user said "Pop" elements. Let's make icon pop. */
}

/* Specific brand colors on hover for icons if preferred, but "Schlicht" (Simple) suggests uniform or minimal. 
   Let's stick to White -> Pink hover for consistency with the bubbles and logo eye. */

/* Footer */
.impressum-footer {
    font-size: 0.75rem;
    color: #444;
    text-align: center;
    margin-top: auto;
    font-weight: 300;
}

/* Cursor Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-pink);
    opacity: 0.6;
    pointer-events: none;
    animation: riseAndFade 1.5s ease-out forwards;
    z-index: 9999;
}

@keyframes riseAndFade {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -30px) scale(1.2);
        /* Moving up slightly */
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 400px) {
    .brand-name {
        font-size: 1.8rem;
    }

    .social-item {
        font-size: 1rem;
    }
}