:root {
    --emerald: #75bb8d;
    --dark-void: #050505;
    --glass-card: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

#bg-canvas-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /
    pointer-events: none;
}

.about-premium-v3 {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

.main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

/* Hero Section */
.premium-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.glitch-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 15vw, 9rem);
    font-weight: 800;
    letter-spacing: -4px;
    background: linear-gradient(180deg, #fff 40%, var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Section */
.glass-section {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 4rem;
}

.image-orb {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid var(--emerald);
    padding: 20px;
    background: radial-gradient(circle, rgba(117,187,141,0.1), transparent);
    animation: float 6s ease-in-out infinite;
}

.image-orb img { width: 100%; }

/* Bento Skills Grid */
.skills-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.bento-item {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-item:hover {
    transform: translateY(-10px);
    border-color: var(--emerald);
    background: rgba(117,187,141,0.05);
}

.skill-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.skill-pill-container span {
    background: rgba(255,255,255,0.05);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid var(--glass-border);
}

.progress-container {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.p-fill {
    height: 100%;
    background: var(--emerald);
    box-shadow: 0 0 10px var(--emerald);
}

.emerald-text { color: var(--emerald); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


@media (max-width: 850px) {
    .glass-section { flex-direction: column-reverse; padding: 2rem; text-align: center; }
    .skills-bento { grid-template-columns: 1fr; }
    .image-orb { width: 180px; height: 180px; }
}