:root {
    --bg-color: #0c0c0c;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --card-bg: #1a1a1a;
    --border-color: #333;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-speed: 0.8s;
    --transition-ease: cubic-bezier(0.22, 1, 0.36, 1);

    /* Motion Variables */
    --mx: 50%;
    --my: 50%;
}

[data-theme="light"] {
    --bg-color: #e5e5e5;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --accent: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.3);
    --card-bg: #ffffff;
    --border-color: #ccc;
}

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

html,
body {
    height: 100%;
    overflow: hidden;
    font-family: var(--font-stack);
    background-color: var(--bg-color);
    color: var(--text-main);
    transition: background-color 0.5s ease;
}

/* --- BACKGROUND LAYERS --- */

/* Ambient Background (Drifting Gradient) */
.bg-ambient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    transform: translate(0, 0);
    animation: ambient-drift 20s infinite alternate ease-in-out;
    transition: opacity 2s ease;
}

/* Stronger ambient on active hero/contact (toggled via JS class on body) */
body.scene-strong .bg-ambient {
    opacity: 0.08;
}

/* Cursor Glow (Spotlight) */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(600px circle at var(--mx) var(--my),
            var(--accent-glow),
            transparent 40%);
    opacity: 0.15;
    mix-blend-mode: screen;
    transition: opacity 0.5s ease;
}

/* Hide cursor glow on touch devices or if not requested */
@media (hover: none) {
    .cursor-glow {
        display: none;
    }
}

/* Noise Overlay */
.overlay-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    opacity: 0.05;
}

/* --- NAV & UI --- */
.progress-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.nav-dot.active {
    background: var(--accent);
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 8px var(--accent-glow);
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    display: none;
}

[data-theme="dark"] .icon-sun {
    display: block;
}

[data-theme="light"] .icon-moon {
    display: block;
}

/* --- STAGE & SCENES --- */
#stage {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: opacity var(--transition-speed) var(--transition-ease),
        transform var(--transition-speed) var(--transition-ease),
        visibility var(--transition-speed);
    padding: 2rem;
    will-change: transform, opacity;
}

.scene.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 10;
}

