/* Demo Video Styles */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover img {
    opacity: 0.5;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 30px;
    color: white;
}

.video-thumbnail:hover .play-button {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Fallback Content Styles */
.fallback-content {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.fallback-content h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.demo-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin: 30px 0;
}

.demo-step {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.demo-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.demo-step p {
    margin: 10px 0;
    font-weight: 500;
}

.demo-image {
    margin-top: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.demo-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.demo-cta {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 20px;
}
