.scenario-example {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 102, 204, 0.08) 100%);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1rem;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.2), inset 0 0 30px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.scenario-title h5 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 102, 204, 0.7);
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
}

.scenario-example:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.25), inset 0 0 40px rgba(255, 255, 255, 0.08);
}

.scenario-example::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6555f0, #76a8d4, #10e71b);
    z-index: -1;
    border-radius: 16px;
    opacity: 0.8;
    filter: blur(1px);
    animation: neon-pulse 4s ease-in-out infinite;
}

@keyframes neon-pulse {
    0% {
        opacity: 0.8;
        filter: blur(1px);
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    }
    50% {
        opacity: 0.6;
        filter: blur(2px);
        box-shadow: 0 0 20px rgba(79, 172, 254, 0.8), 0 0 30px rgba(0, 242, 255, 0.6);
    }
    100% {
        opacity: 0.8;
        filter: blur(1px);
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    }
}

.scenario-title h5 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 50%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
}

.scenario-title h5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(45deg, #fdfdfd, #f80101) border-box;
    -webkit-mask: linear-gradient(#000000 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: border-glow 2s ease-in-out infinite;
}

.scenario-steps li {
    position: relative;
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    counter-increment: step;
}

.scenario-steps li::before {
    content: counter(step);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.5);
    transition: all 0.3s ease;
}

.scenario-steps li:hover {
    opacity: 1;
    transform: translateX(10px) translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(31, 38, 135, 0.2);
}

.scenario-steps li i {
    font-size: 1.5rem;
    color: #4facfe;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.scenario-steps li:hover i {
    transform: scale(1.2);
    color: #00f2ff;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.5));
}

.scenario-steps li:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.8);
}

.scenario-steps li::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 45px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, rgba(79, 172, 254, 0.8), transparent);
    z-index: -1;
    animation: connection-line 2s ease-in-out infinite;
}

@keyframes connection-line {
    0% {
        opacity: 0.3;
        transform: scaleY(0.95);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1.05);
    }
    100% {
        opacity: 0.3;
        transform: scaleY(0.95);
    }
}

.scenario-steps li:last-child::after {
    display: none;
}

.scene-card .scene-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scene-card:hover .scene-image img {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.3);
}

.scene-card .scene-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
}

.scene-card h4 {
    color: #00B0FF;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
    animation: text-glow 2s ease-in-out infinite;
}

.scene-card p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

.scene-card .fas {
    color: #4facfe;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 2px rgba(79, 172, 254, 0.5));
}

@keyframes border-glow {
    0% {
        opacity: 0.6;
        filter: blur(5px);
    }
    50% {
        opacity: 0.2;
        filter: blur(3px);
    }
    100% {
        opacity: 0.6;
        filter: blur(5px);
    }
}

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

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(79, 172, 254, 0.8), 0 0 30px rgba(0, 242, 255, 0.6);
    }
}

/* 更多应用场景卡片样式 */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f2ff, #4facfe, #00f2ff);
    z-index: -1;
    border-radius: 16px;
    animation: border-glow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

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

.card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card .card-body {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
}

.card .card-title {
    color: #00B0FF;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

.card .card-text {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card .fas {
    color: #4facfe;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 2px rgba(79, 172, 254, 0.5));
}