:root {
    /* Color Palette */
    --neon-blue: #00f0ff;
    --neon-purple: #bd00ff;
    --dark-bg: #05050A;
    --panel-bg: rgba(25, 25, 35, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Light Theme Variables */
body.light-theme {
    --dark-bg: #f5f7fa;
    --panel-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.1);
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --neon-blue: #0088ff;
    --neon-purple: #8800ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    transition: background-color var(--transition), color var(--transition);
}

/* Typography Selection */
::selection {
    background: var(--neon-purple);
    color: #fff;
}

/* Tech Loader */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.tech-loader {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-loader .ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.tech-loader .ring:nth-child(1) {
    width: 100%; height: 100%;
    border-top-color: var(--neon-blue);
    animation: rotate1 2s linear infinite;
}

.tech-loader .ring:nth-child(2) {
    width: 80%; height: 80%;
    border-right-color: var(--neon-purple);
    animation: rotate2 1.5s linear infinite;
}

.tech-loader .ring:nth-child(3) {
    width: 60%; height: 60%;
    border-bottom-color: var(--text-primary);
    animation: rotate1 1s linear infinite reverse;
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--neon-blue);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes rotate1 { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes rotate2 { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* Custom Cursor */
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-glow {
    width: 40px; height: 40px;
    border: 1px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-hover {
    width: 60px; height: 60px;
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    border: 1px dashed var(--neon-purple);
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.neon-text {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(5, 5, 10, 0.7);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: transform 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%; height: 2px;
    bottom: -5px; left: 0;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
    box-shadow: 0 0 8px var(--neon-blue);
}

.theme-toggle {
    background: none; border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--neon-blue);
    transform: scale(1.1) rotate(15deg);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1001;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-neon {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-neon::before {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-neon:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), inset 0 0 15px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

.btn-neon:hover::before { left: 100%; }

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    display: inline-block;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.intro-sub {
    font-family: var(--font-heading);
    color: var(--neon-blue);
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.type-text {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem; letter-spacing: 2px;
}

.mouse {
    width: 25px; height: 40px;
    border: 2px solid var(--text-primary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px; height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-10px) translateX(-50%); } }
@keyframes scroll-wheel { 0% { top: 5px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-img .img-wrapper {
    width: 100%; aspect-ratio: 1;
    display: flex; justify-content: center; align-items: center;
    font-size: 5rem; color: var(--neon-purple);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-img .img-wrapper::after {
    content: '';
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(45deg, rgba(0,240,255,0.1), rgba(189,0,255,0.1));
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.floating-tags {
    display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0;
}

.tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    animation: float-tag 3s ease-in-out infinite alternate;
}

.tag:nth-child(2) { animation-delay: 0.5s; }
.tag:nth-child(3) { animation-delay: 1s; }

@keyframes float-tag { 0% { transform: translateY(0); } 100% { transform: translateY(-5px); } }

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    padding: 2rem;
}

.skill-category h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: flex; align-items: center; gap: 0.5rem;
}

.skill-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.skill-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    transition: var(--transition);
}

.skill-item i {
    font-size: 2.5rem;
    transition: var(--transition);
}

.skill-item:hover i {
    color: var(--neon-blue);
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.project-card {
    overflow: hidden;
    display: flex; flex-direction: column;
}

.project-img-placeholder {
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    display: flex; justify-content: center; align-items: center;
    font-size: 4rem; color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.project-card:hover .project-img-placeholder {
    color: var(--neon-blue);
}

.project-info {
    padding: 2rem;
    flex: 1; display: flex; flex-direction: column;
}

.project-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1;
}

.tech-stack {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}

.tech-stack span {
    font-size: 0.8rem; padding: 0.2rem 0.6rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-blue);
    border-radius: 4px;
}

.project-links {
    display: flex; gap: 1rem;
}

.btn-icon {
    text-decoration: none; color: var(--text-primary);
    font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem;
    transition: var(--transition);
}

.btn-icon:hover { color: var(--neon-purple); }

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px; margin: 0 auto;
}

.timeline::before {
    content: ''; position: absolute;
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--neon-blue), var(--neon-purple));
    left: 20px; top: 0;
}

.timeline-item {
    padding: 2rem; margin-left: 50px; margin-bottom: 2rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    width: 16px; height: 16px;
    background: var(--neon-blue);
    border-radius: 50%;
    left: -37px; top: 30px;
    box-shadow: 0 0 10px var(--neon-blue);
}

.timeline-date {
    color: var(--neon-purple); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; display: block;
}

.timeline-item h3 { font-family: var(--font-heading); margin-bottom: 0.2rem; }
.timeline-item h4 { color: var(--text-secondary); font-weight: 400; margin-bottom: 1rem; font-size: 0.95rem;}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-panel, .contact-form {
    padding: 3rem;
}

.contact-list { list-style: none; margin: 2rem 0; }
.contact-list li { margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }

.social-links { display: flex; gap: 1rem; }
.social-icon {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%; color: var(--text-primary);
    text-decoration: none; transition: var(--transition);
}

.social-icon:hover {
    background: var(--neon-blue); color: var(--dark-bg);
    transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,240,255,0.4);
}

.form-group { position: relative; margin-bottom: 2rem; }
.input-field {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-primary); margin-top: 10px;
}
.input-field:focus { outline: none; }
.floating-label {
    position: absolute; left: 0; top: 1rem;
    color: var(--text-secondary); transition: 0.3s ease all;
    pointer-events: none;
}
.input-field:focus ~ .floating-label,
.input-field:valid ~ .floating-label {
    top: -10px; font-size: 0.8rem; color: var(--neon-blue);
}
.focus-border {
    position: absolute; bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: 0.4s ease all;
}
.input-field:focus ~ .focus-border { width: 100%; left: 0; }
.w-100 { width: 100%; border-radius: 30px; }

.footer { text-align: center; padding: 2rem; border-top: 1px solid var(--glass-border); margin-top: 4rem;}
.small-text { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.5rem; }

/* Responsive */
/* Tablet & Mobile Responsiveness Enhancements */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero-section { text-align: center; justify-content: center; }
    .hero-btns { justify-content: center; }
    .about-grid { gap: 2rem; }
    .skills-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    .main-title { font-size: 3rem; }
    .type-text { font-size: 1.2rem; }
    
    .nav-container { padding: 0 1rem; }
    .nav-links {
        display: none;
        position: fixed;
        top: 80px; left: 0; width: 100%; height: auto;
        background: rgba(5, 5, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--glass-border);
        gap: 1.5rem;
    }
    .nav-links.mobile-active { display: flex; }
    .hamburger { display: block; cursor: pointer; color: var(--text-primary); }

    .skills-container { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-img { max-width: 300px; margin: 0 auto; }
    .floating-tags { justify-content: center; }

    .projects-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .main-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }
    .hero-desc { font-size: 1rem; }
}

/* ===== PREMIUM WELCOME OVERLAY ===== */
#welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #05050A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#welcome-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

/* Animated grid background */
.wo-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Glowing orbs */
.wo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: orb-float 6s ease-in-out infinite alternate;
}
.wo-orb-1 {
    width: 500px; height: 500px;
    background: var(--neon-blue);
    top: -150px; left: -150px;
    animation-delay: 0s;
}
.wo-orb-2 {
    width: 400px; height: 400px;
    background: var(--neon-purple);
    bottom: -100px; right: -100px;
    animation-delay: 1.5s;
}

