/* ============================================================
   ETMS — Public Display (LCD Kiosk) styles
   Designed for full-screen 1920x1080 displays
   ============================================================ */

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; overflow: hidden; }

body.kiosk-body {
    background:
        radial-gradient(circle at 15% 10%, rgba(115,103,240,0.18), transparent 45%),
        radial-gradient(circle at 85% 90%, rgba(0,207,232,0.14), transparent 45%),
        linear-gradient(135deg, #0B1F3A 0%, #1F4E79 100%);
    color: #fff;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.kiosk-stage {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.kiosk-slide {
    position: absolute;
    inset: 0;
    padding: 3vw 4vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.kiosk-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kiosk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.kiosk-title {
    font-size: 3vw;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, #fff, #C5C8FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.kiosk-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1vw;
    margin: 0;
}
.kiosk-clock {
    font-size: 1.6vw;
    font-weight: 700;
    background: rgba(255,255,255,0.08);
    padding: 0.6vw 1.2vw;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
}

.kiosk-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1vw;
    padding: 2vw;
    backdrop-filter: blur(18px);
    height: 100%;
}
.kiosk-metric {
    font-size: 4vw;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #7367F0, #00CFE8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.kiosk-metric-label {
    font-size: 1vw;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.4vw;
}

/* Slide progress indicator */
.kiosk-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #7367F0, #00CFE8);
    width: 0%;
    transition: width linear;
}

/* Slide nav dots */
.kiosk-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.kiosk-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.kiosk-dots span.active { background: #fff; width: 24px; border-radius: 4px; }

/* Photo gallery mosaic */
.photo-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1vw;
    height: 70vh;
}
.photo-mosaic img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 0.7vw;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    animation: etmsFadeIn 0.8s ease both;
}

/* Entrepreneur cards */
.ent-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2vw;
}
.ent-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 1vw;
    border-radius: 0.8vw;
    text-align: center;
    transition: transform 0.4s ease;
}
.ent-card:hover { transform: translateY(-6px); }
.ent-card img {
    width: 5vw; height: 5vw;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.6vw;
    border: 3px solid rgba(255,255,255,0.3);
}

@keyframes etmsFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Banner slide */
.banner-slide {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 100%;
    text-align: center;
}
.banner-slide .mega {
    font-size: 7vw;
    font-weight: 900;
    background: linear-gradient(90deg, #fff, #C5C8FF, #7367F0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: etmsShine 4s linear infinite;
}
@keyframes etmsShine {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.toolkit-ring {
    width: 20vw; height: 20vw;
    margin: 0 auto;
}
