/* Modern Styles for RFLOYS */
:root {
    --text-yellow: #ffc107;
    --primary-glow: rgba(142, 36, 170, 0.5);
}

.text-yellow {
    color: var(--text-yellow);
}

/* Vilog Section Styles */
.vilog-banner-wrapper {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d0a4e 100%);
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.vilog-banner-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.vilog-banner-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(142, 36, 170, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vilog-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .vilog-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.vilog-badge .badge-title {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 8px 16px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.vilog-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .feature-item {
        justify-content: center;
    }
}

.feature-number {
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-primary-glow {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--primary-glow);
    width: 100%;
}

.btn-primary-glow:hover {
    transform: scale(1.05);
    background: #a339c7;
    box-shadow: 0 0 30px var(--primary-glow);
}