:root {
    --bg-dark: #070b19;
    --card-bg: rgba(15, 23, 42, 0.75);
    --primary-neon: #00f2fe;
    --secondary-neon: #4facfe;
    --purple-neon: #7f00ff;
    --pink-neon: #ff007f;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fredoka', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* --- TECH BACKGROUND CANVAS --- */
#tech-canvas {
    display: none;
}

/* --- AMBIENT GLOW SHAPES --- */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: orbFloat 10s infinite alternate ease-in-out;
}
.orb-1 { width: 350px; height: 350px; background: var(--primary-neon); top: 10%; left: -5%; }
.orb-2 { width: 450px; height: 450px; background: var(--purple-neon); bottom: 10%; right: -5%; }

@keyframes orbFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.15); }
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7, 11, 25, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-neon), var(--purple-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-neon);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--primary-neon);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary-neon); }

/* --- MOBILE MENU TOGGLE --- */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-neon);
    cursor: pointer;
}

/* --- MUSIC BUTTON --- */
.music-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.music-btn:hover {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

/* --- FULL SCREEN SLIDE SECTIONS --- */
section {
    min-height: 100vh;
    padding: 120px 8% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

/* --- COOL HEADING ANIMATIONS --- */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-family: 'Fredoka', sans-serif;
    text-transform: uppercase;
    display: inline-block;
}

/* Small, dim, thin-weight line sitting above the bold title (the "About" / "My" part) */
.section-title h2 .st-light {
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 6px;
    opacity: 0.5;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Big, bold, bright gradient line (the "Me" / "Skills" part) */
.section-title h2 .st-solid {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff, var(--primary-neon), var(--purple-neon), #fff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s infinite linear;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-neon), var(--pink-neon));
    margin: 15px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--primary-neon);
}

/* --- HERO SECTION --- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text h3 {
    color: var(--primary-neon);
    font-family: 'Fredoka', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', sans-serif;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Thin, dim, small "Hello, my" line above the big bold "name's Krish" line */
.hero-text h1 .hero-light {
    display: block;
    font-size: 0.5em;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.55;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-text .btn-group {
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gradient animated heading (KRISH VERMA) */
.glow-text {
    background: linear-gradient(90deg, #fff, var(--primary-neon), var(--purple-neon), #fff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite;
    text-shadow: 0 0 30px rgba(0, 242, 254, 0.35);
}

/* Typing cursor effect */
#typing-text::after {
    content: '|';
    display: inline-block;
    margin-left: 4px;
    color: var(--primary-neon);
    animation: blinkCursor 0.8s steps(1) infinite;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

/* HERO PROFILE IMAGE WITH AI GLOW */
.hero-img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border: 3px solid var(--primary-neon);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.35);
}

.profile-wrapper::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 254, 0.35);
    pointer-events: none;
    z-index: -1;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #0f172a;
    position: relative;
    z-index: 2;
}

/* FLOATING AI STICKERS */
.ai-sticker {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: stickerFloat 4s infinite ease-in-out alternate;
}

.sticker-1 { top: -10px; left: -10px; border-left: 4px solid var(--primary-neon); }
.sticker-2 { bottom: 10px; right: -20px; border-left: 4px solid var(--pink-neon); animation-delay: 2s; }

@keyframes stickerFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(3deg); }
}

/* BUTTONS */
.btn-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-neon), var(--purple-neon));
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.6);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* --- CARDS & GLASSMORPHISM --- */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.2);
}

/* --- EDUCATION SLIDE --- */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.edu-card h3 {
    font-size: 1.4rem;
    color: var(--primary-neon);
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', sans-serif;
}

.edu-card .inst {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.badge {
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-neon);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 242, 254, 0.3);
    display: inline-block;
}

