@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --c1: #a5b4fc;   /* soft indigo */
    --c2: #f9a8d4;   /* soft pink */
    --c3: #fcd34d;   /* soft amber */
    --c4: #6ee7b7;   /* soft emerald */
    --c5: #67e8f9;   /* soft cyan */
    --c6: #c4b5fd;   /* soft violet */
    --ink: #4c1d95;
    --muted: #9ca3af;
    --line: rgba(167, 139, 250, 0.18);
    --white: #ffffff;
    --bg: #fdf4ff;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); line-height: 1.7; overflow-x: hidden; background-color: #fdf4ff; background-image: radial-gradient(circle at 10% 15%, rgba(165,180,252,.35), transparent 25%), radial-gradient(circle at 85% 20%, rgba(249,168,212,.3), transparent 25%), radial-gradient(circle at 75% 75%, rgba(103,232,249,.25), transparent 30%), radial-gradient(circle at 20% 85%, rgba(196,181,253,.3), transparent 25%), radial-gradient(circle at 50% 50%, rgba(110,231,183,.15), transparent 35%); background-attachment: fixed; }
body::before { content: ''; position: fixed; inset: 0; pointer-events: none; opacity: .35; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23c4b5fd' stroke-width='1.2' opacity='0.5'%3E%3Cg transform='translate(20,20)'%3E%3Cellipse cx='0' cy='-8' rx='5' ry='8'/%3E%3Cellipse cx='0' cy='8' rx='5' ry='8'/%3E%3Cellipse cx='-8' cy='0' rx='8' ry='5'/%3E%3Cellipse cx='8' cy='0' rx='8' ry='5'/%3E%3Ccircle cx='0' cy='0' r='3' fill='%23f9a8d4' stroke='none' opacity='0.6'/%3E%3C/g%3E%3Cg transform='translate(60,55)'%3E%3Cellipse cx='0' cy='-6' rx='4' ry='6'/%3E%3Cellipse cx='0' cy='6' rx='4' ry='6'/%3E%3Cellipse cx='-6' cy='0' rx='6' ry='4'/%3E%3Cellipse cx='6' cy='0' rx='6' ry='4'/%3E%3Ccircle cx='0' cy='0' r='2.5' fill='%23a5b4fc' stroke='none' opacity='0.6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); background-size: 80px 80px; }
body::after { content: ''; position: fixed; inset: 0; pointer-events: none; opacity: .25; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23f9a8d4' stroke-width='1' opacity='0.4'%3E%3Cg transform='translate(50,50)'%3E%3Cellipse cx='0' cy='-10' rx='6' ry='10'/%3E%3Cellipse cx='0' cy='10' rx='6' ry='10'/%3E%3Cellipse cx='-10' cy='0' rx='10' ry='6'/%3E%3Cellipse cx='10' cy='0' rx='10' ry='6'/%3E%3Cellipse cx='-7' cy='-7' rx='8' ry='5' transform='rotate(45)'/%3E%3Cellipse cx='7' cy='7' rx='8' ry='5' transform='rotate(45)'/%3E%3Ccircle cx='0' cy='0' r='4' fill='%23fcd34d' stroke='none' opacity='0.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); background-size: 100px 100px; background-position: 40px 40px; }

