:root {
    --primary-bg: #4a154b;
    /* Luxury Plum Purple */
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(205, 166, 49, 0.2);
    /* Classic Gold Border */
    --accent-gold: #cda631;
    /* Classic Floral Gold */
    --text-main: #f8fafc;
    --text-muted: #e2e8f0;
    --glass-effect: blur(12px) saturate(180%);
}

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

body {
    background-color: var(--primary-bg);
    background-image:
        radial-gradient(at 0% 0%, rgba(205, 166, 49, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(131, 24, 67, 0.3) 0px, transparent 50%);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

/* Profile Section */
.profile {
    margin-bottom: 40px;
}

.avatar-container {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    border-radius: 24px;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-gold), #d97706);
    box-shadow: 0 10px 25px -5px rgba(251, 191, 36, 0.3);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    background-color: #1e293b;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.bio {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Links Section */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background-color: var(--card-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.link-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
}

.link-card:hover::before {
    transform: translateX(100%);
}

.link-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.link-subtext {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 24px 0 8px;
    opacity: 0.8;
}

.link-icon {
    font-size: 20px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-text {
    font-size: 16px;
    font-weight: 400;
}

/* Footer */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.social-icons a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--accent-gold);
}

.footer p {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-card {
    animation: fadeIn 0.5s ease-out forwards;
}

.links-container a:nth-child(1) {
    animation-delay: 0.1s;
}

.links-container a:nth-child(2) {
    animation-delay: 0.2s;
}

.links-container a:nth-child(3) {
    animation-delay: 0.3s;
}

.links-container a:nth-child(4) {
    animation-delay: 0.4s;
}

.links-container a:nth-child(5) {
    animation-delay: 0.5s;
}

/* Mobile optimization */
@media (max-width: 380px) {
    .link-card {
        padding: 14px 20px;
    }

    .link-text {
        font-size: 15px;
    }
}