/* "Just Entered" Micro-Animation */
.scene.active.just-entered .scene-content {
    animation: drift-up-settle 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Scene Exit State (optional, keeping simple) */
.scene.prev {
    transform: translateY(-30px) scale(0.95);
    opacity: 0;
    visibility: hidden;
}

.scene-content {
    max-width: 800px;
    width: 100%;
    position: relative;
    /* Ensure content is above cursor glow if z-index issues arise */
}

/* --- TYPOGRAPHY & TEXT EFFECTS --- */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Shimmer & Glow for Titles */
.glow-text,
.section-title {
    position: relative;
    background: linear-gradient(110deg,
            var(--text-main) 40%,
            var(--accent) 50%,
            var(--text-main) 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 8s linear infinite;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease 0.2s;
    /* Additional subtle pulse */
    animation: text-shimmer 8s linear infinite, soft-pulse 4s ease-in-out infinite alternate;
}

.scene.active .section-title {
    opacity: 1;
    transform: translateX(0);
}

/* HERO SPECIFIC */
.hero-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-name {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    /* Use the shared shimmer class logic effectively */
}

@media (max-width: 768px) {
    .hero-name {
        font-size: 2.5rem;
    }
}

.loop-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

.hero-role {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.typing-container {
    margin-bottom: 2rem;
    min-height: 3rem;
    /* Adjusted for fluid text wrap space */
    display: flex;
    align-items: center;
}

.hero-subtext {
    font-family: monospace;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    /* Fluid font size */
    color: var(--accent);
    line-height: 1.5;
    /* Removed white-space: nowrap and width animation constraints */
    word-wrap: break-word;
    /* Ensure wrapping */
    position: relative;
    max-width: 100%;
}

/* Blinking Cursor attached to text end via JS or pseudo if using block */
/* Since JS modifies content, we can use a class on the paragraph to show cursor */
.hero-subtext::after {
    content: '_';
    /* Cursor character */
    display: inline-block;
    color: var(--accent);
    margin-left: 2px;
    animation: blink-cursor 1s step-end infinite;
}

/* Hide cursor if reduced motion or static state required */
body.no-cursor .hero-subtext::after {
    display: none;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.chip {
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* BUTTONS */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* CARDS (Experience) */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scene.active .card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scene.active .card:before {
    opacity: 1;
}

.card-header h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.card-header .company {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.card-header .date {
    display: block;
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Bullets with Improved Stagger */
.card-bullets {
    list-style: none;
    padding-left: 0;
}

.card-bullets li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(15px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Pop effect ease */
}

.card-bullets li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Stagger Logic for up to 8 items */
.scene.active .card-bullets li:nth-child(1) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateX(0);
}

.scene.active .card-bullets li:nth-child(2) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateX(0);
}

.scene.active .card-bullets li:nth-child(3) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateX(0);
}

.scene.active .card-bullets li:nth-child(4) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateX(0);
}

.scene.active .card-bullets li:nth-child(5) {
    transition-delay: 0.7s;
    opacity: 1;
    transform: translateX(0);
}

.scene.active .card-bullets li:nth-child(6) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateX(0);
}

.scene.active .card-bullets li:nth-child(7) {
    transition-delay: 0.9s;
    opacity: 1;
    transform: translateX(0);
}

.scene.active .card-bullets li:nth-child(8) {
    transition-delay: 1.0s;
    opacity: 1;
    transform: translateX(0);
}

.small-card {
    padding: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Split Layouts (Edu/Certs) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

.degree-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--accent);
    font-weight: bold;
}

.doc-card,
.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-card:hover,
.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.doc-placeholder img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.image-panel {
    perspective: 1000px;
}

.premium-list {
    list-style: none;
}

.premium-list li {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.scene.active .premium-list li:nth-child(1) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.scene.active .premium-list li:nth-child(2) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.scene.active .premium-list li:nth-child(3) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.scene.active .premium-list li:nth-child(4) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.scene.active .premium-list li:nth-child(5) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

/* --- TERMINAL CARD (Replaces Portfolio Preview) --- */
.terminal-card {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.terminal-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.terminal-header {
    background: #1a1a1a;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.terminal-dots {
    display: flex;
    gap: 6px;
    margin-right: 12px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #555;
}

.terminal-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.terminal-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.terminal-dots span:nth-child(3) {
    background-color: #27c93f;
}

.terminal-title {
    color: #888;
    font-size: 0.75rem;
    opacity: 0.8;
}

.terminal-body {
    padding: 12px;
    background: #0c0c0c;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.term-line {
    font-size: 0.8rem;
    color: #a0a0a0;
    line-height: 1.4;
    opacity: 0;
    animation: line-reveal 0.1s forwards;
}

.term-line.highlight {
    color: var(--accent);
    font-weight: bold;
}

.term-line.success {
    color: #27c93f;
}

/* Staggered Animation for Lines */
.scene.active .term-line:nth-child(1) {
    animation-delay: 0.2s;
}

.scene.active .term-line:nth-child(2) {
    animation-delay: 0.3s;
}

.scene.active .term-line:nth-child(3) {
    animation-delay: 0.4s;
}

.scene.active .term-line:nth-child(4) {
    animation-delay: 0.5s;
}

.scene.active .term-line:nth-child(5) {
    animation-delay: 0.6s;
}

.scene.active .term-line:nth-child(6) {
    animation-delay: 0.7s;
}

@keyframes line-reveal {
    to {
        opacity: 1;
    }
}

.terminal-footer {
    padding: 10px 12px;
    background: #111;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.tech-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-badge {
    font-size: 0.7rem;
    background: #222;
    color: #ccc;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #444;
}

.term-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.term-cta:hover {
    background: var(--accent-glow);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Mobile Specific Optimizations */
@media (max-width: 768px) {
    .terminal-card {
        margin-top: 0;
        /* Remove excess margin if any */
    }

    .terminal-body {
        padding: 8px;
    }

    .term-line {
        font-size: 0.7rem;
        /* Smaller monospace font */
        line-height: 1.2;
    }

    /* Ensure card doesn't get too tall */
    .terminal-footer {
        padding: 8px;
    }

    .term-cta {
        padding: 10px 0;
        /* Larger touch target */
    }
}

/* SKILLS */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.skill-group h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-chip {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Pop effect */
}

/* Staggered Chips Reveal via child index within container */
.scene.active .skill-chip {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Using simple delays for groups is easiest for maintainability */
.delay-1 .skill-chip:nth-child(1) {
    transition-delay: 0.30s;
}

.delay-1 .skill-chip:nth-child(2) {
    transition-delay: 0.35s;
}

.delay-1 .skill-chip:nth-child(3) {
    transition-delay: 0.40s;
}

.delay-1 .skill-chip:nth-child(4) {
    transition-delay: 0.45s;
}

.delay-1 .skill-chip:nth-child(5) {
    transition-delay: 0.50s;
}

.delay-1 .skill-chip:nth-child(6) {
    transition-delay: 0.55s;
}

.delay-1 .skill-chip:nth-child(7) {
    transition-delay: 0.60s;
}

.delay-1 .skill-chip:nth-child(8) {
    transition-delay: 0.65s;
}

.delay-1 .skill-chip:nth-child(9) {
    transition-delay: 0.70s;
}

.delay-2 .skill-chip:nth-child(1) {
    transition-delay: 0.60s;
}

.delay-2 .skill-chip:nth-child(2) {
    transition-delay: 0.65s;
}

.delay-2 .skill-chip:nth-child(3) {
    transition-delay: 0.70s;
}

.delay-2 .skill-chip:nth-child(4) {
    transition-delay: 0.75s;
}

.delay-2 .skill-chip:nth-child(5) {
    transition-delay: 0.80s;
}

.delay-2 .skill-chip:nth-child(6) {
    transition-delay: 0.85s;
}

.delay-3 .skill-chip:nth-child(1) {
    transition-delay: 0.90s;
}

.delay-3 .skill-chip:nth-child(2) {
    transition-delay: 0.95s;
}

.delay-3 .skill-chip:nth-child(3) {
    transition-delay: 1.00s;
}

.delay-3 .skill-chip:nth-child(4) {
    transition-delay: 1.05s;
}

.delay-3 .skill-chip:nth-child(5) {
    transition-delay: 1.10s;
}

.delay-3 .skill-chip:nth-child(6) {
    transition-delay: 1.15s;
}

.delay-3 .skill-chip:nth-child(7) {
    transition-delay: 1.20s;
}

.delay-3 .skill-chip:nth-child(8) {
    transition-delay: 1.25s;
}

.delay-3 .skill-chip:nth-child(9) {
    transition-delay: 1.30s;
}

.delay-3 .skill-chip:nth-child(10) {
    transition-delay: 1.35s;
}

.delay-3 .skill-chip:nth-child(11) {
    transition-delay: 1.40s;
}

/* Contact */
.contact-content {
    text-align: center;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.btn-copy {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    display: inline-block;
}

.pulse-btn {
    animation: pulse-green 2s infinite;
}

/* --- KEYFRAMES --- */

@keyframes ambient-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-5%, -5%) scale(1.1);
    }
}

@keyframes text-shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes soft-pulse {
    0% {
        opacity: 0.9;
        text-shadow: 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 25px var(--accent-glow);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 var(--accent-glow);
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
        box-shadow: 0 0 10px 10px transparent;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--accent);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

@keyframes drift-up-settle {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .bg-ambient,
    .cursor-glow,
    .overlay-noise {
        display: none;
    }

    .scene {
        transition: opacity 0.3s ease;
        transform: none !important;
    }

    .scene.active {
        opacity: 1;
    }

    .card-bullets li {
        opacity: 1;
        transform: none;
        transition: none;
    }
}