/* Dashboard Preview Styles - Clean Concept 1 Restored */
.dashboard-preview-container {
    position: absolute;
    /* Move below the text but not too far */
    top: 60%;
    left: 50%;
    transform: translateX(-50%);

    /* Slightly less than full width */
    width: 80vw;
    max-width: 1200px;
    height: 80vh;

    z-index: -1;
    overflow: hidden;
    pointer-events: none;

    /* SUBMERGED FADE */
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 30%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 30%,
            rgba(0, 0, 0, 0) 100%);

    /* AMBIENT GLOW BACKING */
    box-shadow: 0 0 100px rgba(6, 182, 212, 0.1);
}

.dashboard-preview-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.6;
    /* Transparency as requested */
    border-radius: 12px 12px 0 0;
    margin-top: -5%;
    /* Keep the crop of top navigation */
    transform: none;
    /* No 3D tilt */
}

.glass-edge-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 100%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
    display: block;
    /* Restore glass edge */
}

.preview-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #09090b);
    z-index: 1;
}