/* --- SKILLS SLIDE --- */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.skill-node {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 16px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-node i {
    font-size: 1.4rem;
    color: var(--primary-neon);
}

.skill-node:hover {
    background: linear-gradient(45deg, var(--primary-neon), var(--purple-neon));
    color: #fff;
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 0 25px var(--primary-neon);
    border-color: transparent;
}

.skill-node:hover i { color: #fff; }

/* --- PROJECTS SLIDE --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: pointer;
}

.project-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--primary-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: var(--primary-neon);
    transition: all 0.4s ease;
}

.project-card:hover .project-icon-wrapper,
.cert-card:hover .project-icon-wrapper {
    background: var(--primary-neon);
    color: var(--bg-dark);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 30px var(--primary-neon);
}

.project-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.project-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-neon);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-sm:hover {
    background: var(--primary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary-neon);
}

/* --- CERTIFICATES GRID & CARDS --- */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cert-card {
    text-align: center;
}

.cert-view-btn {
    margin-top: 18px;
    padding: 10px 24px;
    border: 1px solid var(--primary-neon);
    background: rgba(0, 242, 254, 0.08);
    color: var(--primary-neon);
    border-radius: 30px;
    font-family: 'Roboto Slab', serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cert-view-btn i {
    margin-right: 6px;
}

.cert-view-btn:hover {
    background: var(--primary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-neon);
    transform: translateY(-2px);
}

/* --- CERTIFICATE MODAL POPUP --- */
.cert-modal {
    display: none;
    position: fixed;
    z-index: 20000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 17, 0.85);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
}

.cert-modal.show {
    display: flex;
}

.cert-modal-box {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(15,23,42,0.9), rgba(7,11,25,0.9));
    border: 1px solid var(--primary-neon);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.35), 0 0 60px rgba(127, 0, 255, 0.25);
    transform: perspective(1000px) rotateX(15deg) scale(0.7);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.cert-modal.show .cert-modal-box {
    transform: perspective(1000px) rotateX(0deg) scale(1);
    opacity: 1;
}

.cert-modal-content {
    display: block;
    max-width: 80vw;
    max-height: 78vh;
    width: auto;
    height: auto;
    border-radius: 10px;
}

.cert-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-neon);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary-neon);
    z-index: 20001;
    transition: transform 0.3s ease;
}

.cert-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

/* --- CONTACT SECTION (current layout used in HTML) --- */
.status-pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.cyber-h3 {
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 10px;
    color: var(--primary-neon);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    padding: 20px;
}

.message-card {
    padding: 40px;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: 0.3s;
}

.contact-info-item:hover {
    border-color: var(--primary-neon);
    transform: translateX(10px);
}

.contact-info-item i { color: var(--primary-neon); font-size: 1.2rem; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
}

.btn-send {
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, var(--primary-neon), var(--purple-neon));
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover { transform: scale(1.02); box-shadow: 0 0 20px var(--primary-neon); }

.social-grid-mini { display: flex; gap: 15px; margin-top: 20px; }
.social-icon-btn {
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border);
    color: white; text-decoration: none;
    transition: 0.3s;
}
.social-icon-btn:hover {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    box-shadow: 0 0 15px var(--primary-neon);
    transform: translateY(-3px);
}

/* --- TOAST NOTIFICATION --- */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-neon);
    color: var(--bg-dark);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 800;
    transform: translateY(100px);
    transition: transform 0.3s ease;
    z-index: 10000;
    box-shadow: 0 0 20px var(--primary-neon);
}
.toast.show { transform: translateY(0); }

/* --- SCROLL REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- BACKGROUND VIDEO SECTIONS --- */
section.has-media { overflow: hidden; }

.section-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.section-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) saturate(1.1);
}

.section-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 21, 23, 0.55), rgba(8, 21, 23, 0.8));
}

.media-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-family: monospace;
    font-size: 0.75rem;
    color: #57d9b3;
    background: rgba(8, 21, 23, 0.55);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 5px 12px;
    border-radius: 20px;
}

.merged-media-wrap {
    position: relative;
    overflow: hidden;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    background: #040711;
}

/* RESPONSIVE DESIGN — ek hi jagah, saare mobile rules yaha  */

@media (max-width: 900px) {
  .follow-sidebar { display: none; }
  .scroll-indicator { left: 50%; transform: translateX(-50%); bottom: 20px; }
  .hero { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-img-container { order: -1; scale: 0.8; }
  .btn-group { justify-content: center; }
  .hero-text h1 { font-size: 2.5rem; }

   .menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        right: auto;
        flex-direction: column;
        background: rgba(7, 11, 25, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        border-radius: 0;
        display: flex;
    }

    .nav-links.active { left: 0; }

    .contact-container { grid-template-columns: 1fr; }
}
.follow-sidebar {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 3;
}
.follow-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
}
.follow-line { width: 1px; height: 50px; background: var(--glass-border); }
.follow-icons { display: flex; flex-direction: column; gap: 12px; }
.follow-icons a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}
.follow-icons a:hover {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

.scroll-indicator {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    z-index: 999;
    background: rgba(7, 11, 25, 0.6);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}
.scroll-circle {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--primary-neon);
    animation: scrollBounce 1.8s infinite ease-in-out;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}
.typing-cursor::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    color: var(--primary-neon);
    animation: blinkCursor 0.8s steps(1) infinite;
}
@keyframes blinkCursor {
    50% { opacity: 0; }
}