/* ViralCore Section Styles */
.viralcore-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(204, 163, 94, 0.05));
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
}

.viralcore-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.viralcore-content {
    flex: 1;
}

.viralcore-content .section-description {
    text-align: left;
    margin-left: 0;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-main);
    font-size: 1.05rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(204, 163, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.viralcore-image {
    flex: 1.1;
}

/* Dashboard Mockup UI */
.mockup-dashboard {
    display: flex;
    height: 400px;
    padding: 0;
    overflow: hidden;
    background: rgba(7, 11, 20, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dash-sidebar {
    width: 70px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
}

.dash-dot {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 8px;
    margin-bottom: 20px;
}

.dash-menu-item {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.dash-menu-item.active {
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dash-header {
    height: 60px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.01);
}

.dash-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.dash-content {
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    overflow-y: auto;
}

.dash-card {
    height: 100px;
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
}

.dash-card:hover {
    transform: translateY(-5px);
}

.dash-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}

.dash-line.w-x {
    width: 40%;
}

.dash-line.w-full {
    width: 100%;
}

.dash-line.w-3\/4 {
    width: 75%;
}

.dash-chart {
    flex: 1;
    background: linear-gradient(to top, rgba(204, 163, 94, 0.2), transparent);
    border-bottom: 2px solid var(--accent-blue);
    border-radius: 0 0 4px 4px;
    margin-top: auto;
}

.dash-list {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dash-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dash-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .viralcore-grid {
        flex-direction: column;
    }
}