:root {
    --darkest-blue: #000000;
    --dark-blue: #0a0a0a;
    --medium-dark-blue: #1a1a1a;
    --medium-light-blue: #ffffff;
    --light-blue: #e0e0e0;
    --lightest-blue: #ffffff;
    --accent-gradient: linear-gradient(135deg, #333333, #ffffff);
    --button-gradient: linear-gradient(135deg, #1a1a1a, #000000);
    --glow-color: rgba(255, 255, 255, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--darkest-blue);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    pointer-events: none;
    z-index: 0;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 0;
    background-repeat: repeat;
}

.stars-layer-1 {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.95), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.95), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.85), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255, 255, 255, 0.95), transparent);
    background-size: 300px 200px;
    animation: parallax-slow 60s linear infinite, twinkle 4s ease-in-out infinite;
}

.stars-layer-2 {
    background-image: 
        radial-gradient(1px 1px at 50px 100px, rgba(255, 255, 255, 0.75), transparent),
        radial-gradient(2px 2px at 150px 50px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 250px 150px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 350px 80px, rgba(255, 255, 255, 0.6), transparent);
    background-size: 450px 300px;
    animation: parallax-medium 45s linear infinite, twinkle 6s ease-in-out infinite 2s;
}

.stars-layer-3 {
    background-image: 
        radial-gradient(1px 1px at 80px 60px, rgba(255, 255, 255, 0.55), transparent),
        radial-gradient(1px 1px at 200px 120px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 320px 40px, rgba(255, 255, 255, 0.5), transparent);
    background-size: 600px 400px;
    animation: parallax-fast 30s linear infinite, twinkle 8s ease-in-out infinite 4s;
}

@keyframes parallax-slow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-150px, -100px); }
}

@keyframes parallax-medium {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-225px, -150px); }
}

@keyframes parallax-fast {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-300px, -200px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--lightest-blue), transparent);
    border-radius: 50%;
    opacity: 0;
    animation: shoot 8s ease-in-out infinite;
}

.shooting-star:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shooting-star:nth-child(2) {
    top: 35%;
    left: 60%;
    animation-delay: 3s;
}

.shooting-star:nth-child(3) {
    top: 55%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    10% {
        transform: translateX(300px) translateY(300px) rotate(-45deg);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; animation-delay: -5s; animation-duration: 20s; }
.particle:nth-child(3) { left: 35%; animation-delay: -10s; animation-duration: 28s; }
.particle:nth-child(4) { left: 50%; animation-delay: -3s; animation-duration: 22s; }
.particle:nth-child(5) { left: 65%; animation-delay: -8s; animation-duration: 26s; }
.particle:nth-child(6) { left: 75%; animation-delay: -15s; animation-duration: 24s; }
.particle:nth-child(7) { left: 85%; animation-delay: -2s; animation-duration: 30s; }
.particle:nth-child(8) { left: 95%; animation-delay: -12s; animation-duration: 18s; }

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.4;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 30%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.03) 70%,
        transparent 100%
    );
    animation: aurora-wave 15s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes aurora-wave {
    0%, 100% {
        transform: translateX(-10%) scaleY(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(10%) scaleY(1.2);
        opacity: 0.8;
    }
}

.nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nebula-cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: screen;
}

.nebula-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: nebula-drift-1 40s ease-in-out infinite;
}

.nebula-2 {
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    bottom: 10%;
    left: -15%;
    animation: nebula-drift-2 35s ease-in-out infinite;
}

.nebula-3 {
    width: 400px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%);
    top: 40%;
    right: -5%;
    animation: nebula-drift-3 45s ease-in-out infinite;
}

@keyframes nebula-drift-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-50px, 30px) rotate(5deg) scale(1.1); }
    66% { transform: translate(30px, -20px) rotate(-3deg) scale(0.95); }
}

@keyframes nebula-drift-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(60px, -40px) rotate(-8deg) scale(1.15); }
}

@keyframes nebula-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    25% { transform: translate(-30px, 50px) scale(1.1); opacity: 1; }
    75% { transform: translate(40px, -30px) scale(0.9); opacity: 0.6; }
}

.light-rays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ray {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transform-origin: top center;
}

.ray-1 {
    width: 2px;
    height: 40%;
    top: 0;
    left: 20%;
    animation: ray-pulse 8s ease-in-out infinite;
}

.ray-2 {
    width: 1px;
    height: 35%;
    top: 0;
    left: 50%;
    animation: ray-pulse 10s ease-in-out infinite 2s;
}

.ray-3 {
    width: 2px;
    height: 45%;
    top: 0;
    left: 80%;
    animation: ray-pulse 12s ease-in-out infinite 4s;
}

@keyframes ray-pulse {
    0%, 100% {
        opacity: 0;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1);
    }
}

.orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: orb-float 20s ease-in-out infinite;
}

