:root {
    --bg-dark: #0a1217;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
}

/* --- ATMOSPHERE --- */
.lunar-disk {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(6, 182, 212, 0.03) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: lunar-pulse 10s infinite ease-in-out;
}

@keyframes lunar-pulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.cosmic-mist {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #0a1217 10%, transparent 100%);
    z-index: 5;
}

/* --- NEW ZOOM REVEALS --- */

/* Standard Fade Up */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom In (Small to Normal) - Best for cards */
.reveal-zoom-in {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-zoom-in.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Zoom Out (Large to Normal) - Best for Hero/Footer */
.reveal-zoom-out {
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-zoom-out.active {
    opacity: 1;
    transform: scale(1);
}

/* --- EXISTING ANIMATIONS --- */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.animate-marquee { animation: marquee 40s linear infinite; }

.shooting-star {
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(-45deg);
    opacity: 0;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.8));
    animation: shoot 4s ease-in-out forwards;
    pointer-events: none;
    z-index: 0;
}
@keyframes shoot {
    0% { transform: translateX(0) translateY(0) rotate(-45deg); opacity: 1; width: 0; }
    30% { opacity: 1; width: 150px; }
    100% { transform: translateX(-300px) translateY(300px) rotate(-45deg); opacity: 0; width: 0; }
}

/* --- COMPONENTS --- */
.soft-skill-tag {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #6ee7b7;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}
.soft-skill-tag:hover {
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

/* Holographic Card */
.service-card {
    position: relative;
    border-radius: 0.5rem;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    background: radial-gradient(600px circle at var(--mouse-x, 50% 50%) var(--mouse-y, 50% 50%), rgba(16, 185, 129, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}
.service-card:hover::before { opacity: 1; }

.service-card-border {
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    padding: 1px;
    background: radial-gradient(400px circle at var(--mouse-x, 50% 50%) var(--mouse-y, 50% 50%), rgba(52, 211, 153, 0.6), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 5;
}
.service-card:hover .service-card-border { opacity: 1; }