:root {
    --neon-pink: #ff007f;
    --neon-purple: #9d00ff;
    --neon-green: #39ff14;
    --dark-bg: #050505;
}

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

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
}

/* FIX: Ensure Background is always visible */
.glow-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 50%, #120025 0%, #050505 100%);
    z-index: -1;
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.v-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    padding: 0 10%;
    position: relative;
}

/* Navbar Neon */
nav {
    position: fixed;
    top: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 5%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
}

.nav-links a { 
    text-decoration: none; color: white; margin-left: 20px; 
    font-weight: 700; transition: 0.3s; 
}
.nav-links a.active { color: var(--neon-pink); text-shadow: 0 0 10px var(--neon-pink); }

/* Animations & Glows */
.glitch-text {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(3rem, 12vw, 8rem);
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 0, 127, 0.5));
}

.kidney-char {
    width: clamp(250px, 35vw, 400px);
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.bubble {
    background: white; color: black; padding: 10px 20px;
    border-radius: 15px; font-weight: 800;
    position: absolute; top: -20px; right: 0;
    box-shadow: 0 5px 0 var(--neon-green);
    opacity: 0; transform: scale(0.8); transition: 0.5s;
}

.v-section.in-view .bubble { opacity: 1; transform: scale(1); }

/* Apply & Form Styles */
.hidden { display: none !important; }
.character-row { display: flex; gap: 10px; margin-bottom: 30px; }
.kidney-char-small { width: 80px; animation: floating 3s ease-in-out infinite; }

.pulse-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 4rem; color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    cursor: pointer; animation: neonPulse 2s infinite;
}

@keyframes neonPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.form-card {
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid var(--neon-purple);
    padding: 30px; border-radius: 20px;
    box-shadow: 0 0 30px var(--neon-purple);
}

input {
    width: 100%; background: transparent; border: 1px solid #444;
    padding: 12px; color: white; margin-bottom: 15px; border-radius: 5px;
}

input:focus { border-color: var(--neon-green); outline: none; box-shadow: 0 0 10px var(--neon-green); }

.submit-btn {
    width: 100%; background: var(--neon-pink); color: white;
    padding: 12px; border: none; font-family: 'Permanent Marker';
    font-size: 1.5rem; cursor: pointer;
}

.feedback-msg.error { color: #ff3131; text-shadow: 0 0 5px #ff3131; margin-top: 10px; }