.orb-1 {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    top: 20%;
    left: 15%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.orb-2 {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    top: 60%;
    right: 20%;
    animation-duration: 30s;
    animation-delay: -8s;
}

.orb-3 {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    top: 35%;
    right: 10%;
    animation-duration: 22s;
    animation-delay: -15s;
}

.orb-4 {
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    bottom: 25%;
    left: 25%;
    animation-duration: 28s;
    animation-delay: -5s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

.wave-lines {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}

.wave-path {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
}

.wave-1 {
    stroke: rgba(255, 255, 255, 0.08);
    animation: wave-flow 25s linear infinite;
}

.wave-2 {
    stroke: rgba(255, 255, 255, 0.05);
    animation: wave-flow 20s linear infinite reverse;
}

@keyframes wave-flow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 25s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--medium-light-blue), var(--medium-dark-blue));
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--light-blue), var(--medium-light-blue));
    bottom: 15%;
    left: -150px;
    animation-delay: -8s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--medium-dark-blue), var(--dark-blue));
    bottom: -100px;
    right: 15%;
    animation-delay: -16s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: var(--light-blue);
    top: 40%;
    right: -50px;
    animation-delay: -4s;
    opacity: 0.15;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: var(--medium-light-blue);
    top: 20%;
    left: -80px;
    animation-delay: -12s;
    opacity: 0.12;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(30px, -40px) scale(1.08) rotate(5deg); }
    50% { transform: translate(-20px, 30px) scale(0.95) rotate(-5deg); }
    75% { transform: translate(40px, 20px) scale(1.03) rotate(3deg); }
}

.container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 35px;
    padding-top: 20px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
}

.profile-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--accent-gradient);
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.profile-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid var(--darkest-blue);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue), var(--darkest-blue));
    z-index: 1;
}

.profile-placeholder {
    font-size: 42px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.profile-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lightest-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--medium-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.subtitle-icon {
    display: inline-flex;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--medium-light-blue);
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--medium-light-blue), transparent);
}

.bio-section {
    margin: 30px 0;
    padding: 0 10px;
    animation: fadeInUp 0.6s ease-out backwards;
    animation-delay: 0.15s;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: center;
    margin-bottom: 14px;
    opacity: 0.9;
}

.bio-text:last-child {
    margin-bottom: 0;
}

.links-container {
    width: 100%;
}

.link-section {
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out backwards;
}

.link-section:nth-child(1) { animation-delay: 0.1s; }
.link-section:nth-child(2) { animation-delay: 0.2s; }
.link-section:nth-child(3) { animation-delay: 0.3s; }
.link-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title i {
    font-size: 0.9rem;
    color: var(--medium-light-blue);
}

.link-button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 22px;
    background: var(--button-gradient);
    color: var(--lightest-blue);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button i:first-child {
    font-size: 1.1rem;
    width: 28px;
    text-align: center;
    margin-right: 12px;
    color: var(--light-blue);
    transition: all 0.3s ease;
}

.link-button span {
    flex: 1;
    text-align: left;
}

.arrow-icon {
    font-size: 0.85rem !important;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-right: 0 !important;
    width: auto !important;
}

.link-button:hover {
    background: linear-gradient(135deg, var(--medium-light-blue), var(--medium-dark-blue));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    border-color: var(--medium-light-blue);
}

.link-button:hover i:first-child {
    color: var(--lightest-blue);
    transform: scale(1.1);
}

.link-button:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

.link-button:active {
    transform: translateY(-1px);
}

.social-button.instagram:hover {
    background: linear-gradient(135deg, #e1306c, #833ab4);
}

.social-button.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.social-button.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #005582);
}

.footer {
    margin-top: 35px;
    padding-bottom: 20px;
    text-align: center;
    animation: fadeIn 0.8s ease-out 0.5s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.footer-content p {
    color: var(--medium-light-blue);
    font-size: 0.9rem;
}

.footer-tagline {
    font-size: 0.8rem !important;
    color: var(--light-blue) !important;
    opacity: 0.7;
    margin-top: 5px;
    font-style: italic;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(135deg, var(--dark-blue), var(--darkest-blue));
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--light-blue);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--lightest-blue);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--darkest-blue);
}

.modal-title {
    color: var(--lightest-blue);
    font-size: 1.4rem;
    font-weight: 600;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zelle-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(26, 54, 93, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--medium-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    min-width: 0;
}

.zelle-label {
    color: var(--light-blue);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.zelle-value {
    color: var(--lightest-blue);
    font-size: 1rem;
    font-weight: 500;
    word-break: break-all;
}

.copy-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--medium-dark-blue);
    color: var(--lightest-blue);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-button:hover {
    background: var(--medium-light-blue);
    transform: scale(1.05);
}

.copy-button.copied {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

@media (max-width: 480px) {
    .name {
        font-size: 1.9rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .profile-wrapper {
        width: 110px;
        height: 110px;
    }
    
    .profile-ring {
        width: 120px;
        height: 120px;
    }
    
    .profile-picture {
        width: 110px;
        height: 110px;
    }
    
    .profile-placeholder {
        font-size: 36px;
    }
    
    .link-button {
        padding: 14px 18px;
    }
    
    .zelle-info {
        flex-wrap: wrap;
    }
    
    .copy-button {
        width: 100%;
        justify-content: center;
    }
    
    .bio-section {
        margin: 25px 0;
        padding: 0 5px;
    }
    
    .bio-text {
        font-size: 1.05rem;
        line-height: 1.9;
        color: #ffffff !important;
        opacity: 1;
    }
}
