/* ==========================================================================
   MMMUT RESO - INTERNAL SIH 2026 OFFICIAL LAUNCH CEREMONY STYLESHEET
   UI/UX Pro Design System: Authentic SIH 2026 Brain-Bulb Palette
   - Left Brain / Circuit Accent: Electric Saffron (#ff6b00 / #f97316)
   - Right Brain / Binary Accent: Digital Emerald Green (#00a859 / #10b981)
   - Tech Base: Deep Slate Charcoal (#09131d / #0f1f2c)
   - Cards: Glassmorphism with Dual Saffron-Green Gradient Glows
   ========================================================================== */

:root {
    --bg-dark: #070d14;
    --bg-card: rgba(15, 27, 40, 0.82);
    --bg-card-hover: rgba(22, 38, 56, 0.94);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(255, 107, 0, 0.4);

    --sih-saffron: #ff6b00;
    --sih-saffron-glow: #ff8533;
    --sih-green: #00a859;
    --sih-green-glow: #10b981;
    --sih-slate: #1a2936;
    --sih-slate-dark: #0f1f2c;

    --accent-gold: #ffb703;
    --accent-cyan: #00f5d4;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --font-sans: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-mono: 'Fira Code', monospace;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Hide scrollbar for Chrome, Safari, Firefox, Opera, Edge */
html, body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;             /* Chrome, Safari and Opera */
}

/* Background Canvas Overlay */
#particleCanvas, #confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}
#particleCanvas { z-index: -2; }
#confettiCanvas { z-index: 9999; }

/* Header Navigation */
.app-header {
    background: rgba(7, 13, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.85rem 2rem;
}

.header-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.university-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.university-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
    font-family: var(--font-heading);
}

/* Center Ceremonial Header Title Bar */
.header-ceremony-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .header-ceremony-title { display: none; }
}

/* Hero Section Ceremonial Tagline Divider Bar */
.ceremony-tagline-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    max-width: 780px;
    margin-bottom: 0.8rem;
}

.tagline-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--sih-saffron), var(--sih-green), transparent);
    opacity: 0.75;
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--sih-saffron);
    text-transform: uppercase;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition-fast);
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.05);
}

/* Typography & Dual Tone Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--sih-saffron) 0%, var(--sih-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-success { color: var(--sih-green); }
.text-warning { color: var(--sih-saffron); }

.btn {
    padding: 0.7rem 1.6rem;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--sih-saffron), var(--sih-green));
    color: #fff;
    box-shadow: 0 4px 25px rgba(255, 107, 0, 0.4);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 168, 89, 0.6);
}

.btn-lg {
    padding: 1rem 2.4rem;
    font-size: 1.1rem;
}

/* Main Layout & Ceremony Section */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ceremony-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.ceremony-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    text-align: center;
}

.dignitary-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.glow-tag {
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--sih-saffron);
    padding: 0.4rem 1.3rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ceremony-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
}

.ceremony-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Faculty & Chief Guests Cards Section */
.faculty-section {
    width: 100%;
    max-width: 1100px;
    margin-top: 0.5rem;
}

.faculty-section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--sih-saffron);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.faculty-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 1.4rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.faculty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, var(--sih-saffron), var(--sih-green));
    opacity: 0.8;
}

.faculty-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.faculty-img-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--sih-saffron), var(--sih-green));
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.faculty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #0f1f2c;
}

.faculty-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.faculty-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sih-saffron);
    line-height: 1.35;
}

/* MASTER 3D LAUNCH CONTROL CONSOLE */
.launch-control-box {
    position: relative;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem 4.5rem 2.5rem;
}

.button-particle-canvas {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    pointer-events: none;
    z-index: 3;
}



/* MASTER 3D SAFFRON & EMERALD LAUNCH BUTTON */
.big-red-button {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    outline: none;
    z-index: 10;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.button-base {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(180deg, #7a3100 0%, #220b00 100%);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.95),
        0 0 50px rgba(255, 107, 0, 0.45);
    z-index: 1;
}

.button-surface {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 35% 25%, #ffb366 0%, #ff6b00 48%, #c24e00 78%, #662700 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 8px 20px rgba(255, 255, 255, 0.7),
        inset 0 -14px 28px rgba(0, 0, 0, 0.85),
        0 0 60px rgba(255, 107, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.button-specular-highlight {
    position: absolute;
    top: 10px;
    left: 22px;
    width: 90px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(-25deg);
    pointer-events: none;
    z-index: 3;
}

.button-core-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 107, 0, 0) 70%);
    pointer-events: none;
    z-index: 3;
    animation: pulseGlow 2.5s infinite alternate ease-in-out;
}

.button-top {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95), 0 0 16px rgba(0, 0, 0, 0.85);
}

.launch-icon {
    font-size: 3.6rem;
    margin-bottom: 0.4rem;
    color: #ffffff;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.95));
    animation: iconPulse 2s infinite alternate;
}

.button-text {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.button-subtext {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0.95;
    color: #f1f5f9;
    margin-top: 3px;
    text-transform: uppercase;
}

.big-red-button:hover .button-surface {
    box-shadow: 
        inset 0 10px 24px rgba(255, 255, 255, 0.85),
        inset 0 -14px 28px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 107, 0, 1),
        0 0 45px rgba(0, 168, 89, 0.6);
    transform: scale(1.035);
}

