:root {
    --bg-color: #0f172a;
    /* Slate 900 - Deep Blue/Grey */
    --card-bg: rgba(30, 41, 59, 0.7);
    /* Slate 800 with opacity */
    --text-primary: #f1f5f9;
    /* Slate 100 */
    --text-secondary: #94a3b8;
    /* Slate 400 */
    --accent-primary: #10b981;
    /* Emerald 500 - Primary Green */
    --accent-secondary: #06b6d4;
    /* Cyan 500 - Secondary Blue/Teal */
    --accent-glow: rgba(16, 185, 129, 0.3);
    /* Emerald Glow */
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 25%, rgba(16, 185, 129, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.15) 0%, transparent 45%);
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Header */
.profile-header {
    text-align: center;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    /* background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); */
    background: transparent;
    border-radius: 0;
    /* Changed to square/custom for logo */
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 0 20px rgba(189, 0, 255, 0.5); */
    /* border: 3px solid rgba(255, 255, 255, 0.2); */
    border: none;
    box-shadow: none;
}

.logo-svg {
    width: 100%;
    height: 100%;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.neon-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* text-shadow:
        0 0 5px var(--accent-pink),
        0 0 10px var(--accent-pink),
        0 0 20px var(--accent-pink); */
    color: #fff;
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.age-display {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Glassmorphism Cards */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.glass-panel:nth-child(2) {
    animation-delay: 0.1s;
}

.glass-panel:nth-child(3) {
    animation-delay: 0.2s;
}

.glass-panel:nth-child(4) {
    animation-delay: 0.3s;
}

.glass-panel:nth-child(5) {
    animation-delay: 0.4s;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

h2 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.icon {
    font-size: 1.4rem;
}

.item {
    margin-bottom: 1rem;
}

.item:last-child {
    margin-bottom: 0;
}

h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.institution {
    color: var(--accent-secondary);
    font-size: 0.9rem;
}

.status {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
}

.skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skills-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.skills-list li:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--accent-primary);
}

/* Project Links */
.project-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.project-card:visited,
.project-card:active,
.project-card:link {
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-secondary);
    transform: translateX(5px);
}

.project-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--accent-secondary) !important;
    text-decoration: none;
}

.project-desc {
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
    text-decoration: none;
}

.arrow {
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.project-card:hover .arrow {
    transform: translateX(5px);
}

.footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .neon-text {
        font-size: 2rem;
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 5px var(--accent-primary));
}

/* Tagline */
.tagline {
    color: var(--text-primary);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* About Text */
.about-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Description in Experience/Projects */
.description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* Icon adjustments */
.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}