:root {
    --primary-color: #ffffff;
    --accent-color: #00f2ff;
    /* Neon Blue/Cyan */
    --neon-pink: #ff00ff;
    --neon-purple: #9d00ff;
    --bg-color: #050505;
    --text-color: #ffffff;
    --glass-bg: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Background Photographic Image with Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('480640842_1676510229957572_2823662036039977513_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    filter: brightness(0.8) contrast(1.1);
}

/* Subtle Drift for the photo to add some life */
body::before {
    animation: backgroundDrift 30s ease-in-out infinite alternate;
}

@keyframes backgroundDrift {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15) translate(-2%, -2%);
    }
}


.container {
    margin: auto;
    text-align: center;
    padding: 3.5rem 2.5rem;
    border-radius: 2.5rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1), containerPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes containerPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.3), 0 8px 32px 0 rgba(0, 0, 0, 0.8);
        border-color: rgba(0, 242, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 0, 255, 0.4), 0 0 25px rgba(157, 0, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1.02);
    }

    50% {
        transform: translateY(-10px) scale(0.98);
    }
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #808080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* EQ Music Visualizer */
.eq-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    height: 40px;
    margin-bottom: 2.5rem;
}

.eq-bar {
    width: 6px;
    background: var(--accent-color);
    border-radius: 3px;
    animation: eq-bounce 1s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.bar-1 {
    height: 50%;
    animation-delay: -0.2s;
}

.bar-2 {
    height: 90%;
    animation-delay: -0.4s;
}

.bar-3 {
    height: 35%;
    animation-delay: -0.6s;
}

.bar-4 {
    height: 75%;
    animation-delay: -0.1s;
}

.bar-5 {
    height: 45%;
    animation-delay: -0.3s;
}

.bar-6 {
    height: 85%;
    animation-delay: -0.5s;
}

@keyframes eq-bounce {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.8;
    }

    50% {
        transform: scaleY(0.3);
        opacity: 0.4;
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 2rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
    opacity: 1;
    filter: drop-shadow(0 0 10px var(--accent-color));
}


/* Update SVG for gradient support via a hidden SVG at body start or inlined */

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    body {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .container {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem;
    }

    .profile-img {
        width: 140px;
        height: 140px;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-links a {
        font-size: 1.75rem;
    }
}