:root {
    --bg-main: #0a0a0a;
    --text-primary: #ededed;
    --text-secondary: #a1a1aa;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Subtle clean lighting, removing heavy gradients */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255,255,255,0.02) 0%, transparent 50%);
}

.container {
    width: 100%;
    max-width: 440px;
    padding: 2rem;
    z-index: 1;
    animation: fadeIn 0.6s ease-out forwards;
}

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

.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Clean, crisp profile image with a subtle metallic ring */
.image-wrapper {
    position: relative;
    width: 104px;
    height: 104px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.03) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #111;
    border: 2px solid #0a0a0a;
}

.name {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.15);
}

.bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Minimalist, professional link boxes */
.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.link-item i {
    font-size: 1.25rem;
    position: absolute;
    left: 1.25rem;
    color: var(--text-secondary);
    transition: color 0.2s ease, transform 0.2s ease;
}

.link-item span {
    position: relative;
    z-index: 1;
}

.link-item:hover {
    transform: scale(1.015);
    background: rgba(255, 255, 255, 0.05);
    /* Subtle pop of the specific brand color on hover */
    border-color: var(--hover-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.link-item:hover i {
    color: var(--hover-color);
    transform: scale(1.1);
}

/* Staggered animation for links */
.link-item { opacity: 0; animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.15s; }
.link-item:nth-child(3) { animation-delay: 0.2s; }
.link-item:nth-child(4) { animation-delay: 0.25s; }
.link-item:nth-child(5) { animation-delay: 0.3s; }
.link-item:nth-child(6) { animation-delay: 0.35s; }
.link-item:nth-child(7) { animation-delay: 0.4s; }
.link-item:nth-child(8) { animation-delay: 0.45s; }

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

/* Advertisement Banner Style */
.link-item.featured-card {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    overflow: hidden;
}

.link-item.featured-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

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

.link-item.featured-card:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: rgba(139, 92, 246, 0.7);
}

.featured-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 2;
}

.featured-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #8B5CF6;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.featured-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.link-item.featured-card .featured-title i {
    position: static;
    left: auto;
    font-size: 1.25rem;
    color: #8B5CF6;
}

.featured-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
    line-height: 1.4;
    text-align: left;
    max-width: 90%;
}

.link-item.featured-card > i.ph-arrow-right {
    position: absolute;
    right: 1.25rem;
    left: auto;
    color: #8B5CF6;
    font-size: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.link-item.featured-card:hover > i.ph-arrow-right {
    transform: translateY(-50%) translateX(5px);
}
