.dashboard-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 100px 20px;
}

.dashboard-gallery {
    margin: 60px 0;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
}

.gallery-main {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-main:hover .image-overlay {
    opacity: 1;
}

.image-caption {
    color: var(--wfs-white);
    font-size: 1.1rem;
    font-weight: 500;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.thumbnail {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: rgba(26, 26, 26, 0.8);
    position: relative;
}

.thumbnail:hover {
    border-color: var(--wfs-yellow);
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: var(--wfs-yellow);
    box-shadow: 0 0 20px rgba(229, 199, 56, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.thumbnail span {
    display: block;
    padding: 8px;
    text-align: center;
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.thumbnail.active span {
    color: var(--wfs-yellow);
}

.dashboard-features {
    margin: 80px 0;
}

.dashboard-features h3 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dash-feature {
    gap: 20px;
    padding: 25px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(229, 199, 56, 0.05);
    transition: all 0.3s;
}

.dash-feature:hover {
    background: rgba(229, 199, 56, 0.03);
    border-color: rgba(229, 199, 56, 0.2);
}

.dash-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.dash-feature h4 {
    color: var(--wfs-white);
    margin-bottom: 10px;
}

.dash-feature p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dashboard-stats-preview {
    background: rgba(229, 199, 56, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    margin: 60px 0;
}

.dashboard-stats-preview h3 {
    text-align: center;
    color: var(--wfs-white);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.stats-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-preview {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 15px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wfs-yellow);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--wfs-light-gray);
    margin-top: 5px;
}

.dashboard-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.info-card {
    padding: 40px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.05);
    text-align: center;
}

.info-card h3 {
    color: var(--wfs-yellow);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--wfs-light-gray);
    line-height: 1.8;
}

.dashboard-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(229, 199, 56, 0.05) 0%, rgba(229, 199, 56, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
}

.dashboard-cta h3 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.dashboard-cta p {
    color: var(--wfs-light-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .gallery-thumbnails {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dash-feature {
        padding: 25px 20px;
        display: block;
    }
    
    .dashboard-info {
        grid-template-columns: 1fr;
    }
    
    .stats-preview-grid {
        grid-template-columns: 1fr;
    }
}
