/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    /* Retro Halloween Orange Theme */
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ff4500;
    --purple-accent: #9d4edd;
    --text-color: #f0f0f0;
    --text-dark: #1a1a2e;
    --text-light: #b8b8b8;
    --bg-color: #0f0f1e;
    --bg-light: #1a1a2e;
    --bg-card: #16213e;
    --border-color: #ff6b35;
    --shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    --shadow-lg: 0 0 40px rgba(255, 107, 53, 0.5);
    --glow: 0 0 10px rgba(255, 107, 53, 0.8);
    --glow-strong: 0 0 30px rgba(255, 107, 53, 1);

    /* Typography */
    --font-heading: 'Space Mono', monospace;
    --font-body: 'Space Mono', monospace;
    --font-mono: 'Space Mono', monospace;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0px;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Animated Background Paths - Flowing Lines Effect */
#background-paths {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    will-change: transform;
    transform: translateZ(0);
    contain: strict;
}

#background-paths path {
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2.5;
    opacity: 0.4;
    animation: pathFlow 25s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

#background-paths path:nth-child(2n) {
    animation-duration: 30s;
    animation-delay: -5s;
    opacity: 0.35;
    stroke-width: 2;
}

#background-paths path:nth-child(3n) {
    animation-duration: 35s;
    animation-delay: -10s;
    opacity: 0.3;
}

#background-paths path:nth-child(4n) {
    stroke: var(--purple-accent);
    animation-duration: 40s;
    opacity: 0.25;
    filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.5));
}

@keyframes pathFlow {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }
    50% {
        stroke-dashoffset: 1000;
        opacity: 0.5;
    }
}

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

/* Header and Navigation */
header {
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

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

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: var(--glow);
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

/* Terminal Blinking Cursor */
.logo h1::after {
    content: '█';
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: var(--glow);
}

/* Hero Section - Vaporwave Grid */
.hero {
    background:
        linear-gradient(180deg,
            #0a0a15 0%,
            #1a0b2e 20%,
            #3d1e5f 40%,
            #5a2550 60%,
            #8a3f2a 85%,
            #c4651e 100%
        );
    position: relative;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
}

/* Retro Grid Canvas */
#retro-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Glowing Sun - Merged behind content */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background:
        radial-gradient(circle,
            rgba(255, 107, 53, 0.6) 0%,
            rgba(247, 147, 30, 0.4) 30%,
            rgba(255, 69, 0, 0.2) 60%,
            transparent 100%
        );
    border-radius: 50%;
    z-index: 1;
    animation: sunPulse 4s ease-in-out infinite;
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.3),
        0 0 80px rgba(247, 147, 30, 0.2);
}

@keyframes sunPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 21, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 1rem;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.profile-pic {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: var(--glow-strong), 0 0 60px rgba(157, 78, 221, 0.5);
    animation: float 3s ease-in-out infinite;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: var(--glow-strong);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

/* Terminal Blinking Cursor for Hero Title */
.hero-content h2::after {
    content: '█';
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

.hero-content .title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    text-shadow: var(--glow);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4);
    animation: neonFlicker 4s infinite;
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.6;
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    box-shadow: var(--glow);
    transition: all 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
    border-color: var(--secondary-color);
}

/* Sections */
section {
    padding: 4rem 2rem;
    contain: layout style;
}

section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    text-shadow: var(--glow);
    font-weight: 700;
    letter-spacing: 2px;
}

.intro {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(15, 15, 30, 0.3) 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: var(--bg-card);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.interest-card {
    width: 100%;
    text-align: left;
    cursor: pointer;
    font: inherit;
    background-color: var(--bg-card);
    color: var(--text-color);
    padding: 0;
}

.interest-card:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
}

.interest-cta {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.interest-card:hover .interest-cta {
    color: var(--primary-color);
    text-shadow: var(--glow);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card-content {
    padding: 1.5rem;
}

.project-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.project-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Interest Window (XP-style) */
.interest-window-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 21, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}

.interest-window-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.interest-window {
    width: min(720px, 92vw);
    background: linear-gradient(180deg, rgba(22, 33, 62, 0.98) 0%, rgba(15, 15, 30, 0.98) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 0.6rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(10px) scale(0.98);
    transition: transform 0.2s ease;
    outline: none;
}

.interest-window.is-open {
    transform: translateY(0) scale(1);
}

.interest-window.is-maximized {
    width: min(1000px, 96vw);
    height: min(80vh, 720px);
    display: flex;
    flex-direction: column;
}

.interest-window.is-maximized .interest-window-body {
    overflow: auto;
}

.interest-window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.9rem;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.25), rgba(157, 78, 221, 0.25));
    border-bottom: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 0.45rem 0.45rem 0 0;
}

.interest-window-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-color);
    text-shadow: var(--glow);
}

