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

:root {
    --primary-color: #00d4ff;
    --primary-hover: #00b8e6;
    --primary-glow: rgba(0, 212, 255, 0.5);
    --secondary-color: #7c3aed;
    --secondary-glow: rgba(124, 58, 237, 0.5);
    --success-color: #00ff88;
    --success-glow: rgba(0, 255, 136, 0.4);
    --warning-color: #ffb800;
    --warning-glow: rgba(255, 184, 0, 0.4);
    --error-color: #ff3366;
    --text-primary: #e0e7ff;
    --text-secondary: #a5b4fc;
    --text-muted: #818cf8;
    --bg-primary: rgba(15, 23, 42, 0.8);
    --bg-secondary: rgba(30, 41, 59, 0.6);
    --bg-glass: rgba(15, 23, 42, 0.4);
    --border-color: rgba(99, 102, 241, 0.3);
    --border-glow: rgba(99, 102, 241, 0.5);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #0a0e27;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-lg),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    animation: fadeIn 0.6s ease-out;
    position: relative;
    z-index: 1;
}

.container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.3) 0%, 
        rgba(124, 58, 237, 0.3) 50%,
        rgba(0, 212, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    margin-bottom: 2.5rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #00d4ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    letter-spacing: 2px;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.input-section {
    margin-bottom: 1.5rem;
}

.label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    outline: none;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.input:focus {
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2),
                0 0 20px rgba(0, 212, 255, 0.3),
                inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.input::placeholder {
    color: var(--text-muted);
}

.ai-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0a0e27;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4),
                0 0 20px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.ai-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6),
                0 0 30px rgba(124, 58, 237, 0.5);
}

.ai-btn:active:not(:disabled) {
    transform: translateY(0);
}

.ai-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ai-icon {
    font-size: 1.25rem;
}

.suggested-name {
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--primary-color);
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary-color);
    min-height: 3rem;
    display: flex;
    align-items: center;
    animation: slideIn 0.4s ease-out;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.suggested-name.hidden {
    display: none;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.start-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a0e27;
    background: linear-gradient(135deg, var(--success-color), #00cc77);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4),
                0 0 30px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.start-btn:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 255, 136, 0.6),
                0 0 40px rgba(0, 255, 136, 0.5);
}

.start-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.process-container {
    width: 100%;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    z-index: 0;
}

.process-steps.active::before {
    background: linear-gradient(to bottom, var(--success-color), var(--primary-color));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    animation: progressLine 0.5s ease-out;
}

@keyframes progressLine {
    from {
        height: 0;
    }
}

.step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: stepFadeIn 0.6s ease-out forwards;
}

.step.active {
    animation-delay: 0s;
}

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.step.pending .step-icon {
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-muted);
    border-color: rgba(0, 212, 255, 0.2);
}

.step.processing .step-icon {
    background: linear-gradient(135deg, var(--warning-color), #ff9500);
    border-color: var(--warning-color);
    color: #0a0e27;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px var(--warning-glow),
                0 4px 15px rgba(0, 0, 0, 0.3);
}

.step.processing .step-icon::after {
    border-color: var(--warning-color);
    animation: ripple 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px var(--warning-glow);
}

.step.completed .step-icon {
    background: linear-gradient(135deg, var(--success-color), #00cc77);
    border-color: var(--success-color);
    color: #0a0e27;
    box-shadow: 0 0 20px var(--success-glow),
                0 4px 15px rgba(0, 0, 0, 0.3);
}

.step.completed .step-icon::after {
    border-color: var(--success-color);
    box-shadow: 0 0 20px var(--success-glow);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-content {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stage-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
}

.step.processing .step-content {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.05);
}

.step.completed .step-content {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.05);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.step-title-text {
    flex: 1;
}

.sub-steps-container {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sub-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    opacity: 0.5;
    transform: translateX(-10px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sub-step.pending {
    opacity: 0.5;
    border-color: var(--border-color);
}

.sub-step.processing {
    opacity: 1;
    transform: translateX(0);
    border-color: var(--warning-color);
    background: rgba(255, 184, 0, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.3),
                0 0 15px rgba(255, 184, 0, 0.2),
                inset 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: subStepSlideIn 0.4s ease-out;
}

.sub-step.completed {
    opacity: 1;
    transform: translateX(0);
    border-color: var(--success-color);
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.3),
                0 0 15px rgba(0, 255, 136, 0.2),
                inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes subStepSlideIn {
    from {
        opacity: 0.5;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sub-step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.sub-step.pending .sub-step-icon {
    border-color: var(--border-color);
}

.sub-step.processing .sub-step-icon {
    border-color: var(--warning-color);
    background: var(--warning-color);
    animation: subStepPulse 1s ease-in-out infinite;
}

.sub-step.processing .sub-step-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--warning-color);
    animation: subStepRipple 1s ease-in-out infinite;
}

.sub-step.completed .sub-step-icon {
    border-color: var(--success-color);
    background: var(--success-color);
}

.sub-step.completed .sub-step-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

@keyframes subStepPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes subStepRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.sub-step-text {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    line-height: 1.6;
    text-shadow: 0 0 3px rgba(0, 212, 255, 0.2);
}

.step-output {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.step-output::before {
    content: '📄';
    font-size: 1rem;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.final-action {
    margin-top: 3rem;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: finalActionAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.register-btn-wrapper {
    position: relative;
    display: inline-block;
}

.register-btn-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s;
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.register-btn-wrapper:hover::before {
    opacity: 1;
}

@keyframes finalActionAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    60% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.final-action.hidden {
    display: none;
}

.register-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0e27;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #00d4ff 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5),
                0 0 30px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: registerPulse 2s ease-in-out infinite;
}

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

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

.register-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6),
                0 0 30px rgba(118, 75, 162, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
}

.register-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6),
                0 0 25px rgba(124, 58, 237, 0.5);
}

.register-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed, #00d4ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.register-btn:hover::after {
    opacity: 1;
    animation: borderGlow 1.5s ease-in-out infinite;
}

@keyframes registerPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5),
                    0 0 30px rgba(124, 58, 237, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 10px 50px rgba(0, 212, 255, 0.7),
                    0 0 40px rgba(124, 58, 237, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.arrow-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.register-btn:hover .arrow-icon {
    transform: translateX(8px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.register-btn span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.register-btn .arrow-icon {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .input-wrapper {
        flex-direction: column;
    }

    .ai-btn {
        width: 100%;
        justify-content: center;
    }

    .process-steps::before {
        left: 20px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-content {
        padding: 1rem;
    }

    .step-title {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .sub-step {
        padding: 0.625rem 0.875rem;
    }

    .sub-step-text {
        font-size: 0.875rem;
    }

    .sub-step-icon {
        width: 18px;
        height: 18px;
    }
}

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

