:root {
    --bg-color: #050510;
    --text-color: #e0e0e0;
    --primary-color: #6d28d9;
    /* Deep Purple */
    --accent-color: #06b6d4;
    /* Cyan */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 800px;
}

/* Profile Image */
.profile-container {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.profile-ring {
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 30px rgba(109, 40, 217, 0.5);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-color);
    display: block;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-container:hover .profile-ring {
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.6);
}

.profile-container:hover .profile-img {
    transform: rotate(-180deg) scale(0.98);
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.highlight-name {
    color: #e2e8f0;
    font-weight: 500;
    cursor: default;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.highlight-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -5%;
    width: 110%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' preserveAspectRatio='none'%3E%3Cpath d='M5 25 Q 50 35 100 25 T 195 25' stroke='%2306b6d4' stroke-width='5' stroke-linecap='round' fill='none' /%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.8;
    pointer-events: none;
    transition: var(--transition);
}

.highlight-name:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(109, 40, 217, 0.6);
    transform: translateY(-2px) scale(1.02);
}

.highlight-name:hover::after {
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.5));
    transform: scaleX(1.05);
}

.bio {
    margin-bottom: 3rem;
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.description {
    margin-top: 1.5rem;
    color: #cbd5e1;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.tag {
    background: rgba(109, 40, 217, 0.15);
    color: #d8b4fe;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: var(--transition);
}

.tag:hover {
    background: rgba(109, 40, 217, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.2);
}

/* Buttons */
.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.secondary-actions {
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), #4c1d95);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle glass */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
    color: #fff;
}

.btn-icon-svg {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
}

.glass-effect {
    position: relative;
    overflow: hidden;
}

.glass-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.glass-effect:hover::after {
    left: 100%;
}


.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Email Link */
.contact-container {
    margin-top: 2rem;
}

.email-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.email-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    transform: translateX(-50%);
}

.email-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(109, 40, 217, 0.5);
}

.email-link:hover::after {
    width: 100%;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
    }
}