/* ViralCore Page Specific Styles */
.vc-hero-section {
    padding: 190px 0 100px;
    background: radial-gradient(circle at center top, rgba(204, 163, 94, 0.08), transparent 60%);
}

.vc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.glow-badge {
    box-shadow: 0 0 20px rgba(204, 163, 94, 0.3);
    border-color: rgba(204, 163, 94, 0.4) !important;
}

.vc-subtitle {
    color: var(--text-main) !important;
    font-size: 1.3rem !important;
    font-weight: 500;
    margin-bottom: 25px !important;
    max-width: 90%;
}

.vc-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-blue);
}

.glass-container-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(204, 163, 94, 0.2);
    /* For glass effect */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.vc-main-video {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
}

/* Features Block */
.vc-features-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.vc-icon {
    background: linear-gradient(135deg, #CCA35E, #E8C37D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem !important;
}

.vc-card-glow {
    box-shadow: 0 0 40px rgba(204, 163, 94, 0.15) !important;
    border-color: rgba(204, 163, 94, 0.3) !important;
    background: linear-gradient(135deg, rgba(204, 163, 94, 0.05), transparent) !important;
}

/* Showcase section */
.vc-showcase-section {
    padding: 100px 0;
}

.vc-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.vc-showcase-row.reverse {
    grid-template-columns: 1.2fr 1fr;
    direction: rtl;
}

.vc-showcase-row.reverse>* {
    direction: ltr;
}

.vc-showcase-text h2 {
    font-size: 2.2rem;
    margin: 15px 0 25px;
}

.vc-showcase-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.text-gold {
    color: var(--accent-blue);
    margin-right: 10px;
}

.mt-4 {
    margin-top: 25px;
}

.image-glass-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.image-glass-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
}

.image-glass-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.glow-blue {
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.15), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.glow-purple {
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.15), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.glow-gold {
    box-shadow: 0 0 60px rgba(204, 163, 94, 0.15), 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {

    .vc-hero-grid,
    .vc-showcase-row,
    .vc-showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}