/* NAVBAR */
nav { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); width: min(92%, 1120px); padding: 13px 22px 13px 26px; display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,.85); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.9); border-radius: 18px; box-shadow: 0 14px 36px rgba(167,139,250,.1); z-index: 10; }
.logo { font-family: 'Manrope', sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: -.04em; background: linear-gradient(135deg, var(--c1), var(--c2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo::after { content: ''; }
nav ul { display: flex; gap: 22px; list-style: none; }
nav a { color: var(--muted); text-decoration: none; font-size: .8rem; font-weight: 700; transition: color .2s ease; }
nav a:hover { color: var(--c1); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 24px 90px; text-align: center; position: relative; overflow: hidden; z-index: 1; background: radial-gradient(circle at 20% 20%, rgba(249,168,212,.2), transparent 30%), radial-gradient(circle at 80% 30%, rgba(196,181,253,.2), transparent 30%), radial-gradient(circle at 50% 80%, rgba(103,232,249,.15), transparent 35%), linear-gradient(135deg, #faf5ff 0%, #fdf2f8 50%, #ecfeff 100%); }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .25; }
.hero::before { width: 300px; height: 300px; left: -100px; bottom: -80px; background: var(--c2); }
.hero::after { width: 250px; height: 250px; right: -80px; top: 100px; background: var(--c1); }
.hero-content { max-width: 820px; position: relative; z-index: 1; animation: rise .8s ease both; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 6px 14px; border-radius: 50px; color: #7c3aed; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(165,180,252,.12); border: 1px solid rgba(165,180,252,.2); }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--c2); box-shadow: 0 0 0 5px rgba(249,168,212,.15); animation: pulse 2s ease infinite; }
.profile-circle { width: 160px; height: 160px; margin: 0 auto 27px; position: relative; border-radius: 50%; }
.profile-circle::before { content: ''; position: absolute; inset: -8px; border-radius: 50%; background: conic-gradient(from 0deg, var(--c1), var(--c2), var(--c3), var(--c4), var(--c5), var(--c6), var(--c1)); animation: spin 8s linear infinite; }
.profile-circle::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: rgba(255,255,255,.85); }
.profile-circle img { position: relative; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; z-index: 1; image-rendering: -webkit-optimize-contrast; backface-visibility: hidden; }
.hero h1, .section-title h2, .about-text h3, .skill-card h3, .project-content h3, .hobi-card h3, .favorit-card h3, .goal-text h3, .timeline-content h3 { font-family: 'Manrope', sans-serif; letter-spacing: -.05em; }
.hero h1 { max-width: 760px; font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 1.02; background: linear-gradient(135deg, #818cf8 0%, #f472b6 50%, #a78bfa 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero h2 { display: inline-block; margin: 22px 0 16px; padding: 8px 18px; border-radius: 50px; color: var(--white); background: linear-gradient(135deg, #a78bfa, #c4b5fd); font-size: .9rem; font-weight: 600; box-shadow: 0 8px 20px rgba(167,139,250,.15); }
.hero p { max-width: 640px; margin: 0 auto 28px; color: #6b7280; font-size: 1.04rem; }
.btn { display: inline-block; padding: 13px 28px; border-radius: 50px; color: var(--white); background: linear-gradient(135deg, #a78bfa, #f472b6); text-decoration: none; font-weight: 700; box-shadow: 0 10px 24px rgba(167,139,250,.2); transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 30px rgba(167,139,250,.3); }
.hero-meta { display: flex; justify-content: center; gap: 34px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(167,139,250,.12); }
.hero-meta div { display: grid; gap: 1px; text-align: left; }
.hero-meta strong { font-family: 'Manrope', sans-serif; font-size: 1.2rem; background: linear-gradient(135deg, #818cf8, #f472b6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-meta span { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }

/* SECTION */
section { padding: 104px 8%; position: relative; z-index: 1; }
.section-title { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-title h2 { font-size: clamp(2rem,4vw,3rem); line-height: 1.1; background: linear-gradient(135deg, #818cf8, #f472b6, #a78bfa); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-title p { margin-top: 10px; color: var(--muted); }

/* ABOUT */
#about { background: rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.about { max-width: 1050px; margin: auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.about-text h3 { margin-bottom: 17px; font-size: 2rem; background: linear-gradient(135deg, var(--c6), var(--c1)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about-text p { margin-bottom: 15px; color: var(--muted); }
.info-box { padding: 31px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(135deg, rgba(245,243,255,.7), rgba(253,242,248,.7)); backdrop-filter: blur(8px); box-shadow: 12px 12px 0 rgba(167,139,250,.08); }
.info-box p { padding: 11px 0; margin: 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.info-box p:last-child { border-bottom: 0; }
.info-box strong { display: inline-block; min-width: 82px; background: linear-gradient(135deg, #818cf8, #c4b5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* SKILLS */
.skills { background: rgba(236,254,255,.5); backdrop-filter: blur(6px); }
.skill-container { max-width: 1050px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.project-container { max-width: 1050px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.skill-card { padding: 30px 24px; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: rgba(255,255,255,.8); box-shadow: 0 14px 28px rgba(167,139,250,.06); transition: transform .25s ease, box-shadow .25s ease; }
.skill-card:hover, .project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(196,181,253,.12); }
.skill-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; font-size: 1.5rem; color: white; }
.skill-card:nth-child(1) .skill-icon { background: linear-gradient(135deg, var(--c1), var(--c5)); }
.skill-card:nth-child(2) .skill-icon { background: linear-gradient(135deg, var(--c2), var(--c3)); }
.skill-card:nth-child(3) .skill-icon { background: linear-gradient(135deg, var(--c4), var(--c5)); }
.skill-card:nth-child(4) .skill-icon { background: linear-gradient(135deg, var(--c6), var(--c2)); }
.skill-card h3 { margin-bottom: 8px; font-size: 1.2rem; color: var(--ink); }
.skill-card p, .project-content p { color: var(--muted); font-size: .9rem; }

/* HOBI */
.hobi { background: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.hobi-grid { max-width: 1050px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.hobi-card { padding: 26px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.9); text-align: center; transition: transform .25s ease, box-shadow .25s ease; }
.hobi-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 32px rgba(167,139,250,.1); }
.hobi-icon { width: 50px; height: 50px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 14px; font-size: 1.4rem; color: white; }
.hobi-card:nth-child(1) .hobi-icon { background: linear-gradient(135deg, var(--c1), var(--c6)); }
.hobi-card:nth-child(2) .hobi-icon { background: linear-gradient(135deg, var(--c2), var(--c6)); }
.hobi-card:nth-child(3) .hobi-icon { background: linear-gradient(135deg, var(--c3), var(--c2)); }
.hobi-card:nth-child(4) .hobi-icon { background: linear-gradient(135deg, var(--c5), var(--c1)); }
.hobi-card:nth-child(5) .hobi-icon { background: linear-gradient(135deg, var(--c4), var(--c5)); }
.hobi-card:nth-child(6) .hobi-icon { background: linear-gradient(135deg, var(--c3), var(--c4)); }
.hobi-card:nth-child(7) .hobi-icon { background: linear-gradient(135deg, var(--c4), var(--c1)); }
.hobi-card:nth-child(8) .hobi-icon { background: linear-gradient(135deg, var(--c6), var(--c5)); }
.hobi-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 7px; }
.hobi-card p { color: var(--muted); font-size: .82rem; line-height: 1.55; }

/* PENDIDIKAN / TIMELINE */
.pendidikan { background: rgba(253,242,248,.5); backdrop-filter: blur(6px); }
.timeline { max-width: 760px; margin: auto; position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 3px; background: linear-gradient(var(--c1), var(--c2), var(--c3), var(--c4)); border-radius: 3px; }
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -32px; top: 4px; width: 16px; height: 16px; border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 4px rgba(167,139,250,.12); }
.timeline-item:nth-child(1) .timeline-dot { background: var(--c1); }
.timeline-item:nth-child(2) .timeline-dot { background: var(--c2); }
.timeline-item:nth-child(3) .timeline-dot { background: var(--c3); }
.timeline-item:nth-child(4) .timeline-dot { background: var(--c4); }
.timeline-content { padding: 20px 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 8px 24px rgba(167,139,250,.06); }
.timeline-date { display: inline-block; margin-bottom: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.timeline-item:nth-child(1) .timeline-date { color: var(--c1); }
.timeline-item:nth-child(2) .timeline-date { color: var(--c2); }
.timeline-item:nth-child(3) .timeline-date { color: var(--c3); }
.timeline-item:nth-child(4) .timeline-date { color: var(--c4); }
.timeline-content h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 5px; }
.timeline-content p { color: var(--muted); font-size: .88rem; }

/* HAL FAVORIT */
.favorit { background: rgba(236,254,255,.4); backdrop-filter: blur(6px); }
.favorit-grid { max-width: 1050px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.favorit-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 10px 24px rgba(167,139,250,.05); transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; position: relative; }
.favorit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.favorit-card:nth-child(1)::before { background: linear-gradient(90deg, var(--c1), var(--c6)); }
.favorit-card:nth-child(2)::before { background: linear-gradient(90deg, var(--c2), var(--c3)); }
.favorit-card:nth-child(3)::before { background: linear-gradient(90deg, var(--c3), var(--c2)); }
.favorit-card:nth-child(4)::before { background: linear-gradient(90deg, var(--c4), var(--c5)); }
.favorit-card:nth-child(5)::before { background: linear-gradient(90deg, var(--c5), var(--c1)); }
.favorit-card:nth-child(6)::before { background: linear-gradient(90deg, var(--c6), var(--c2)); }
.favorit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(196,181,253,.1); }
.favorit-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 7px; }
.favorit-card p { color: var(--muted); font-size: .85rem; line-height: 1.55; }

/* GOALS */
.goals { background: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.goals-list { max-width: 820px; margin: auto; display: grid; gap: 14px; }
.goal-item { display: flex; gap: 22px; align-items: flex-start; padding: 22px 26px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(135deg, rgba(250,245,255,.7), rgba(253,242,248,.7)); backdrop-filter: blur(8px); transition: transform .25s ease, box-shadow .25s ease; }
.goal-item:hover { transform: translateX(6px); box-shadow: 0 14px 28px rgba(196,181,253,.08); }
.goal-num { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: white; font-family: 'Manrope', sans-serif; font-size: 1.1rem; font-weight: 800; }
.goal-item:nth-child(1) .goal-num { background: linear-gradient(135deg, var(--c1), var(--c6)); }
.goal-item:nth-child(2) .goal-num { background: linear-gradient(135deg, var(--c2), var(--c6)); }
.goal-item:nth-child(3) .goal-num { background: linear-gradient(135deg, var(--c3), var(--c2)); }
.goal-item:nth-child(4) .goal-num { background: linear-gradient(135deg, var(--c4), var(--c5)); }
.goal-item:nth-child(5) .goal-num { background: linear-gradient(135deg, var(--c5), var(--c1)); }
.goal-text h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
.goal-text p { color: var(--muted); font-size: .88rem; }

/* PROJECTS */
#projects { background: rgba(250,245,255,.5); backdrop-filter: blur(6px); }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 12px 28px rgba(167,139,250,.06); transition: transform .25s ease, box-shadow .25s ease; }
.project-image { height: 175px; display: grid; place-items: center; position: relative; color: white; font-size: 3rem; }
.project-card:nth-child(1) .project-image { background: linear-gradient(135deg, var(--c1), var(--c5)); }
.project-card:nth-child(2) .project-image { background: linear-gradient(135deg, var(--c2), var(--c3)); }
.project-card:nth-child(3) .project-image { background: linear-gradient(135deg, var(--c6), var(--c4)); }
.project-image::after { content: '✦'; position: absolute; right: 17px; bottom: -12px; color: rgba(255,255,255,.2); font-size: 7rem; }
.project-content { padding: 24px; }
.project-content h3 { margin-bottom: 8px; color: var(--ink); font-size: 1.25rem; }

/* CONTACT */
.contact { overflow: hidden; text-align: center; color: white; background: linear-gradient(135deg, #a78bfa, #c4b5fd 40%, #f9a8d4); }
.contact .section-title h2 { background: none; -webkit-text-fill-color: white; color: white; }
.contact .section-title p { color: rgba(255,255,255,.85); }
.contact-info { max-width: 620px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.contact-item { padding: 18px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 12px; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); color: #fff; font-size: .82rem; line-height: 1.9; transition: background .2s ease, transform .2s ease; }
.contact-item:hover { background: rgba(255,255,255,.28); transform: translateY(-4px); }

/* FOOTER */
footer { padding: 23px; text-align: center; color: #c4b5fd; background: #4c1d95; font-size: .78rem; }

/* ANIMATIONS */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* FLOATING PARTICLES — LIGHT MODE: Sparkles/Bintang */
.particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; opacity: 0; animation: sparkleFloat linear infinite; }
.particle::before { content: '✦'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: inherit; line-height: 1; text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor; }
.particle:nth-child(1) { font-size: 36px; color: #a5b4fc; left: 5%; animation-duration: 10s; animation-delay: 0s; }
.particle:nth-child(2) { font-size: 26px; color: #f9a8d4; left: 15%; animation-duration: 13s; animation-delay: 2s; }
.particle:nth-child(3) { font-size: 44px; color: #c4b5fd; left: 28%; animation-duration: 11s; animation-delay: 4s; }
.particle:nth-child(4) { font-size: 22px; color: #6ee7b7; left: 40%; animation-duration: 9s; animation-delay: 1s; }
.particle:nth-child(5) { font-size: 32px; color: #67e8f9; left: 52%; animation-duration: 14s; animation-delay: 3s; }
.particle:nth-child(6) { font-size: 40px; color: #fcd34d; left: 63%; animation-duration: 12s; animation-delay: 5s; }
.particle:nth-child(7) { font-size: 26px; color: #f9a8d4; left: 72%; animation-duration: 10s; animation-delay: 6s; }
.particle:nth-child(8) { font-size: 36px; color: #a5b4fc; left: 82%; animation-duration: 15s; animation-delay: 2.5s; }
.particle:nth-child(9) { font-size: 22px; color: #c4b5fd; left: 90%; animation-duration: 11s; animation-delay: 7s; }
.particle:nth-child(10) { font-size: 30px; color: #6ee7b7; left: 35%; animation-duration: 13s; animation-delay: 8s; }
.particle:nth-child(11) { font-size: 26px; color: #67e8f9; left: 58%; animation-duration: 9s; animation-delay: 4.5s; }
.particle:nth-child(12) { font-size: 40px; color: #fcd34d; left: 8%; animation-duration: 14s; animation-delay: 9s; }
@keyframes sparkleFloat {
    0% { transform: translateY(100vh) scale(0.3) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    50% { opacity: 1; transform: translateY(50vh) scale(1) rotate(180deg); }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) scale(0.5) rotate(360deg); opacity: 0; }
}

/* HERO BOUNCE TEXT (like aurelalfiana) */
.hero h1 { animation: bounceText 3s ease-in-out infinite; }
@keyframes bounceText {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

/* PROFILE CIRCLE FLOAT (like aurelalfiana avatarFloat) */
.profile-circle { animation: avatarFloat 4s ease-in-out infinite; }
@keyframes avatarFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-3deg); }
    75% { transform: translateY(8px) rotate(3deg); }
}
.profile-circle:hover { animation-play-state: paused; transform: scale(1.05); }

/* LOGO GLOW (like aurelalfiana) */
.logo { animation: logoGlow 2s ease-in-out infinite; }
@keyframes logoGlow {
    0%, 100% { transform: scale(1) rotate(-2deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

/* EYEBROW PULSE BORDER (like aurelalfiana tagline) */
.eyebrow { animation: pulseBorder 2s ease-in-out infinite; }
@keyframes pulseBorder {
    0%, 100% { border-color: rgba(165,180,252,.2); transform: scale(1); }
    50% { border-color: rgba(249,168,212,.4); transform: scale(1.02); }
}

/* SCROLL REVEAL (like aurelalfiana fadeInUp + badgePop) */
.reveal { opacity: 0; transform: translateY(40px) scale(0.95); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0) scale(1); }

/* Staggered delays for cards */
.hobi-card.reveal, .skill-card.reveal, .project-card.reveal, .favorit-card.reveal, .goal-item.reveal, .contact-item.reveal, .timeline-item.reveal { transition-delay: 0s; }
.hobi-card.reveal:nth-child(2), .skill-card.reveal:nth-child(2), .project-card.reveal:nth-child(2), .favorit-card.reveal:nth-child(2), .goal-item.reveal:nth-child(2), .contact-item.reveal:nth-child(2), .timeline-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.hobi-card.reveal:nth-child(3), .skill-card.reveal:nth-child(3), .project-card.reveal:nth-child(3), .favorit-card.reveal:nth-child(3), .goal-item.reveal:nth-child(3), .contact-item.reveal:nth-child(3), .timeline-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.hobi-card.reveal:nth-child(4), .skill-card.reveal:nth-child(4), .project-card.reveal:nth-child(4), .favorit-card.reveal:nth-child(4), .goal-item.reveal:nth-child(4), .contact-item.reveal:nth-child(4), .timeline-item.reveal:nth-child(4) { transition-delay: 0.24s; }
.hobi-card.reveal:nth-child(5), .favorit-card.reveal:nth-child(5), .goal-item.reveal:nth-child(5) { transition-delay: 0.32s; }
.hobi-card.reveal:nth-child(6), .favorit-card.reveal:nth-child(6) { transition-delay: 0.4s; }
.hobi-card.reveal:nth-child(7) { transition-delay: 0.48s; }
.hobi-card.reveal:nth-child(8) { transition-delay: 0.56s; }

/* CARD HOVER WIGGLE (like aurelalfiana badge hover) */
.hobi-card:hover, .favorit-card:hover, .skill-card:hover, .project-card:hover { transform: translateY(-6px) scale(1.03) rotate(-1deg); }
.goal-item:hover { transform: translateX(6px) scale(1.02); }

/* RESPONSIVE */
@media (max-width: 768px) {
    nav { top: 10px; padding: 11px 15px 11px 18px; }
    nav ul { gap: 8px; }
    nav a { font-size: .68rem; }
    .logo { font-size: 1rem; }
    .hero { padding-top: 125px; }
    .hero h1 { font-size: clamp(2.55rem,13vw,4rem); }
    .hero h2 { font-size: .78rem; }
    .hero p { font-size: .92rem; }
    .hero-meta { gap: 17px; }
    .hero-meta span { font-size: .57rem; }
    section { padding: 76px 6%; }
    .about, .skill-container, .project-container { grid-template-columns: repeat(2,1fr); gap: 18px; }
    .about { gap: 35px; }
    .contact-info { grid-template-columns: repeat(2,1fr); }
    .hobi-grid { grid-template-columns: repeat(2,1fr); }
    .favorit-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 30px; }
    .goal-item { flex-direction: column; gap: 12px; padding: 18px 20px; }
}

/* THEME TOGGLE BUTTON */
.theme-toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: none; border-radius: 50%; background: rgba(255,255,255,.5); backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,.4); font-size: 1.1rem; cursor: pointer; transition: transform .3s ease, background .3s ease; flex-shrink: 0; }
.theme-toggle:hover { transform: scale(1.15) rotate(20deg); }

/* ==================== DARK THEME (Biru Tua + Biru Muda + Abu/Putih) ==================== */
body.dark { color: #e2e8f0; background-color: #0a1628; background-image: radial-gradient(circle at 10% 15%, rgba(30,64,175,.25), transparent 25%), radial-gradient(circle at 85% 20%, rgba(96,165,250,.18), transparent 25%), radial-gradient(circle at 75% 75%, rgba(37,99,235,.15), transparent 30%), radial-gradient(circle at 20% 85%, rgba(59,130,246,.2), transparent 25%), radial-gradient(circle at 50% 50%, rgba(147,197,253,.08), transparent 35%); }
body.dark::before { opacity: .12; }
body.dark::after { opacity: .08; }

/* Navbar dark */
body.dark nav { background: rgba(10,22,40,.85); border: 1px solid rgba(59,130,246,.2); box-shadow: 0 14px 36px rgba(0,0,0,.3); }
body.dark .logo { background: linear-gradient(135deg, #60a5fa, #93c5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body.dark nav a { color: #94a3b8; }
body.dark nav a:hover { color: #60a5fa; }
body.dark .theme-toggle { background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.25); }

/* Hero dark */
body.dark .hero { background: radial-gradient(circle at 20% 20%, rgba(37,99,235,.15), transparent 30%), radial-gradient(circle at 80% 30%, rgba(96,165,250,.12), transparent 30%), radial-gradient(circle at 50% 80%, rgba(30,64,175,.1), transparent 35%), linear-gradient(135deg, #0a1628 0%, #0f1e3d 50%, #0a1628 100%); }
body.dark .hero::before { background: #1e3a8a; }
body.dark .hero::after { background: #3b82f6; }
body.dark .eyebrow { color: #93c5fd; background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.2); }
body.dark .eyebrow span { background: #60a5fa; box-shadow: 0 0 0 5px rgba(96,165,250,.15); }
body.dark .hero h1 { background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #bfdbfe 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body.dark .hero h2 { background: linear-gradient(135deg, #3b82f6, #60a5fa); color: #fff; }
body.dark .hero p { color: #94a3b8; }
body.dark .btn { background: linear-gradient(135deg, #3b82f6, #60a5fa); box-shadow: 0 10px 24px rgba(59,130,246,.25); }
body.dark .hero-meta { border-top-color: rgba(59,130,246,.15); }
body.dark .hero-meta strong { background: linear-gradient(135deg, #60a5fa, #93c5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body.dark .hero-meta span { color: #64748b; }

/* Profile circle dark */
body.dark .profile-circle::before { background: conic-gradient(from 0deg, #1e40af, #3b82f6, #60a5fa, #93c5fd, #bfdbfe, #1e40af); }
body.dark .profile-circle::after { background: rgba(10,22,40,.85); }

/* Section titles dark */
body.dark .section-title h2 { background: linear-gradient(135deg, #60a5fa, #93c5fd, #bfdbfe); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body.dark .section-title p { color: #64748b; }

/* About dark */
body.dark #about { background: rgba(15,30,61,.6); backdrop-filter: blur(6px); }
body.dark .about-text h3 { background: linear-gradient(135deg, #60a5fa, #93c5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body.dark .about-text p { color: #94a3b8; }
body.dark .info-box { background: linear-gradient(135deg, rgba(15,30,61,.8), rgba(10,22,40,.8)); border-color: rgba(59,130,246,.15); box-shadow: 12px 12px 0 rgba(59,130,246,.06); }
body.dark .info-box p { border-bottom-color: rgba(59,130,246,.12); color: #94a3b8; }
body.dark .info-box strong { background: linear-gradient(135deg, #60a5fa, #93c5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Skills dark */
body.dark .skills { background: rgba(10,22,40,.5); backdrop-filter: blur(6px); }
body.dark .skill-card { background: rgba(15,30,61,.8); border-color: rgba(59,130,246,.15); box-shadow: 0 14px 28px rgba(0,0,0,.2); }
body.dark .skill-card h3 { color: #e2e8f0; }
body.dark .skill-card p, body.dark .project-content p { color: #94a3b8; }

/* Hobi dark */
body.dark .hobi { background: rgba(15,30,61,.5); backdrop-filter: blur(6px); }
body.dark .hobi-card { background: rgba(15,30,61,.85); border-color: rgba(59,130,246,.12); }
body.dark .hobi-card h3 { color: #e2e8f0; }
body.dark .hobi-card p { color: #94a3b8; }

/* Timeline dark */
body.dark .pendidikan { background: rgba(10,22,40,.5); backdrop-filter: blur(6px); }
body.dark .timeline::before { background: linear-gradient(#1e40af, #3b82f6, #60a5fa, #93c5fd); }
body.dark .timeline-dot { border-color: #0a1628; box-shadow: 0 0 0 4px rgba(59,130,246,.15); }
body.dark .timeline-content { background: rgba(15,30,61,.85); border-color: rgba(59,130,246,.12); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
body.dark .timeline-content h3 { color: #e2e8f0; }
body.dark .timeline-content p { color: #94a3b8; }

/* Favorit dark */
body.dark .favorit { background: rgba(10,22,40,.4); backdrop-filter: blur(6px); }
body.dark .favorit-card { background: rgba(15,30,61,.85); border-color: rgba(59,130,246,.12); box-shadow: 0 10px 24px rgba(0,0,0,.15); }
body.dark .favorit-card h3 { color: #e2e8f0; }
body.dark .favorit-card p { color: #94a3b8; }

/* Goals dark */
body.dark .goals { background: rgba(15,30,61,.5); backdrop-filter: blur(6px); }
body.dark .goal-item { background: linear-gradient(135deg, rgba(15,30,61,.8), rgba(10,22,40,.8)); border-color: rgba(59,130,246,.12); }
body.dark .goal-text h3 { color: #e2e8f0; }
body.dark .goal-text p { color: #94a3b8; }

/* Projects dark */
body.dark #projects { background: rgba(10,22,40,.5); backdrop-filter: blur(6px); }
body.dark .project-card { background: rgba(15,30,61,.85); border-color: rgba(59,130,246,.12); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
body.dark .project-content h3 { color: #e2e8f0; }

/* Contact dark */
body.dark .contact { background: linear-gradient(135deg, #1e3a8a, #1e40af 40%, #3b82f6); }
body.dark .contact-item { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); }

/* Footer dark */
body.dark footer { background: #050d1a; color: #64748b; }

/* Particles dark — PLANETS & SPACE ELEMENTS */
body.dark .particle { opacity: 0; animation: planetFloat linear infinite; }
body.dark .particle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; box-shadow: 0 0 15px currentColor, 0 0 30px currentColor; }
/* Planet 1 — biru tua dengan ring */
body.dark .particle:nth-child(1) { width: 80px; height: 80px; color: #3b82f6; left: 5%; animation-duration: 20s; animation-delay: 0s; }
body.dark .particle:nth-child(1)::before { width: 80px; height: 80px; background: radial-gradient(circle at 35% 35%, #60a5fa, #1e40af); box-shadow: 0 0 25px rgba(59,130,246,.5); }
body.dark .particle:nth-child(1)::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-20deg); width: 120px; height: 24px; border-radius: 50%; border: 3px solid rgba(96,165,250,.3); border-bottom-color: transparent; border-top-color: transparent; }
/* Planet 2 — biru muda kecil */
body.dark .particle:nth-child(2) { width: 40px; height: 40px; color: #60a5fa; left: 18%; animation-duration: 25s; animation-delay: 2s; }
body.dark .particle:nth-child(2)::before { width: 40px; height: 40px; background: radial-gradient(circle at 35% 35%, #93c5fd, #3b82f6); box-shadow: 0 0 18px rgba(96,165,250,.4); }
/* Planet 3 — biru besar dengan ring penuh */
body.dark .particle:nth-child(3) { width: 110px; height: 110px; color: #1e40af; left: 30%; animation-duration: 22s; animation-delay: 4s; }
body.dark .particle:nth-child(3)::before { width: 110px; height: 110px; background: radial-gradient(circle at 35% 35%, #3b82f6, #1e3a8a); box-shadow: 0 0 30px rgba(30,64,175,.5); }
body.dark .particle:nth-child(3)::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(15deg); width: 170px; height: 36px; border-radius: 50%; border: 3px solid rgba(147,197,253,.25); }
/* Bintang kecil 1 */
body.dark .particle:nth-child(4) { width: 14px; height: 14px; color: #93c5fd; left: 42%; animation-duration: 18s; animation-delay: 1s; }
body.dark .particle:nth-child(4)::before { width: 14px; height: 14px; background: #bfdbfe; box-shadow: 0 0 12px #93c5fd, 0 0 24px #60a5fa; }
/* Planet 4 — biru muda medium */
body.dark .particle:nth-child(5) { width: 60px; height: 60px; color: #60a5fa; left: 52%; animation-duration: 24s; animation-delay: 3s; }
body.dark .particle:nth-child(5)::before { width: 60px; height: 60px; background: radial-gradient(circle at 35% 35%, #bfdbfe, #2563eb); box-shadow: 0 0 20px rgba(96,165,250,.4); }
/* Bintang kecil 2 */
body.dark .particle:nth-child(6) { width: 10px; height: 10px; color: #dbeafe; left: 63%; animation-duration: 16s; animation-delay: 5s; }
body.dark .particle:nth-child(6)::before { width: 10px; height: 10px; background: #fff; box-shadow: 0 0 10px #93c5fd, 0 0 20px #60a5fa; }
/* Planet 5 — biru tua dengan ring */
body.dark .particle:nth-child(7) { width: 90px; height: 90px; color: #1e3a8a; left: 72%; animation-duration: 21s; animation-delay: 6s; }
body.dark .particle:nth-child(7)::before { width: 90px; height: 90px; background: radial-gradient(circle at 35% 35%, #60a5fa, #1e3a8a); box-shadow: 0 0 25px rgba(59,130,246,.4); }
body.dark .particle:nth-child(7)::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-30deg); width: 136px; height: 28px; border-radius: 50%; border: 3px solid rgba(147,197,253,.2); }
/* Bintang kecil 3 */
body.dark .particle:nth-child(8) { width: 12px; height: 12px; color: #93c5fd; left: 82%; animation-duration: 19s; animation-delay: 2.5s; }
body.dark .particle:nth-child(8)::before { width: 12px; height: 12px; background: #bfdbfe; box-shadow: 0 0 11px #93c5fd, 0 0 22px #60a5fa; }
/* Planet 6 — biru muda kecil */
body.dark .particle:nth-child(9) { width: 36px; height: 36px; color: #60a5fa; left: 90%; animation-duration: 23s; animation-delay: 7s; }
body.dark .particle:nth-child(9)::before { width: 36px; height: 36px; background: radial-gradient(circle at 35% 35%, #93c5fd, #1d4ed8); box-shadow: 0 0 16px rgba(96,165,250,.4); }
/* Bintang kecil 4 */
body.dark .particle:nth-child(10) { width: 8px; height: 8px; color: #fff; left: 35%; animation-duration: 17s; animation-delay: 8s; }
body.dark .particle:nth-child(10)::before { width: 8px; height: 8px; background: #fff; box-shadow: 0 0 8px #93c5fd, 0 0 16px #60a5fa; }
/* Planet 7 — biru medium */
body.dark .particle:nth-child(11) { width: 50px; height: 50px; color: #3b82f6; left: 58%; animation-duration: 20s; animation-delay: 4.5s; }
body.dark .particle:nth-child(11)::before { width: 50px; height: 50px; background: radial-gradient(circle at 35% 35%, #60a5fa, #1e40af); box-shadow: 0 0 16px rgba(59,130,246,.4); }
/* Bintang kecil 5 */
body.dark .particle:nth-child(12) { width: 10px; height: 10px; color: #dbeafe; left: 8%; animation-duration: 18s; animation-delay: 9s; }
body.dark .particle:nth-child(12)::before { width: 10px; height: 10px; background: #fff; box-shadow: 0 0 10px #93c5fd, 0 0 20px #60a5fa; }
@keyframes planetFloat {
    0% { transform: translateY(100vh) scale(0.5) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    50% { opacity: 0.9; transform: translateY(50vh) scale(1) rotate(180deg); }
    90% { opacity: 0.5; }
    100% { transform: translateY(-15vh) scale(0.6) rotate(360deg); opacity: 0; }
}

/* Reveal dark (no change needed, inherits) */

/* ==================== MODERN ENHANCEMENTS ==================== */

/* SCROLL PROGRESS BAR */
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3), var(--c4), var(--c5), var(--c6)); z-index: 9999; transition: width .1s ease; box-shadow: 0 0 10px rgba(167,139,250,.5); }
body.dark .scroll-progress { background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa, #93c5fd); box-shadow: 0 0 10px rgba(59,130,246,.5); }

/* CUSTOM CURSOR GLOW */
.cursor-glow { position: fixed; top: 0; left: 0; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(167,139,250,.12), transparent 70%); pointer-events: none; z-index: 9998; transition: opacity .3s ease; }
body.dark .cursor-glow { background: radial-gradient(circle, rgba(59,130,246,.1), transparent 70%); }

/* NAVBAR SCROLLED STATE */
nav.scrolled { top: 8px; padding: 9px 22px 9px 26px; box-shadow: 0 10px 30px rgba(167,139,250,.12); transition: all .3s ease; }
body.dark nav.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.4); }

/* BACK TO TOP BUTTON */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border: none; border-radius: 50%; background: linear-gradient(135deg, var(--c1), var(--c2)); color: white; font-size: 1.5rem; font-weight: bold; cursor: pointer; opacity: 0; transform: translateY(20px) scale(0.8); transition: all .3s ease; z-index: 9997; box-shadow: 0 8px 24px rgba(167,139,250,.3); }
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); }
.back-to-top:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 12px 30px rgba(167,139,250,.4); }
body.dark .back-to-top { background: linear-gradient(135deg, #1e40af, #3b82f6); box-shadow: 0 8px 24px rgba(59,130,246,.3); }

/* ANIMATED GRADIENT TEXT on section titles */
.section-title h2 { background: linear-gradient(135deg, var(--c1), var(--c2), var(--c6), var(--c1)); background-size: 300% 300%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradientShift 5s ease infinite; }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
body.dark .section-title h2 { background: linear-gradient(135deg, #60a5fa, #93c5fd, #3b82f6, #60a5fa); background-size: 300% 300%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradientShift 5s ease infinite; }

/* CARD 3D TILT — smooth transition for mouseleave */
.hobi-card, .skill-card, .favorit-card, .project-card { transform-style: preserve-3d; transition: transform .15s ease-out, box-shadow .25s ease; }

/* HERO H2 TYPING CURSOR */
.hero h2::after { content: '|'; animation: blink 0.8s step-end infinite; opacity: 0.7; }
@keyframes blink { 0%, 100% { opacity: 0.7; } 50% { opacity: 0; } }

/* CARD SHIMMER EFFECT on hover */
.hobi-card::after, .skill-card::after, .favorit-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); transition: left .6s ease; pointer-events: none; }
.hobi-card:hover::after, .skill-card:hover::after, .favorit-card:hover::after { left: 100%; }

/* NAV LINK UNDERLINE ANIMATION */
nav a { position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--c1), var(--c2)); transition: width .3s ease; }
nav a:hover::after { width: 100%; }
body.dark nav a::after { background: linear-gradient(90deg, #3b82f6, #60a5fa); }

/* SECTION FADE-IN ON SCROLL (enhanced) */
section { position: relative; }
section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--c1), var(--c2), transparent); transition: width .8s ease; }
section:hover::before { width: 60%; }

/* IMAGE HOVER ZOOM on profile */
.profile-circle img { transition: transform .4s ease; }
.profile-circle:hover img { transform: scale(1.08); }

/* BUTTON RIPPLE EFFECT */
.btn { position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,.3); transform: translate(-50%,-50%); transition: width .5s ease, height .5s ease; }
.btn:active::after { width: 300px; height: 300px; }

/* GOAL ITEM PROGRESS LINE */
.goal-item { position: relative; overflow: hidden; }
.goal-item::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--c1), var(--c2)); transform: scaleY(0); transform-origin: top; transition: transform .4s ease; }
.goal-item:hover::after { transform: scaleY(1); }

/* TIMELINE DOT PULSE */
.timeline-dot { animation: dotPulse 2.5s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(167,139,250,.12); } 50% { box-shadow: 0 0 0 8px rgba(167,139,250,.06); } }

/* CONTACT CARD ICON FLOAT */
.contact-item { position: relative; }
.contact-item:hover { letter-spacing: 0.3px; }

/* FOOTER GRADIENT ANIMATION */
footer { background: linear-gradient(135deg, #4c1d95, #6d28d9, #4c1d95); background-size: 200% 200%; animation: footerGradient 6s ease infinite; }
@keyframes footerGradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
body.dark footer { background: linear-gradient(135deg, #0a1628, #1e3a8a, #0a1628); background-size: 200% 200%; animation: footerGradient 6s ease infinite; }

/* RESPONSIVE — hide cursor glow on mobile */
@media (max-width: 768px) {
    .cursor-glow { display: none; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 1.3rem; }
}
