:root {
    --primary-color: #ffffff;
    --text-primary: #e0e0e0;
    --text-secondary: #888888;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.07);
    --card-border: rgba(255, 255, 255, 0.05);
    --highlight-bg: rgba(255, 255, 255, 0.08);
    --highlight-hover: rgba(255, 255, 255, 0.12);
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #050505;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Dynamic Animated Background Blobs */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #050505;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    opacity: 0.15;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #442266, #223388);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #115577, #113366);
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #662222, #554411);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.container {
    width: 100%;
    max-width: 680px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Wind Animation Keyframes */
@keyframes windFlutter {
    0% { transform: scale(0.95) skewX(-10deg) rotate(5deg) translateY(-2px); }
    25% { transform: scale(0.95) skewX(-8deg) rotate(3deg) translateY(0px); }
    50% { transform: scale(0.95) skewX(-12deg) rotate(6deg) translateY(2px); }
    75% { transform: scale(0.95) skewX(-9deg) rotate(4deg) translateY(-1px); }
    100% { transform: scale(0.95) skewX(-11deg) rotate(5deg) translateY(1px); }
}

@keyframes windStreaks {
    0% { transform: translateX(-150px); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateX(150px); opacity: 0; }
    100% { transform: translateX(150px); opacity: 0; }
}

.profile-image-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #444, #222, #111);
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
}

.profile-image-container::before,
.profile-image-container::after {
    content: '';
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    filter: blur(1px);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.profile-image-container::before {
    top: 30%;
    width: 80px;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.profile-image-container::after {
    top: 70%;
    width: 50px;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.profile-image-container:hover {
    animation: windFlutter 0.12s infinite alternate ease-in-out;
}

.profile-image-container:hover::before {
    animation: windStreaks 0.4s infinite linear;
}

.profile-image-container:hover::after {
    animation: windStreaks 0.5s infinite linear 0.15s;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #050505;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.profile-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text-primary);
    font-size: 1.5rem;
    text-decoration: none;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Call to Action Text */
.call-to-action {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.link-card:hover {
    background: var(--card-hover);
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.link-card.highlight {
    background: var(--highlight-bg);
    border-color: rgba(255, 255, 255, 0.3);
}

.link-card.highlight:hover {
    background: var(--highlight-hover);
    border-color: rgba(255, 255, 255, 0.5);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.link-icon {
    font-size: 1.4rem;
    opacity: 0.9;
}

.link-title {
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.link-arrow {
    font-size: 1.5rem;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: auto;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1.25rem;
    }
    
    .profile-name {
        font-size: 1.35rem;
    }
    
    .link-card {
        padding: 1rem 1.25rem;
    }
    
    .link-title {
        font-size: 1rem;
    }
}
