:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-color: #d946ef; /* Neon Pink */
    --accent-glow: rgba(217, 70, 239, 0.4);
    --secondary-accent: #8b5cf6; /* Violet */
    --gold: #fbbf24;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    /* Subtle mesh gradient background */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(217, 70, 239, 0.15) 0%, transparent 20%);
}

.container {
    width: 100%;
    max-width: 480px; /* Mobile focused max-width */
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.profile-img-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform 0.3s ease;
}

.profile-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    /* Gradient text */
    background: linear-gradient(135deg, #fff 0%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Links List */
.links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between icon, text, and arrow */
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Icon separation */
.link-btn i:first-child {
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
    margin-right: 1rem;
}

.link-btn span {
    flex-grow: 1;
    text-align: center;
    letter-spacing: 0.5px;
}

.link-btn .arrow {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.link-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.link-btn:hover .arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Specific Button Styles */
.highlight {
    background: linear-gradient(90deg, 
        rgba(217, 70, 239, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(217, 70, 239, 0.5);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.2);
}

.highlight-pix {
    border-color: rgba(45, 212, 191, 0.3); /* Teal for Pix */
}

.fire-effect {
    color: #fff;
}
.fire-effect i:first-child {
    color: #f87171; /* Red/Orange for fire */
}

/* Animations */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(217, 70, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0); }
}

.pulse-animation {
    animation: pulse-gold 2s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.fade-in-final {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

/* Footer */
footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.6;
}

/* Floating Particles (Simple CSS implementation for now, can be JS enhanced) */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* Very subtle noise texture overlay could go here */
}

/* Media Query Refinements */
@media (max-width: 380px) {
    .profile-name { font-size: 1.75rem; }
    .link-btn { padding: 1rem; font-size: 1rem; }
}
