@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --bg-color: #0d1226; 
    --text-color: #ffffff;
    --button-border: rgba(255, 255, 255, 0.1);
    --primary-blue: #3897f0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.share-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    z-index: 100;
}

.share-tooltip {
    position: fixed;
    top: 70px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 20;
}

.share-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    width: 100%;
    max-width: 360px; 
    padding: 40px 15px;
    text-align: center;
}

.profile-img {
    width: 96px;       
    height: 96px;
    border-radius: 18px; 
    margin-bottom: 5px;
    object-fit: cover;  
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); 
}

/* BRAND TITLE VERGRÖSSERT */
.brand-title {
    font-size: 1.8rem; /* Von 1.4 auf 1.8 erhöht */
    font-weight: 700;
    margin-top: 15px; 
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.8px;
}

.verified-icon {
    color: var(--primary-blue);
    font-size: 1.4rem; /* Haken auch vergrößert */
}

/* Main Buttons */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 16px; 
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px; 
    border: 1px solid var(--button-border);
    border-radius: 8px; 
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem; 
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.link-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 5;
}

.link-btn:active {
    transform: scale(0.96);
}

.icon-wrapper {
    font-size: 1.3rem; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WIPPER */
@keyframes soft-bounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
    60% { transform: translateY(0); }
    80% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

.link-btn:hover .icon-wrapper i {
    animation: soft-bounce 0.7s ease-out 1;
}

/* Footer */
footer {
    margin-top: 50px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
}

.powered-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #6364ff; 
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}