/* Shuttr Progress Tracker CSS v1.7.0 */

html {
    scroll-behavior: smooth;
}

body.shuttr-standalone-page {
    background-color: var(--shuttr-bg-color, #ffffff) !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;
    -moz-osx-font-smoothing: grayscale;
}

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-page-outer-wrapper.shuttr-full-screen-outer {
    padding: 0 !important;
    min-height: 100vh !important;
    width: 100vw !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 !important;
}

/* PRE-LOADER OVERLAY */
.shuttr-splash-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #0f172a !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.shuttr-splash-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
}

.shuttr-loader-dial {
    width: 90px !important;
    height: 90px !important;
}

.shuttr-loader-svg {
    width: 100% !important;
    height: 100% !important;
    transform: rotate(-90deg);
}

.shuttr-loader-bg {
    fill: none;
    stroke: #334155;
    stroke-width: 6;
}

.shuttr-loader-spinner {
    fill: none;
    stroke: #FFDF00;
    stroke-width: 6;
    stroke-dasharray: 264;
    stroke-dashoffset: 200;
    animation: shuttrLoopArc 1.5s ease-in-out infinite alternate;
}

@keyframes shuttrLoopArc {
    0% { stroke-dashoffset: 264; stroke: #1200B8; }
    100% { stroke-dashoffset: 40; stroke: #FFDF00; }
}

.shuttr-splash-welcome {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
}

/* TRACKER CONTAINER */
.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: 0 !important;
    border: none !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.shuttr-bg-pattern-overlay { display: none !important; }
.shuttr-dominos-tracker-container > * { position: relative; z-index: 2; }

.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: 0 !important; text-decoration: none;
    transition: all 0.2s ease;
}

.shuttr-btn-return-home:hover { opacity: 0.9 !important; background-color: #0b0080 !important; }

.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: none !important; border-radius: 0 !important; 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"] {
    width: 100%; background: #f8fafc !important; border: none !important;
    border-radius: 0 !important; padding: 12px 14px !important; color: #0f172a !important;
    font-size: 14px !important; font-weight: 500 !important; box-sizing: border-box !important; transition: all 0.2s ease !important;
}

.shuttr-input-group input[type="email"]:focus,
.shuttr-input-group input[type="text"]:focus {
    background: #ffffff !important; outline: none !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-checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--shuttr-brand-color, #1200B8); 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: 0 !important;
    text-transform: uppercase !important; letter-spacing: 0.5px !important; cursor: pointer !important; transition: all 0.2s ease !important;
}

.shuttr-btn-login:hover, .shuttr-btn-download:hover { opacity: 0.9 !important; background-color: #0b0080 !important; color: #ffffff !important; }

.shuttr-login-error {
    background: #fef2f2; border: none !important; color: #dc2626; padding: 10px 14px; border-radius: 0 !important; font-size: 13px; font-weight: 600; margin-bottom: 16px;
}

.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; }
.shuttr-tracker-footer a:hover { text-decoration: underline !important; }

/* 3D DIAL (GROW & THINK 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:hover { transform: translate(-50%, -50%) scale(0.95) !important; }
.shuttr-central-core.shuttr-proof-ready-core { border-color: var(--shuttr-accent-color, #FFDF00) !important; }

.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; display: block !important;
}

.shuttr-core-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 3; text-align: center; width: 100%; height: 100%; padding: 10px; box-sizing: border-box; }

/* 3D GLOSS / SPHERICAL HIGHLIGHT OVERLAY */
.shuttr-central-core::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.02) 40%, transparent 50%);
    pointer-events: none;
    border-radius: 50%;
    z-index: 4;
}

/* RESTORED ORIGINAL HORIZONTAL FACE LAYOUT WITH EYEBROWS */
.shuttr-dominos-face-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
    animation: shuttrFaceThink 4s ease-in-out infinite;
}

.shuttr-face-eyebrows {
    display: flex;
    gap: 20px;
    margin-bottom: 2px;
    animation: shuttrEyesThink 6s ease-in-out infinite;
}

