/* Shuttr Progress Tracker CSS v1.5.0 */
html { scroll-behavior: smooth; }

body.shuttr-standalone-page {
    background-color: var(--shuttr-bg-color, #f8fafc) !important;
    font-family: var(--shuttr-font-family, 'Helvetica Neue', Helvetica, Arial, sans-serif) !important;
    margin: 0 !important; padding: 0 !important; min-height: 100vh;
    color: var(--shuttr-text-color, #0f172a);
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
}

body.shuttr-no-scroll { overflow: hidden !important; touch-action: none !important; }

.shuttr-page-outer-wrapper {
    display: flex; justify-content: center; align-items: center; min-height: 85vh; padding: 40px 16px; box-sizing: border-box;
}

.shuttr-dominos-tracker-container {
    font-family: var(--shuttr-font-family, 'Helvetica Neue', Helvetica, Arial, sans-serif) !important;
    background: #ffffff !important; color: var(--shuttr-text-color, #0f172a);
    width: 100%; max-width: 580px; margin: 0 auto; padding: 32px 28px;
    border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    text-align: center; box-sizing: border-box; position: relative; overflow: hidden;
}

.shuttr-top-home-nav { display: flex; justify-content: center !important; margin-bottom: 18px; }

.shuttr-btn-return-home {
    display: inline-flex; align-items: center;
    background: var(--shuttr-return-home-btn-color, #1200B8) !important;
    border: none !important; color: #ffffff !important;
    font-size: 13px; font-weight: 600; padding: 8px 22px; border-radius: 20px; text-decoration: none;
}

.shuttr-tracker-header { display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }
.shuttr-brand-logo img { max-width: 140px; max-height: 55px; height: auto; width: auto; object-fit: contain; }

.shuttr-greeting {
    font-size: 26px; font-weight: 700; margin: 0 0 4px 0;
    color: var(--shuttr-greeting-text-color, #000000) !important; letter-spacing: -0.5px;
}

.shuttr-tagline {
    font-size: 14px; color: var(--shuttr-tagline-text-color, #64748b) !important;
    margin: 0 0 24px 0; font-weight: 400;
}

.shuttr-login-card {
    background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 28px 24px; margin-bottom: 12px;
}
.shuttr-login-form { text-align: left; }
.shuttr-input-group { margin-bottom: 16px; }
.shuttr-input-group label { display: block; font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 6px; }

.shuttr-input-group input[type="email"],
.shuttr-input-group input[type="text"],
.shuttr-input-group input[type="password"] {
    width: 100%; background: #f8fafc !important; border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important; padding: 12px 14px !important; color: #0f172a !important;
    font-size: 14px !important; font-weight: 500 !important; box-sizing: border-box !important;
}

.shuttr-checkbox-group { margin-top: 12px; margin-bottom: 20px; }
.shuttr-checkbox-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: #64748b; cursor: pointer; }

.shuttr-btn-login, .shuttr-btn-download {
    display: inline-flex; align-items: center; justify-content: center; width: 100%;
    background: var(--shuttr-brand-color, #1200B8) !important; border: none !important; color: #ffffff !important;
    font-size: 14px !important; font-weight: 600 !important; padding: 13px 24px !important; border-radius: 8px !important;
    text-transform: uppercase !important; letter-spacing: 0.5px !important; cursor: pointer !important;
}

.shuttr-tracker-footer { margin-top: 24px; border-top: 1px solid #e2e8f0; padding-top: 16px; }
.shuttr-tracker-footer p { font-size: 12px; color: #94a3b8; margin: 0; font-weight: 500; }
.shuttr-tracker-footer a { color: var(--shuttr-brand-color, #1200B8) !important; text-decoration: none !important; font-weight: 600 !important; }

/* 3D DIAL ANIMATIONS */
.shuttr-dominos-wheel-wrapper { 
    position: relative; width: 280px; height: 290px; margin: 0 auto 20px auto; 
    display: flex; align-items: center; justify-content: center; 
    animation: shuttrDialGrow 4s ease-in-out infinite;
}

@keyframes shuttrDialGrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.045); }
}

.shuttr-wheel-ring { position: relative; width: 100%; height: 100%; }
.shuttr-wheel-svg { width: 100%; height: 100%; }
.shuttr-arc-segment { transition: all 0.3s ease; }

.segment-pending { fill: var(--shuttr-inactive-bg-color, #000000) !important; stroke: #ffffff; stroke-width: 2; }
.segment-completed-blue { fill: var(--shuttr-brand-color, #1200B8) !important; stroke: #ffffff; stroke-width: 2; }
.segment-current-yellow-glow { 
    fill: var(--shuttr-accent-color, #FFDF00) !important; stroke: #ffffff; stroke-width: 2; 
    animation: shuttrActiveStagePulse 2s ease-in-out infinite alternate;
}
@keyframes shuttrActiveStagePulse {
    0% { filter: drop-shadow(0 0 2px var(--shuttr-accent-color, #FFDF00)); opacity: 0.9; }
    100% { filter: drop-shadow(0 0 10px var(--shuttr-accent-color, #FFDF00)); opacity: 1; }
}

.segment-all-completed-blue { fill: var(--shuttr-brand-color, #1200B8) !important; stroke: #ffffff; stroke-width: 2; }
.shuttr-svg-label { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.label-pending { fill: var(--shuttr-inactive-text-color, #94a3b8) !important; }
.label-completed-white { fill: #ffffff !important; }
.label-current-black { fill: #000000 !important; font-weight: 800 !important; }
.label-all-completed-fade { fill: #ffffff !important; }

/* CENTRAL CORE */
.shuttr-central-core {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 165px; height: 165px; border-radius: 50%;
    background: radial-gradient(circle, #181b36 0%, #050508 85%) !important;
    border: 2px solid var(--shuttr-brand-color, #1200B8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex; align-items: center; justify-content: center; overflow: hidden; transition: transform 0.25s ease;
}
.shuttr-central-core.shuttr-proof-ready-core { border-color: var(--shuttr-accent-color, #FFDF00) !important; cursor: pointer; }

.shuttr-3d-hub-texture {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 2px, transparent 2px, transparent 6px);
    pointer-events: none; z-index: 1;
}

.shuttr-core-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 3; text-align: center; }
.shuttr-dominos-face-container { display: flex; flex-direction: column; align-items: center; gap: 10px; animation: shuttrFaceThink 6s ease-in-out infinite; }
.shuttr-face-eyes { display: flex; gap: 20px; animation: shuttrEyesThink 6s ease-in-out infinite; }
.shuttr-eye { width: 18px; height: 18px; border-radius: 50%; background: var(--shuttr-accent-color, #FFDF00); box-shadow: 0 0 8px rgba(255, 223, 0, 0.4); }
.shuttr-eye-right { animation: shuttrRandomWink 6s infinite ease-in-out; }

@keyframes shuttrEyesThink {
    0%, 100% { transform: translate(0, 0); }
    18%, 32% { transform: translate(-4px, -3px); }
    40%, 50% { transform: translate(0, 0); }
    60%, 75% { transform: translate(4px, -3px); }
}
@keyframes shuttrFaceThink { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-3.5deg); } 70% { transform: rotate(3.5deg); } }
@keyframes shuttrRandomWink { 0%, 40%, 46%, 100% { transform: scaleY(1); } 43%, 70%, 76% { transform: scaleY(0.1); } 80% { transform: scaleY(1); } }

.shuttr-face-smile { 
    width: 30px; height: 15px; border-bottom: 3px solid var(--shuttr-accent-color, #FFDF00); 
    border-radius: 0 0 30px 30px; animation: shuttrSmileThink 6s ease-in-out infinite;
}
@keyframes shuttrSmileThink { 0%, 100% { width: 30px; } 22%, 75% { width: 22px; } }

.shuttr-core-proof-now.shuttr-text-glow { font-size: 18px; font-weight: 800; color: #ffffff !important; letter-spacing: 1px; text-transform: uppercase; }
.shuttr-core-progress.shuttr-text-glow { font-size: 11px; font-weight: 700; color: var(--shuttr-accent-color, #FFDF00) !important; margin-top: 4px; }

/* PROOFING GALLERY */
.shuttr-fs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.shuttr-gallery-fav-badge { background: #fef08a; color: #854d0e; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 20px; text-decoration: none; }
.shuttr-btn-back-tracker { background: #ffffff; border: 1px solid #cbd5e1; color: #334155; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; text-decoration: none; }

.shuttr-proofing-tabs-nav { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.shuttr-tab-btn { background: #ffffff; border: 1px solid #e2e8f0; color: #334155; padding: 8px 16px; border-radius: 20px; font-size: 11px; font-weight: 700; cursor: pointer; text-transform: uppercase; }
.shuttr-tab-btn.active { background: #0000d1; color: #ffffff; border-color: #0000d1; }
.shuttr-tab-fav-btn { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.shuttr-tab-fav-btn.active { background: #dc2626; color: #ffffff; }

.shuttr-tab-panel { display: none; }
.shuttr-tab-panel.active { display: block; }
.shuttr-fs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.shuttr-fs-card { border-radius: 8px; overflow: hidden; background: #0f172a; aspect-ratio: 1; position: relative; cursor: pointer; }
.shuttr-fs-media-box { width: 100%; height: 100%; }
.shuttr-fs-media-box img, .shuttr-fs-media-box video { width: 100%; height: 100%; object-fit: cover; }

/* LIGHTBOX */
.shuttr-fullscreen-lightbox { position: fixed; inset: 0; background: #0d0d11; z-index: 99999999; display: none; flex-direction: column; justify-content: space-between; touch-action: pan-y pinch-zoom; }
.shuttr-fullscreen-lightbox.shuttr-fl-open { display: flex !important; }
.shuttr-fl-topbar { position: absolute; top: 0; left: 0; right: 0; height: 60px; display: flex; justify-content: space-between; align-items: center; padding: 0 24px; z-index: 1000; background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%); }
.shuttr-fl-btn { background: transparent; border: none; color: #ffffff; font-size: 22px; cursor: pointer; padding: 8px; }
.shuttr-fl-btn.active { color: #ef4444 !important; }
.shuttr-fl-stage { position: relative; flex: 1; width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; }
.shuttr-fl-media-wrapper { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 60px 40px; box-sizing: border-box; }
.shuttr-fl-media-wrapper img, .shuttr-fl-media-wrapper video { max-width: 100%; max-height: 100%; object-fit: contain; }
.shuttr-fl-nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: #ffffff; font-size: 42px; cursor: pointer; padding: 20px; }
.shuttr-fl-prev { left: 16px; } .shuttr-fl-next { right: 16px; }
.shuttr-fl-bottombar { position: absolute; bottom: 0; left: 0; right: 0; height: 48px; display: flex; justify-content: center; align-items: center; color: #94a3b8; font-size: 13px; font-family: monospace; }
.shuttr-fl-popover { position: absolute; top: 70px; right: 24px; width: 320px; background: #ffffff; border-radius: 12px; z-index: 2000; display: none; overflow: hidden; padding: 16px; }
.shuttr-fl-popover textarea { width: 100%; border: 1px solid #cbd5e1; border-radius: 8px; padding: 10px; font-size: 13px; margin-bottom: 10px; }
.shuttr-btn-fl-save { width: 100%; background: #0000d1; color: #fff; border: none; padding: 10px; border-radius: 6px; font-weight: 700; cursor: pointer; }