.big-red-button:active .button-surface,
.big-red-button.pressed .button-surface {
    transform: translateY(12px) scale(0.96);
    box-shadow: 
        inset 0 3px 8px rgba(255, 255, 255, 0.3),
        inset 0 -6px 14px rgba(0, 0, 0, 0.95),
        0 0 35px rgba(255, 107, 0, 0.7);
}

.launch-instruction {
    margin-top: 5rem;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(15, 27, 40, 0.85);
    padding: 0.75rem 1.8rem;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.big-red-button:hover .button-surface {
    box-shadow: 
        inset 0 8px 16px rgba(255, 255, 255, 0.7),
        inset 0 -10px 20px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 168, 89, 1);
    transform: scale(1.02);
}

.big-red-button:active .button-surface,
.big-red-button.pressed .button-surface {
    transform: translateY(12px) scale(0.97);
    box-shadow: 
        inset 0 2px 6px rgba(255, 255, 255, 0.3),
        inset 0 -4px 10px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 107, 0, 0.6);
}

/* CINEMATIC LAUNCH MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Solid opaque bg instead of blur — background is hidden during modal anyway */
    background: rgba(4, 8, 14, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.launch-modal-content {
    width: 100%;
    max-width: 900px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Countdown Overlay */
.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.countdown-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--sih-saffron);
    box-shadow: 0 0 35px var(--sih-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseCircle 1s infinite alternate;
}

#countdownNumber {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px var(--sih-saffron);
}

.countdown-status {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--sih-saffron);
}

/* 100% FULLSCREEN UNCONTAINED VIDEO OVERLAY (CRISP PIXELS - SUBTLE 1.05x SCALE) */
.fullscreen-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fullscreen-video-overlay video {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    object-position: center center;
    transform: scale(1.05) translate(-1.2%, -1.2%);
    display: block;
}

@media (max-width: 768px) {
    .fullscreen-video-overlay video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        transform: scale(1.06) translate(-1.5%, -1.5%);
    }
}

.video-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-status-tag {
    background: rgba(15, 27, 40, 0.9);
    border: 1px solid rgba(0, 168, 89, 0.4);
    padding: 0.5rem 1.4rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.video-title {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--sih-saffron);
}

.video-screen-wrapper {
    width: 100%;
    max-width: 650px;
    max-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.9), 0 8px 30px rgba(0, 0, 0, 0.6);
}

#sihLaunchVideo {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: 14px;
    display: block;
}

.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sih-green); box-shadow: 0 0 8px var(--sih-green); }

.progress-section { margin-bottom: 1.5rem; }
.progress-info { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-main); }
.progress-bar-bg { width: 100%; height: 12px; background: rgba(255, 255, 255, 0.08); border-radius: 6px; overflow: hidden; }

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--sih-saffron), var(--sih-green));
    box-shadow: 0 0 15px var(--sih-saffron);
    transition: width 0.3s ease-out;
}

.log-container {
    height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.88rem;
    padding-right: 0.5rem;
}

.log-container::-webkit-scrollbar { width: 6px; }
.log-container::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 3px; }

.log-line { line-height: 1.4; animation: slideUp 0.3s ease forwards; }
.timestamp { color: #64748b; margin-right: 8px; }
.prefix { color: var(--sih-saffron); font-weight: 600; margin-right: 8px; }
.log-line.system { color: #94a3b8; }
.log-line.success { color: var(--sih-green); font-weight: 600; }
.log-line.info { color: #38bdf8; }
.log-line.highlight { color: var(--sih-saffron); font-weight: 700; }

/* Success & Redirect Box */
.success-reveal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
    padding: 1rem 0;
    animation: zoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-wrap {
    font-size: 4.8rem;
    color: var(--sih-green);
    filter: drop-shadow(0 0 25px var(--sih-green));
}

.success-status-text {
    color: var(--sih-green);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.success-title {
    font-size: 2.1rem;
    color: #fff;
}

.success-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
}

.redirect-timer-box {
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: var(--sih-saffron);
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Footer */
.app-footer {
    border-top: 1px solid var(--border-glass);
    background: rgba(5, 11, 18, 0.94);
    padding: 1.8rem 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-ceremony-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--sih-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    text-transform: uppercase;
}

.dot-sep {
    color: var(--sih-green);
    font-size: 1.1rem;
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animation Keyframes */
@keyframes pulseGlow { 0% { opacity: 0.6; transform: scale(0.95); } 100% { opacity: 1; transform: scale(1.1); } }
@keyframes outerPulse { 0%, 100% { transform: scale(0.95); opacity: 0.4; } 50% { transform: scale(1.1); opacity: 0.85; } }
@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes iconPulse { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
@keyframes pulseCircle { 0% { transform: scale(0.98); box-shadow: 0 0 25px var(--sih-saffron); } 100% { transform: scale(1.05); box-shadow: 0 0 50px var(--sih-saffron); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
.animate-bounce { animation: bounce 1.8s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-8px); } 60% { transform: translateY(-4px); } }

/* Desktop-specific vertical layout optimizations to fit content within 100vh */
@media (min-width: 1024px) {
    .ceremony-section {
        padding: 0.8rem 1.5rem;
    }
    .ceremony-container {
        gap: 1.2rem;
    }
    .launch-control-box {
        margin: 0.5rem 0;
        padding: 1.5rem 2.5rem 2rem 2.5rem;
    }
    .launch-instruction {
        margin-top: 3.5rem;
    }
    .app-footer {
        padding: 1rem 1.5rem;
        margin-top: 1rem;
    }
}
/* GPU compositing hint for smooth video playback */
.fullscreen-video-overlay video {
    will-change: transform;
}

/* Disable expensive animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