@keyframes orb-float {
    0% { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.15) translate(30px, -30px); }
}

/* Content wrapper */
.wo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* Badge */
.wo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    animation: wo-fade-down 0.7s ease 0.3s both;
}

.wo-badge i { font-size: 0.65rem; }

/* Name */
.wo-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wo-fade-up 0.7s ease 0.5s both;
}

/* Tagline */
.wo-tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    animation: wo-fade-up 0.7s ease 0.7s both;
}

.wo-tagline span {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Enter button */
.wo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    transition: all 0.4s ease;
    animation: wo-fade-up 0.7s ease 0.9s both;
}

.wo-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,240,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.wo-btn:hover { 
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: translateY(-3px);
}

.wo-btn:hover::before { transform: translateX(100%); }

.wo-btn i { transition: transform 0.3s ease; }
.wo-btn:hover i { transform: translateX(6px); }

/* Big Countdown */
.wo-countdown {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    animation: wo-fade-up 0.7s ease 1s both;
}

.wo-countdown-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.wo-countdown-num {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 9rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: count-pop 1s ease both;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
}

@keyframes count-pop {
    0%   { transform: scale(1.4); opacity: 0; }
    60%  { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Bottom signature line */
.wo-footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    white-space: nowrap;
    animation: wo-fade-up 0.7s ease 1.1s both;
}

@keyframes wo-fade-up {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes wo-fade-down {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .wo-btn { padding: 0.9rem 2rem; font-size: 0.85rem; }
    .wo-orb-1 { width: 300px; height: 300px; }
    .wo-orb-2 { width: 250px; height: 250px; }
}