.interest-window-controls {
    display: flex;
    gap: 0.5rem;
}

.window-btn {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid rgba(255, 107, 53, 0.7);
    background: rgba(22, 33, 62, 0.95);
    position: relative;
    cursor: pointer;
}

.window-btn:hover {
    box-shadow: var(--glow);
}

.window-btn-square::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1.5px solid rgba(240, 240, 240, 0.9);
}

.window-btn-close::before,
.window-btn-close::after {
    content: '';
    position: absolute;
    left: 4px;
    right: 4px;
    top: 8px;
    height: 1.5px;
    background: rgba(240, 240, 240, 0.9);
    transform-origin: center;
}

.window-btn-close::before {
    transform: rotate(45deg);
}

.window-btn-close::after {
    transform: rotate(-45deg);
}

.interest-window-body {
    padding: 1.5rem;
    text-align: left;
    color: var(--text-light);
}

.interest-window-body p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.interest-window-body ul {
    padding-left: 1.25rem;
    display: grid;
    gap: 0.5rem;
}

.interest-window-body li {
    color: var(--text-light);
}

body.modal-open {
    overflow: hidden;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(157, 78, 221, 0.2));
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.project-link:hover {
    text-decoration: underline;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

/* Page Header */
.page-header {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-color) 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.page-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-shadow: var(--glow);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Contact Form */
.contact-form-card {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form {
    text-align: left;
}

.contact-form .cf-turnstile {
    margin: 1.5rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 0.5rem;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    width: 100%;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.contact-form .cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
}

.form-status.error {
    display: block;
    background: rgba(255, 69, 0, 0.15);
    border: 1px solid rgba(255, 69, 0, 0.4);
    color: var(--accent-color);
}

/* Loading State */
.loading {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-light) 100%);
    color: var(--text-color);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -5px 20px rgba(255, 107, 53, 0.2);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    color: var(--primary-color);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--secondary-color);
    filter: drop-shadow(var(--glow));
    transform: translateY(-2px);
}

/* Page Load Fade-In Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes - elements start hidden */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-scale {
    opacity: 0;
    animation: fadeInScale 0.8s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInFromRight 0.8s ease-out forwards;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* Responsive Design */
@media (max-width: 768px) {
    /* Header and Navigation Mobile Fixes */
    header nav {
        padding: 0.75rem 1rem;
    }

    /* Kill backdrop-filter on mobile - major GPU cost */
    header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background-color: rgba(26, 26, 46, 0.98);
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0.4rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

    /* Fix filter buttons overflow */
    .filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    /* === Mobile Performance Optimizations === */

    /* Reduce SVG path complexity on mobile */
    #background-paths {
        opacity: 0.25;
    }

    /* Disable SVG path animations entirely on mobile - just show static paths */
    #background-paths path {
        filter: none;
        animation: none;
        opacity: 0.3;
    }

    /* Hide most paths on mobile, keep only first 3 */
    #background-paths path:nth-child(n+4) {
        display: none;
    }

    /* Simplify hero on mobile */
    .hero {
        min-height: 500px;
        padding: 4rem 1rem;
    }

    /* Disable sun pulse on mobile */
    .hero::before {
        animation: none;
    }

    /* Kill backdrop-filter on hero content - major lag source */
    .hero-content {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 10, 21, 0.85);
    }

    /* Disable neon flicker animation - text-shadow changes are CPU-bound */
    .hero-content .subtitle {
        animation: none;
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    /* Disable float animation on profile pic */
    .profile-pic {
        animation: none;
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
    }

    /* Simplify glow effects on section headings */
    section h3 {
        text-shadow: none;
    }

    .logo h1 {
        text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }

    /* Simplify card hover shadows */
    .project-card {
        box-shadow: none;
    }

    .interest-window {
        width: 94vw;
    }

    .interest-window-body {
        max-height: 60vh;
        overflow: auto;
    }

    /* Reduce CTA button shadow and prevent overflow */
    .cta-button {
        box-shadow: none;
        max-width: 100%;
        word-break: break-all;
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }

    /* Remove social link hover filter */
    .social-links a:hover {
        filter: none;
    }

    footer {
        box-shadow: none;
    }

    footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    /* Prevent horizontal overflow on all containers */
    .container, .hero-content, .projects, .contact-grid, .contact-card {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Force text wrapping */
    h1, h2, h3, h4, h5, h6, p, a, span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Contact page specific fixes */
    .contact-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-card a {
        font-size: 0.9rem;
        display: inline-block;
        max-width: 100%;
    }
}

/* Extra Small Devices (phones < 480px) */
@media (max-width: 480px) {
    header nav {
        padding: 0.6rem 0.75rem;
    }

    .logo h1 {
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 0.4rem;
    }

    .nav-links a {
        font-size: 0.7rem;
        padding: 0.2rem 0.3rem;
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
