/* --- SECTION 2: GLASSMORPHISM ANALYTICS --- */
.analytics-showcase {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analytics-image-bg {
    position: relative;
    width: 90%;
    max-width: 1200px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.analytics-image-bg img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7);
}

/* 2026 Trend: Frosted Glass Overlay */
.glass-overlay-container {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 450px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #fff;
    z-index: 10;
}

.data-status {
    margin: 20px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ffcc;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffcc;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
    .glass-overlay-container {
        width: 80%;
        position: relative;
        right: auto;
        bottom: auto;
        margin: -50px auto 30px; /* Overlaps bottom of image on mobile */
    }
}

@media (max-width: 768px) {
    .analytics-image-bg {
        width: 100%;
        border-radius: 0;
    }
    .glass-overlay-container {
        width: 90%;
        padding: 25px;
    }
}