.shuttr-eyebrow {
    width: 14px;
    height: 3px;
    background: var(--shuttr-accent-color, #FFDF00);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(255, 223, 0, 0.5);
    transform: rotate(-10deg);
}

.shuttr-eyebrow:nth-child(2) {
    transform: rotate(10deg);
}

.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 shuttrEyebrowsMove {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    18%, 32% { transform: translateY(-3px) rotate(-4deg); }
    40%, 50% { transform: translateY(0) rotate(0deg); }
    60%, 75% { transform: translateY(-2px) rotate(4deg); }
    82%, 92% { transform: translateY(2px) rotate(0deg); }
}

@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); }
    82%, 92% { transform: translate(0, 2px); }
}

@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% { transform: scaleY(0.1); }
    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; border-radius: 0 0 30px 30px; }
    22%, 75% { width: 22px; border-radius: 0 0 16px 16px; }
}

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

.shuttr-banter-card { display: flex; align-items: center; justify-content: center; text-align: center; background: transparent !important; border: none !important; box-shadow: none !important; padding: 8px 12px !important; margin-bottom: 16px !important; width: 100% !important; box-sizing: border-box !important; }
.shuttr-banter-text { font-size: 13px !important; font-weight: 500 !important; color: #475569 !important; line-height: 1.4 !important; max-width: 440px !important; margin: 0 auto !important; }

.shuttr-editor-note-box { background: #f8fafc !important; border: none !important; border-radius: 0 !important; padding: 14px 18px !important; margin-bottom: 18px !important; text-align: center !important; }
.shuttr-editor-note-box p { color: #334155 !important; font-size: 13px !important; font-weight: 500 !important; line-height: 1.4 !important; margin: 0 !important; }

.shuttr-btn-back-tracker { background: #ffffff !important; border: none !important; color: #334155 !important; font-size: 12px !important; font-weight: 600 !important; padding: 6px 16px !important; border-radius: 0 !important; text-decoration: none !important; white-space: nowrap !important; transition: all 0.2s ease !important; }
.shuttr-btn-back-tracker:hover { background: #f1f5f9 !important; color: #0f172a !important; }

/* PROOFING GALLERY COVER */
.shuttr-proofing-custom-header-bg {
    position: relative !important;
    width: 100% !important;
    height: var(--shuttr-proofing-cover-height, 260px) !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.shuttr-header-bg-overlay { position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; background: rgba(15, 23, 42, 0.4) !important; pointer-events: none !important; }

.shuttr-proofing-gallery-container { 
    width: 100% !important; 
    max-width: 100% !important; 
    margin: 0 !important; 
    background: #ffffff !important; 
    color: #0f172a !important; 
    border-radius: 0 !important; 
    border: none !important; 
    box-shadow: none !important; 
    min-height: 100vh !important;
    position: relative !important; 
    z-index: 2 !important; 
    pointer-events: auto !important;
}

.shuttr-fs-header { display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 14px 24px !important; background: #ffffff !important; border-bottom: 1px solid #e2e8f0 !important; gap: 10px !important; position: relative !important; z-index: 10 !important; pointer-events: auto !important; }
.shuttr-fs-brand { display: flex !important; align-items: center !important; gap: 10px !important; flex-shrink: 0 !important; }
.shuttr-fs-brand img { max-height: 30px !important; width: auto !important; }
.shuttr-desktop-brand-title { font-size: 14px !important; font-weight: 700 !important; color: #0f172a !important; white-space: nowrap !important; }

.shuttr-fs-actions { display: flex !important; align-items: center !important; gap: 8px !important; flex-wrap: nowrap !important; pointer-events: auto !important; }
.shuttr-gallery-fav-badge { background: #fef08a !important; border: none !important; color: #854d0e !important; font-size: 12px !important; font-weight: 600 !important; padding: 6px 14px !important; border-radius: 0 !important; text-decoration: none !important; white-space: nowrap !important; cursor: pointer !important; pointer-events: auto !important; }
.shuttr-gallery-fav-badge:hover { background: #fde047 !important; }
.shuttr-btn-fs-download { background: var(--shuttr-brand-color, #1200B8) !important; color: #ffffff !important; font-size: 12px !important; font-weight: 600 !important; padding: 6px 16px !important; border-radius: 0 !important; text-decoration: none !important; white-space: nowrap !important; pointer-events: auto !important; }
.shuttr-btn-fs-download:hover { background: #0b0080 !important; color: #ffffff !important; }

.shuttr-fs-body { padding: 32px 32px 64px 32px !important; position: relative !important; z-index: 5 !important; pointer-events: auto !important; }
.shuttr-fs-hero { text-align: center !important; margin-bottom: 24px !important; }
.shuttr-fs-hero h1 { font-size: 28px !important; font-weight: 800 !important; margin: 0 0 6px 0 !important; color: #0f172a !important; }
.shuttr-fs-hero p { font-size: 14px !important; color: #64748b !important; margin: 0 !important; }

/* FEATURED VIDEO */
.shuttr-featured-video-wrapper {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto 28px auto !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #000000 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.shuttr-featured-video-responsive {
    position: relative !important;
    padding-bottom: 56.25% !important;
    height: 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
}

.shuttr-featured-video-responsive iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

.shuttr-featured-video-player {
    width: 100% !important;
    max-height: 520px !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

/* 2. STICKY FROSTY WHITE BACKGROUND CATEGORIES BAR */
.shuttr-proofing-tabs-wrapper {
    position: sticky !important;
    top: 0 !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 100 !important;
    padding: 12px 0 !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.shuttr-proofing-tabs-nav { 
    display: flex !important; 
    gap: 8px !important; 
    justify-content: center !important; 
    flex-wrap: wrap !important; 
    pointer-events: auto !important; 
    margin: 0 !important;
}

.shuttr-tab-btn { 
    background: #f8fafc !important; 
    border: none !important; 
    color: #64748b !important; 
    padding: 7px 16px !important; 
    border-radius: 0 !important; 
    font-size: 12px !important; 
    font-weight: 600 !important; 
    cursor: pointer !important; 
    transition: all 0.2s ease !important; 
    text-transform: uppercase !important; 
    letter-spacing: 0.5px !important; 
    pointer-events: auto !important; 
}

.shuttr-tab-btn:hover { background: #e2e8f0 !important; color: #0f172a !important; }
.shuttr-tab-btn.active { background: var(--shuttr-brand-color, #1200B8) !important; color: #ffffff !important; border-color: transparent !important; }
.shuttr-tab-fav-btn { background: #fef2f2 !important; color: #dc2626 !important; }
.shuttr-tab-fav-btn:hover { background: #fee2e2 !important; }
.shuttr-tab-fav-btn.active { background: #dc2626 !important; color: #ffffff !important; }

.shuttr-tab-panel { display: none; text-align: left; }
.shuttr-tab-panel.active { display: block !important; pointer-events: auto !important; }

/* 1. MASONRY GALLERY GRID RESTORED */
.shuttr-fs-grid { 
    column-count: 5 !important; 
    column-gap: 16px !important; 
    width: 100% !important;
    pointer-events: auto !important; 
}

@media (max-width: 1400px) {
    .shuttr-fs-grid { column-count: 4 !important; }
}

@media (max-width: 1024px) {
    .shuttr-fs-grid { column-count: 3 !important; }
}

@media (max-width: 768px) {
    .shuttr-fs-grid { 
        column-count: 2 !important; 
        column-gap: 10px !important; 
    }
    .shuttr-desktop-brand-title { display: none !important; }
    .shuttr-fs-header { padding: 10px 12px !important; }
    .shuttr-fs-body { padding: 16px 12px 40px 12px !important; }
    
    .shuttr-proofing-tabs-wrapper {
        padding: 6px 0 !important;
        margin-bottom: 16px !important;
    }
    .shuttr-tab-btn {
        padding: 4px 10px !important;
        font-size: 10px !important;
        letter-spacing: 0.3px !important;
    }
}

.shuttr-fs-card { 
    background: #ffffff !important; 
    border: none !important; 
    border-radius: 0 !important; 
    overflow: hidden !important; 
    cursor: pointer !important; 
    break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
    page-break-inside: avoid !important;
    margin-bottom: 16px !important;
    display: inline-block !important;
    width: 100% !important;
    position: relative !important; 
    pointer-events: auto !important;
}

.shuttr-fs-card.is-favorited { box-shadow: 0 0 0 2px #FFDF00 !important; }

.shuttr-fs-media-box { 
    position: relative !important; 
    width: 100% !important; 
    height: auto !important; 
    background: #f1f5f9 !important; 
    overflow: hidden !important; 
    pointer-events: auto !important; 
    line-height: 0 !important;
}

.shuttr-fs-media-box img, 
.shuttr-fs-media-box video { 
    width: 100% !important; 
    height: auto !important; 
    display: block !important;
    object-fit: cover !important;
    pointer-events: auto !important; 
}

/* STABLE HOVER (NO FLASHING) */
.shuttr-fs-card:hover img {
    transform: none !important;
}

/* HOVER-ONLY HEART FAVORITE BUTTON */
.shuttr-btn-fav-toggle { 
    position: absolute !important; 
    top: 10px !important; 
    right: 10px !important; 
    background: rgba(255, 255, 255, 0.95) !important; 
    border: none !important; 
    color: #64748b !important; 
    width: 32px !important; 
    height: 32px !important; 
    border-radius: 0 !important; 
    cursor: pointer !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    pointer-events: auto !important; 
    z-index: 10 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.2s ease, visibility 0.2s ease !important; 
}

.shuttr-fs-card:hover .shuttr-btn-fav-toggle {
    opacity: 1 !important;
    visibility: visible !important;
}

.shuttr-btn-fav-toggle.active { 
    background: #dc2626 !important; 
    color: #ffffff !important; 
    opacity: 1 !important;
    visibility: visible !important;
}

.shuttr-btn-fav-toggle:hover {
    background: #b91c1c !important;
    color: #ffffff !important;
}

.shuttr-svg-heart { width: 16px !important; height: 16px !important; display: block !important; }

.shuttr-empty-favs-notice { background: #f8fafc; color: #64748b; border: none !important; border-radius: 0 !important; padding: 20px; text-align: center; font-size: 13px; margin: 20px 0; }

/* TUTORIAL MODAL */
.shuttr-modal-overlay { 
    position: fixed !important; 
    top: 0 !important; 
    left: 0 !important; 
    width: 100vw !important; 
    height: 100vh !important; 
    background: rgba(15, 23, 42, 0.7) !important; 
    backdrop-filter: blur(4px) !important; 
    z-index: 99999 !important; 
    display: flex; 
    align-items: center !important; 
    justify-content: center !important; 
    padding: 16px !important; 
    box-sizing: border-box !important; 
}

.shuttr-modal-overlay.shuttr-modal-closed {
    display: none !important;
}

.shuttr-modal-card { 
    position: relative !important; 
    background: #ffffff !important; 
    color: #0f172a !important; 
    border: 1px solid #e2e8f0 !important; 
    border-radius: 16px !important; 
    max-width: 400px !important; 
    width: 100% !important; 
    display: flex !important; 
    flex-direction: column !important; 
    overflow: hidden !important; 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important; 
    box-sizing: border-box !important; 
    margin: 0 auto !important; 
    pointer-events: auto !important; 
}

.shuttr-btn-modal-skip { 
    position: absolute !important; 
    top: 12px !important; 
    right: 12px !important; 
    z-index: 100001 !important; 
    background: #f1f5f9 !important; 
    color: #475569 !important; 
    border: 1px solid #cbd5e1 !important; 
    font-size: 11px !important; 
    font-weight: 600 !important; 
    padding: 4px 12px !important; 
    border-radius: 16px !important; 
    cursor: pointer !important; 
    pointer-events: auto !important; 
}

.shuttr-btn-modal-skip:hover { background: #e2e8f0 !important; }

.shuttr-modal-cover-wrapper { 
    width: 100% !important; 
    max-height: 160px !important; 
    background: #f8fafc !important; 
    position: relative !important; 
    overflow: hidden !important; 
    flex-shrink: 0 !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    pointer-events: none !important; 
    border-bottom: 1px solid #e2e8f0 !important; 
}

.shuttr-modal-cover-img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.shuttr-modal-default-banner { display: flex !important; align-items: center !important; justify-content: center !important; width: 100% !important; height: 100% !important; padding: 16px !important; box-sizing: border-box !important; }
.shuttr-banner-logo { max-height: 40px !important; width: auto !important; }
.shuttr-modal-body-content { padding: 20px !important; flex: 1 !important; display: flex !important; flex-direction: column !important; justify-content: space-between !important; text-align: center !important; z-index: 100000 !important; }
.shuttr-tour-step { display: none !important; padding: 12px !important; border-radius: 10px !important; }
.shuttr-tour-step.active { display: flex !important; flex-direction: column !important; justify-content: space-between !important; }
.shuttr-tour-step.step-1 { background: #eff6ff !important; }
.shuttr-tour-step.step-2 { background: #fefce8 !important; }
.shuttr-tour-step.step-3 { background: #f0fdf4 !important; }
.shuttr-tour-badge { display: inline-block !important; background: #ffffff !important; color: #2563eb !important; font-size: 11px !important; font-weight: 700 !important; padding: 3px 10px !important; border-radius: 12px !important; margin-bottom: 8px !important; text-transform: uppercase !important; align-self: center !important; }
.shuttr-tour-step h2 { font-size: 18px !important; font-weight: 700 !important; margin: 0 0 6px 0 !important; color: #0f172a !important; }
.shuttr-tour-step p { font-size: 13px !important; color: #475569 !important; line-height: 1.5 !important; margin: 0 !important; font-weight: 400 !important; }
.shuttr-modal-actions { margin-top: 16px !important; position: relative !important; z-index: 100001 !important; }
.shuttr-btn-tour-next, .shuttr-btn-tour-finish { width: 100% !important; background: var(--shuttr-brand-color, #1200B8) !important; color: #ffffff !important; border: none !important; font-weight: 600 !important; font-size: 13px !important; padding: 10px 20px !important; border-radius: 8px !important; cursor: pointer !important; transition: all 0.2s ease !important; pointer-events: auto !important; position: relative !important; z-index: 100002 !important; }
.shuttr-btn-tour-next:hover, .shuttr-btn-tour-finish:hover { opacity: 0.9 !important; background-color: #0b0080 !important; }

/* 3. ALL BUTTONS DARKER MOUSE OVER COLOUR */
button:hover, 
.shuttr-topbar-action-btn:hover,
.shuttr-fl-btn:hover,
.shuttr-btn-fl-save:hover,
.shuttr-btn-tour-next:hover,
.shuttr-btn-tour-finish:hover {
    filter: brightness(0.85);
}

.shuttr-btn-back-tracker:hover {
    background: #e2e8f0 !important;
}

/* FULLSCREEN LIGHTBOX */
.shuttr-fullscreen-lightbox { 
    position: fixed !important; 
    top: 0 !important; 
    left: 0 !important; 
    right: 0 !important; 
    bottom: 0 !important; 
    width: 100vw !important; 
    height: 100vh !important; 
    background: #0d0d11 !important; 
    z-index: 99999999 !important; 
    display: none; 
    flex-direction: column !important; 
    justify-content: space-between !important; 
    box-sizing: border-box !important; 
    touch-action: pan-y pinch-zoom;
}

.shuttr-fullscreen-lightbox.shuttr-fl-open {
    display: flex !important;
}

.shuttr-fl-topbar { 
    position: absolute !important; 
    top: 0 !important; 
    left: 0 !important; 
    right: 0 !important; 
    height: 60px !important; 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    padding: 0 24px !important; 
    z-index: 1000 !important; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%) !important; 
}

.shuttr-fl-btn { 
    background: transparent !important; 
    border: none !important; 
    color: #ffffff !important; 
    font-size: 22px !important; 
    cursor: pointer !important; 
    padding: 8px !important; 
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    opacity: 0.85 !important; 
    transition: opacity 0.2s ease, transform 0.2s ease !important; 
    text-decoration: none !important; 
}

.shuttr-fl-btn:hover { opacity: 1 !important; transform: scale(1.1) !important; }
.shuttr-fl-btn.active { color: #ef4444 !important; opacity: 1 !important; }
.shuttr-fl-btn.active path { fill: #ef4444 !important; stroke: #ef4444 !important; }
.shuttr-fl-topbar-actions { display: flex !important; align-items: center !important; gap: 16px !important; }
.shuttr-icon { width: 22px !important; height: 22px !important; display: inline-block !important; }

.shuttr-fl-stage { 
    position: relative !important; 
    flex: 1 !important; 
    width: 100vw !important; 
    height: 100vh !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    overflow: hidden !important; 
}

.shuttr-fl-media-wrapper { 
    width: 100% !important; 
    height: 100% !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    padding: 60px 40px !important; 
    box-sizing: border-box !important; 
    touch-action: pan-y pinch-zoom; 
}

.shuttr-fl-media-wrapper img, .shuttr-fl-media-wrapper video { 
    max-width: 100% !important; 
    max-height: 100% !important; 
    width: auto !important; 
    height: auto !important; 
    object-fit: contain !important; 
    user-select: none !important; 
}

.shuttr-fl-nav-arrow { 
    position: absolute !important; 
    top: 50% !important; 
    transform: translateY(-50%) !important; 
    background: transparent !important; 
    border: none !important; 
    color: #ffffff !important; 
    font-size: 42px !important; 
    font-weight: 300 !important; 
    cursor: pointer !important; 
    z-index: 500 !important; 
    padding: 20px !important;; 
    opacity: 0.6 !important; 
    transition: opacity 0.2s ease, transform 0.2s ease !important; 
}

.shuttr-fl-nav-arrow:hover { opacity: 1 !important; transform: translateY(-50%) scale(1.1) !important; }
.shuttr-fl-prev { left: 16px !important; }
.shuttr-fl-next { right: 16px !important; }

.shuttr-fl-bottombar { 
    position: absolute !important; 
    bottom: 0 !important; 
    left: 0 !important; 
    right: 0 !important; 
    height: 48px !important; 
    display: flex !important; 
    justify-content: center !important; 
    align-items: center !important; 
    z-index: 1000 !important; 
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%) !important; 
}

#shuttr-fl-filename-txt { color: #94a3b8 !important; font-size: 13px !important; font-weight: 500 !important; letter-spacing: 0.5px !important; }

.shuttr-fl-popover { 
    position: absolute !important; 
    top: 70px !important; 
    right: 24px !important; 
    width: 320px !important; 
    background: #ffffff !important; 
    border-radius: 0 !important; 
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5) !important; 
    z-index: 2000 !important; 
    display: none; 
    overflow: hidden !important; 
}

.shuttr-fl-popover-header { padding: 12px 16px !important; background: #f8fafc !important; border-bottom: 1px solid #e2e8f0 !important; display: flex !important; justify-content: space-between !important; align-items: center !important; font-weight: 700 !important; font-size: 13px !important; color: #0f172a !important; }
.shuttr-fl-popover-header button { background: transparent !important; border: none !important; cursor: pointer !important; font-size: 14px !important; color: #64748b !important; }
.shuttr-fl-popover-body { padding: 16px !important; }
.shuttr-fl-popover-body textarea { width: 100% !important; border: none !important; border-radius: 0 !important; padding: 10px !important; font-size: 13px !important; box-sizing: border-box !important; resize: vertical !important; margin-bottom: 12px !important; color: #0f172a !important; }
.shuttr-btn-fl-save { width: 100% !important; background: #2563eb !important; color: #ffffff !important; border: none !important; padding: 10px !important; border-radius: 0 !important; font-weight: 600 !important; font-size: 13px !important; cursor: pointer !important; }
.shuttr-btn-fl-save:hover { background: #1d4ed8 !important; }
#shuttr-fl-comment-status { display: block !important; margin-top: 8px !important; font-size: 12px !important; color: #16a34a !important; font-weight: 600 !important; text-align: center !important; }