/* Versus Intro Block - Difbetween Theme */
.versus-intro {
    background: var(--difbetween-gradient, linear-gradient(135deg, #2563eb 0%, #3b82f6 100%));
    color: white;
    padding: 32px;
    border-radius: 12px;
    margin: 24px 0;
    text-align: center;
    box-shadow: var(--difbetween-shadow-lg, 0 10px 30px rgba(0,0,0,0.1));
    position: relative;
    overflow: hidden;
}

.versus-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    z-index: 1;
}

.versus-intro::after {
    content: '⚡';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    opacity: 0.8;
    z-index: 2;
}

.versus-intro h2 {
    margin: 0 0 16px 0;
    font-size: 2.5em;
    font-weight: 700;
    font-family: var(--difbetween-heading-font, 'Poppins', sans-serif);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.versus-intro p {
    font-size: 1.2em;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-family: var(--difbetween-heading-font, 'Inter', sans-serif);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Features */
.versus-intro .intro-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.versus-intro .intro-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.versus-intro .intro-feature span {
    font-weight: 600;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .versus-intro {
        padding: 24px 20px;
    }
    
    .versus-intro h2 {
        font-size: 2em;
    }
    
    .versus-intro p {
        font-size: 1.1em;
    }
    
    .versus-intro .intro-features {
        gap: 16px;
    }
    
    .versus-intro .intro-feature {
        padding: 10px 14px;
        font-size: 0.9em;
    }
} 