/* Dashboard Page Specific Styles */

.dashboard-hero {
    padding: 140px 24px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
}

.dashboard-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.dashboard-hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Dashboard Tabs */
.dashboard-tabs-section {
    padding: 0 24px;
    position: sticky;
    top: 73px;
    z-index: 100;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    justify-content: center;
}

.dash-tab {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.dash-tab:hover {
    background: var(--bg-card-hover);
    color: var(--text);
}

.dash-tab.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
}

/* Dashboard Sections */
.dashboard-section {
    display: none;
    padding: 60px 24px;
}

.dashboard-section.active {
    display: block;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 48px;
}

.dashboard-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.phase-badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.future-badge {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.dashboard-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.dashboard-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.phase-tag {
    display: inline-block;
    margin-top: 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--warning);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Dashboard Preview */
.dashboard-preview {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-preview {
    max-width: 400px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Dashboard Note */
.dashboard-note {
    margin-top: 48px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.5rem;
}

.note-content strong {
    color: var(--success);
    display: block;
    margin-bottom: 4px;
}

.note-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Student Benefits */
.student-benefits {
    margin-top: 48px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
}

.student-benefits h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-dark);
    border-radius: 10px;
}

.benefit-icon {
    color: var(--success);
    font-size: 1.25rem;
}

/* Future Features */
.future-features {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.future-feature {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.future-feature:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Roadmap */
.roadmap-note {
    margin-top: 60px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
}

.roadmap-note h3 {
    text-align: center;
    margin-bottom: 32px;
}

.roadmap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.roadmap-item {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    min-width: 180px;
}

.roadmap-phase {
    background: var(--gradient-1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.roadmap-content strong {
    display: block;
    margin-bottom: 4px;
}

.roadmap-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.roadmap-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-hero h1 {
        font-size: 2rem;
    }

    .dashboard-tabs {
        justify-content: flex-start;
    }

    .dashboard-preview {
        margin: 24px auto;
    }

    .future-feature {
        flex-direction: column;
    }

    .roadmap-arrow {
        transform: rotate(90deg);
    }
}