:root {
    --background: #0F0F0F;
    --text: #ffffff;
    --primary: #FFA726;
    --surface: rgba(255, 255, 255, 0.1);
    --surface-hover: rgba(255, 255, 255, 0.15);
    --glow: rgba(255, 167, 38, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0F0F0F, #1a1a1a);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile {
    text-align: center;
    margin-bottom: 2.5rem;
}

.profile-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 3px solid var(--primary);
}

.profile-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--glow);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #FFA726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link {
    background-color: var(--surface);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.link:hover {
    background-color: var(--surface-hover);
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.2);
}

.link-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 0 2.5rem;
}

.link-icon {
    position: absolute;
    right: -1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.link-icon svg {
    stroke: #FFA726;
    transition: all 0.3s ease;
}

.link:hover .link-icon svg {
    stroke: #fff;
}

.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 167, 38, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
    bottom: 24px;
}

@media (max-width: 480px) {
    .glass-card {
        padding: 1.5rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-image-container {
        width: 100px;
        height: 100px;
    }
    
    .profile-image-glow {
        width: 120px;
        height: 120px;
    }
    
    .link {
        padding: 0.875rem 1.25rem;
    }

    .link-content {
        padding: 0 2rem;
    }
}

@media (prefers-reduced-motion) {
    .link:hover {
        transform: none;
    }
    
    .notification {
        transition: none;
    }
}