/* Revolutionary Feature Section */
.revolutionary-feature {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.revolutionary-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.revolutionary-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.revolutionary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    100% { box-shadow: 0 0 40px rgba(255, 107, 107, 0.8); }
}

.revolutionary-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.revolutionary-description {
    font-size: 1.25rem;
    color: #b8b8d1;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.revolutionary-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.rev-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.rev-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.rev-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #b8b8d1;
    font-weight: 500;
}

.revolutionary-cta {
    margin-top: 2rem;
}

.btn-revolutionary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-revolutionary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.4);
    color: #000;
}

.crown-jewel-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
    color: #1a1a3e !important;
    border: 2px solid #ffd700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
    animation: crownGlow 3s ease-in-out infinite alternate !important;
}

.crown-jewel-btn:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5) !important;
    transform: translateY(-3px) !important;
}

@keyframes crownGlow {
    0% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }
}

.btn-icon {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .revolutionary-title {
        font-size: 2rem;
    }
    
    .revolutionary-description {
        font-size: 1rem;
    }
    
    .revolutionary-stats {
        gap: 1rem;
    }
    
    .rev-stat {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .rev-stat-number {
        font-size: 1.5rem;
    }
}
