/* ═══════════════════════════════════════════════
   TRACKTIFY — REAL ASSET STYLES
   Styling for screenshots and user-provided icons
   ═══════════════════════════════════════════════ */

/* ─── SHOWCASE SCREENSHOTS ─── */
.app-screenshot {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
    background: var(--surface);
    border: 1px solid var(--border-light);
    transition: transform 0.8s var(--ease-out), box-shadow 0.8s var(--ease-out);
    animation: floatingScreenshot 8s ease-in-out infinite;
}

@keyframes floatingScreenshot {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.app-screenshot:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 50px 120px rgba(0,0,0,0.8), 0 0 30px rgba(63, 134, 198, 0.25);
    animation-play-state: paused;
}

.app-screenshot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ─── HEALTH STRIP UPDATES ─── */
.water-icon-main {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 8px 20px rgba(125, 211, 252, 0.3));
    animation: mascotFloat 4s ease-in-out infinite;
}

.water-demo {
    padding: 20px 0;
}

/* ─── MOOD ICON UPDATES ─── */
.mood-face {
    padding: 0;
    overflow: hidden;
}

.mood-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.3s var(--ease-spring);
}

.mood-face:hover img {
    transform: scale(1.1);
}

.mood-face--active {
    background: var(--surface-2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .water-icon-main {
        width: 60px;
        height: auto;
    }
}
