body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
    color: white;
    overflow-y: auto;
    justify-content: space-between;
}
.container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 6px 9px 4px;
    text-align: center;
    box-sizing: border-box;
    min-height: 100vh;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.logo {
    margin: 0 auto 6px;
    text-align: center;
    padding-top: 8px;
}
.logo-evolum {
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff, #dcdcdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}
.logo-img {
    width: 230px;
    max-width: 90%;
    display: block;
    margin: 0 auto 4px;
}
.logo-divider {
    font-size: 22px;
    color: #52a8ff;
    margin: 0 8px;
    vertical-align: 2px;
}
.logo-sub {
    font-size: 16px;
    font-weight: 700;
    color: #cfcfcf;
    letter-spacing: 0.2px;
}
.logo-line {
    width: 220px;
    height: 2px;
    margin: 4px auto 6px;
    background: linear-gradient(90deg, transparent, #ff7a00, transparent);
    opacity: 0.9;
}
.tagline {
    margin-top: -8px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
    opacity: 0.85;
}
@keyframes btn-pulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.55; }
    100% { opacity: 1; }
}
.primary-button {
    padding: 12px 20px;
    background: #ff7a00;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s;
}
.primary-button.analyzing {
    background: #b35600;
    cursor: not-allowed;
    animation: btn-pulse 1.2s ease-in-out infinite;
}
.secondary-button {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255, 122, 0, 1);
    border-radius: 10px;
    color: #cfcfcf;
    font-weight: 600;
    cursor: pointer;
}
.secondary-button:hover {
    border-color: #ff7a00;
    color: white;
}
.button-row {
    max-width: 520px;
    width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.shell {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    flex: 1;
}
.card {
    background: #151515;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.2s;
}
.card:hover {
    border-color: #ff7a00;
}
.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-top: 0;
}
.section-subtitle {
    color: #cfcfcf;
    margin-bottom: 10px;
    font-size: 14px;
}
.choice-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.choice {
    background: #1a1a1a;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}
.choice:hover {
    border-color: #ff7a00;
}
.choice.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255,255,255,0.08);
}
.choice.disabled:hover {
    border-color: rgba(255,255,255,0.08);
}
.choice-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    text-align: center;
}
.choice-copy {
    color: #d0d0d0;
    font-size: 11px;
    line-height: 1.4;
}
.workspace-panel {
    display: none;
    margin-top: 4px;
    text-align: left;
    background: #111111;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    max-height: 280px;
    overflow-y: auto;
    flex: 1;
}
#uploadState {
    max-height: 440px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}
.workspace-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px 0;
}
.workspace-copy {
    color: #cfcfcf;
    line-height: 1.35;
    margin-bottom: 8px;
    font-size: 13px;
}
.box {
    background: #0f0f0f;
    padding: 6px 8px;
    border-radius: 10px;
    margin: 12px auto;
    width: 520px;
    border: 1px solid rgba(255,255,255,0.15);
}
.label {
    display: block;
    font-size: 10px;
    color: #e6b800;
    line-height: 1.1;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.5;
}
.value {
    font-size: 13px;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
}
.modal.show {
    display: flex;
}
.modal-content {
    background: #141414;
    padding: 18px;
    border-radius: 14px;
    width: 90%;
    max-width: 430px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}
.modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
}
input[type="file"], input[type="email"], input[type="password"], input[type="text"], textarea {
    width: 100%;
    margin: 8px auto;
    max-width: 520px;
    margin-top: 6px;
    margin-bottom: 10px;
    padding: 10px;
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
    display: block;
}
textarea {
    resize: vertical;
    min-height: 84px;
}
.login-switch {
    margin-top: 10px;
    color: #aaa;
    cursor: pointer;
    font-size: 13px;
}
.upload-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}
.upload-actions .primary-button {
    width: 100%;
    margin-bottom: 0;
    padding: 10px 16px;
}
.upload-note {
    margin-top: 6px;
    color: #9f9f9f;
    font-size: 11px;
}
.field-group {
    text-align: left;
    max-width: 520px;
    margin: 0 auto 12px;
}
.field-help {
    color: #aaa;
    font-size: 11px;
    margin-top: -4px;
    margin-bottom: 8px;
}
input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.35);
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: rgba(255,255,255,0.35);
}
.footer-powered {
    margin-top: auto;
    font-size: 11px;
    color: #8f8f8f;
    text-align: center;
    padding-top: 3px;
    opacity: 10.0;
}
.info-copy {
    color: #cfcfcf;
    line-height: 1.5;
    margin: 12px 0 16px;
    text-align: center;
}
.build-meta {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
}
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    margin-top: 10px;
    overflow: hidden;
    justify-content: space-between;
}
.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    border-radius: 999px;
    transition: width 0.45s ease;
}
.build-status-line {
    color: #52a8ff;
    font-weight: 700;
}
.build-stage-line {
    color: #cfcfcf;
}
.bottom-build-meta {
    margin-top: 10px;
    padding: 10px 12px;
    background: #0a0a0a;
    border: 1px solid rgba(82,168,255,0.18);
    border-radius: 12px;
}
.build-two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
    align-items: start;
    margin-top: 0;
}
.build-quote-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,122,0,0.22);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 228px;
    text-align: center;
}
.quote-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff7a00;
    margin-bottom: 16px;
    opacity: 0.85;
}
.quote-text {
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    color: #e8e8e8;
    line-height: 1.5;
    margin-bottom: 14px;
    transition: opacity 0.6s ease;
}
.quote-attribution {
    font-size: 14px;
    color: #7a7a7a;
    letter-spacing: 0.3px;
    transition: opacity 0.6s ease;
}
.terminal-log {
    background: #0a0a0a;
    border: 1px solid rgba(82,168,255,0.18);
    border-radius: 12px;
    padding: 10px;
    min-height: 170px;
    max-height: 180px;
    overflow-y: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    line-height: 1.45;
    color: #cfe7ff;
    white-space: pre-wrap;
    word-break: break-word;
}
.complete-panel {
    max-height: 70vh;
    overflow: hidden;
    display: none;
    background: #0a0a0a;
    border: 1px solid rgba(82,168,255,0.18);
    border-radius: 12px;
    padding: 16px 16px;
    text-align: center;
}
body.active-build.complete-mode .workspace-title {
    display: none;
}
.complete-title {
    font-size: 28px;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}
.complete-copy {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 12px;
}
.complete-actions {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-top: 6px;
}
.complete-actions .primary-button,
.complete-actions .secondary-button {
    min-width: 120px;
    padding: 12px 14px;
    font-size: 13px;
    margin-bottom: 0;
    flex: 1;
}
.deck-preview-strip {
    max-height: 260px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 2px 14px;
    margin: 10px 0 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #ff7a00;
}
    
.deck-preview-strip::-webkit-scrollbar {
    height: 12px;
}

.deck-preview-strip::-webkit-scrollbar-track {
    background: #111111;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
}

.deck-preview-strip::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    border-radius: 999px;
    border: 2px solid #111111;
}

.deck-preview-strip::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff8c1a, #ffc266);
}

.deck-preview-card {
    min-width: 170px;
    max-width: 170px;
    background: #101010;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 8px;
    scroll-snap-align: start;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, transform 0.12s;
}
.deck-preview-card:hover {
    border-color: rgba(255,122,0,0.55);
    transform: translateY(-2px);
}
.deck-preview-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.deck-preview-card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}
.deck-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 7px 7px;
    background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, transparent 100%);
    pointer-events: none;
}
.deck-preview-overlay-title {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.deck-preview-card-title {
    color: #cfcfcf;
    font-size: 11px;
    margin-top: 7px;
    line-height: 1.35;
}
.deck-preview-num {
    display: inline-block;
    color: #555;
    margin-right: 4px;
    font-variant-numeric: tabular-nums;
}
.deck-preview-snippet {
    color: #666;
    font-size: 10px;
    margin-top: 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.deck-preview-text-slide {
    width: 100%;
    height: 225px;
    border-radius: 8px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.09);
    padding: 14px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    box-sizing: border-box;
}
.deck-preview-text-title {
    font-size: 13px;
    font-weight: 700;
    color: #e2e2e2;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.deck-preview-text-body {
    font-size: 10px;
    color: #777;
    line-height: 1.55;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
}
.deck-preview-delete {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.12);
    color: #888;
    font-size: 15px;
    line-height: 1;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s, color 0.15s, border-color 0.15s;
    z-index: 3;
    font-family: inherit;
    padding: 0;
}
.deck-preview-card:hover .deck-preview-delete { opacity: 1; }
.deck-preview-delete:hover { color: #e05555; border-color: rgba(224,85,85,0.5); }
.deck-preview-card.drag-over {
    border-color: rgba(255,122,0,0.85);
    background: rgba(255,122,0,0.07);
    transform: translateY(-2px);
}
.deck-preview-card.dragging { opacity: 0.45; cursor: grabbing; }
.terminal-prompt { color: #52a8ff; }
.terminal-accent { color: #ffb25c; }
.terminal-success { color: #8be28b; }


/* PASS 1 — Deck Complete workspace only */
body.active-build.complete-mode .container {
    width: min(1280px, calc(100vw - 40px));
    max-width: 1280px;
    padding: 10px 20px 8px;
}
body.active-build.complete-mode .shell {
    max-width: 1240px;
    width: 100%;
}
body.active-build.complete-mode .card {
    padding: 16px 18px 14px;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}
body.active-build.complete-mode #analyzerPanel {
    max-height: none;
    overflow: hidden;
}
body.active-build.complete-mode .build-two-col {
    display: none;
}
body.active-build.complete-mode .complete-panel {
    flex: 1;
    max-height: none;
    min-height: 620px;
    padding: 20px 22px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
body.active-build.complete-mode .complete-title {
    font-size: 40px;
    margin-bottom: 10px;
}
body.active-build.complete-mode .complete-copy {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 12px;
}
body.active-build.complete-mode .deck-preview-strip {
    flex: 1;
    max-height: none;
    min-height: 0;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 4px 12px;
    margin: 8px 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
}
body.active-build.complete-mode .deck-preview-card {
    min-width: 150px;
    max-width: 150px;
    padding: 8px;
}
body.active-build.complete-mode .deck-preview-card img {
    height: 190px;
}
body.active-build.complete-mode .deck-preview-card-title {
    font-size: 12px;
    margin-top: 6px;
}
body.active-build.complete-mode .complete-actions {
    margin-top: 10px;
    gap: 12px;
}
body.active-build.complete-mode .complete-actions .primary-button,
body.active-build.complete-mode .complete-actions .secondary-button {
    min-width: 190px;
    padding: 13px 22px;
    font-size: 15px;
}


/* PASS 2 — Vertical compression for deck-complete + refine workspace */
body.active-build.complete-mode .container {
    width: min(1320px, calc(100vw - 28px));
    max-width: 1320px;
    padding: 6px 14px 4px;
}
body.active-build.complete-mode .shell {
    max-width: 1280px;
}
body.active-build.complete-mode .card {
    padding: 10px 12px 8px;
    min-height: 0;
}
body.active-build.complete-mode #analyzerPanel {
    padding: 8px;
    margin-top: 2px;
}
body.active-build.complete-mode .complete-panel {
    min-height: 0;
    padding: 10px 12px 8px;
}
body.active-build.complete-mode .complete-title {
    font-size: 28px;
    margin-bottom: 4px;
    line-height: 1.05;
}
body.active-build.complete-mode .complete-copy {
    font-size: 12px;
    line-height: 1.3;
    max-width: 860px;
    margin: 0 auto 6px;
}
body.active-build.complete-mode .deck-preview-strip {
    gap: 10px;
    padding: 4px 2px 6px;
    margin: 4px 0 4px;
}
body.active-build.complete-mode .deck-preview-card {
    min-width: 118px;
    max-width: 118px;
    padding: 6px;
}
body.active-build.complete-mode .deck-preview-card img {
    height: 138px;
}
body.active-build.complete-mode .deck-preview-card-title {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 4px;
}
body.active-build.complete-mode .complete-actions {
    margin-top: 4px;
    gap: 8px;
}
body.active-build.complete-mode .complete-actions .primary-button,
body.active-build.complete-mode .complete-actions .secondary-button {
    min-width: 150px;
    padding: 8px 14px;
    font-size: 12px;
}
body.active-build.complete-mode .footer-powered {
    font-size: 10px;
    padding-top: 4px;
    margin-top: 4px;
}

body.active-build.complete-mode #refinementStage .workspace-title {
    font-size: 16px !important;
    margin-bottom: 2px !important;
}
body.active-build.complete-mode #refinementStage .workspace-copy {
    margin-bottom: 2px !important;
}
body.active-build.complete-mode #refinementStage .refine-meta {
    margin-bottom: 6px;
}
body.active-build.complete-mode #refinementStage .meta-chip {
    padding: 6px 10px;
    font-size: 11px;
}
body.active-build.complete-mode #refinementStage .refine-layout {
    max-height: none;
    gap: 10px;
    grid-template-columns: 0.96fr 1.04fr;
}
body.active-build.complete-mode #refinementStage .preview-panel {
    max-height: none;
    overflow: hidden;
    padding: 8px;
}
body.active-build.complete-mode #refinementStage .edit-panel {
    max-height: calc(100vh - 190px);
    overflow-y: auto;
    padding: 8px;
}
body.active-build.complete-mode #refinementStage .panel-title {
    font-size: 14px;
    margin-bottom: 4px;
}
body.active-build.complete-mode #refinementStage .slide-preview-wrap {
    padding: 6px;
}
body.active-build.complete-mode #refinementStage .slide-preview-img {
    height: 156px;
}
body.active-build.complete-mode #refinementStage .slide-caption {
    font-size: 9px;
    margin-top: 4px;
    line-height: 1.2;
}
body.active-build.complete-mode #refinementStage .slide-list {
    margin-top: 6px;
    gap: 5px;
    max-height: 80px;
    overflow-y: auto;
}
body.active-build.complete-mode #refinementStage .slide-pill {
    padding: 3px 7px;
    font-size: 9px;
}
body.active-build.complete-mode #refinementStage .field-group {
    margin: 0 auto 6px;
}
body.active-build.complete-mode #refinementStage .label {
    font-size: 9px;
    margin-bottom: 2px;
}
body.active-build.complete-mode #refinementStage input[type="text"],
body.active-build.complete-mode #refinementStage textarea {
    margin-top: 3px;
    margin-bottom: 5px;
    padding: 7px;
    font-size: 12px;
}
body.active-build.complete-mode #refinementStage textarea {
    min-height: 72px;
}
body.active-build.complete-mode #refinementStage .field-help {
    font-size: 9px;
    margin-top: -1px;
    margin-bottom: 3px;
    line-height: 1.15;
}
body.active-build.complete-mode #refinementStage .upload-actions {
    gap: 6px;
    margin-top: 4px;
}
body.active-build.complete-mode #refinementStage .upload-actions .primary-button,
body.active-build.complete-mode #refinementStage .upload-actions .secondary-button {
    padding: 7px 10px;
    font-size: 11px;
}

.flow-mode #demoForm,
.flow-mode #createHeader {
    display: none;
}
.flow-mode .card {
    padding-top: 8px;
}
.flow-mode #uploadState {
    margin-top: 0;
}

.active-build {
    overflow: hidden;
    justify-content: space-between;
}
.active-build #demoForm,
.active-build #createHeader,
.active-build #choiceStack,
.active-build .home-card-grid,
.active-build #siteHeadline {
    display: none !important;
}
.flow-mode #siteHeadline,
.flow-mode .home-card-grid {
    display: none !important;
}
.flow-mode .feedback-fab,
.active-build .feedback-fab {
    padding: 10px;
    min-width: 0 !important;
    gap: 0;
}
.flow-mode .feedback-fab-text,
.active-build .feedback-fab-text {
    display: none;
}
.active-build .container {
    padding: 8px 16px 4px;
}
.active-build .logo-line {
    margin: 3px auto 4px;
}
.active-build .tagline {
    font-size: 12px;
    margin: 2px 0 4px;
}
.active-build .card {
    padding: 12px;
}
body.active-build .workspace-panel {
    margin-top: 4px;
    padding: 10px;
}
body.active-build .workspace-title {
    font-size: 18px;
    margin-bottom: 4px;
}
body.active-build .workspace-copy {
    font-size: 12px;
    margin-bottom: 6px;
}
body.active-build .build-meta {
    display: flex;
}
body.active-build .terminal-log {
    min-height: 150px;
    max-height: 160px;
    padding: 8px;
    line-height: 1.35;
}
body.active-build .upload-actions {
    gap: 6px;
    margin-top: 6px;
}
body.active-build .upload-actions .primary-button {
    padding: 8px 14px;
    font-size: 12px;
}
body.active-build.complete-mode #analyzerPanel > .upload-actions {
    display: none;
}
body.active-build.complete-mode #refinementStage .upload-actions {
    display: grid !important;
}

@media (max-width: 1100px) {
    .container {
        width: 100%;
        max-width: 1040px;
    }
    .home-card-grid {
        max-width: 100%;
    }
    .choices-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .home-module-card {
        min-height: auto;
    }
}

/* Short viewport fix — unlocks scrolling on Chromebooks and small screens at 100% zoom */
@media (max-height: 820px) {
    body.active-build {
        overflow-y: auto;
    }
    body.active-build .container {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    body.active-build.complete-mode .container {
        height: auto;
        overflow: visible;
    }
    body.active-build.complete-mode .card {
        min-height: 0;
    }
    body.active-build.complete-mode .complete-panel {
        min-height: 0;
    }
    body.active-build.complete-mode #refinementStage .edit-panel {
        max-height: none;
        overflow-y: visible;
    }
    body.active-build.complete-mode #refinementStage .preview-panel {
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 700px) {
    .choices-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 780px) {
    body { overflow: auto; }
    .container { min-height: auto; width: 100%; }
    .workspace-panel { max-height: none; }
    #uploadState {
        max-height: 70vh;
        overflow-y: auto;
    }
    .logo-evolum { font-size: 26px; }
    .logo-divider { font-size: 18px; margin: 0 6px; }
    .logo-sub { font-size: 14px; }
    .terminal-log { max-height: none; }
    .build-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-intro {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .choice-title {
        font-size: 24px;
    }
    .choice-copy {
        font-size: 15px;
        min-height: 0;
    }
}
#analyzePassModal .modal-content,
#actorPrepCompleteModal .modal-content {
    max-width: 760px;
    width: 92%;
}
#analyzePassModal .modal-content,
#actorPrepCompleteModal .modal-content {
    display: flex;
    flex-direction: column;
}
.modal-complete-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ff9944;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}
.modal-complete-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}
.modal-complete-copy {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}
.upload-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}
.value {
    text-align: left !important;
}
#passTheme {
    text-align: left !important;
    display: block;
    width: 100%;
}
#passContinueButton {
    width: auto;
    padding: 12px 28px;
    font-size: 16px;
}
#analyzePassModal h3 {
    text-align: center;
}
#analyzePassModal h3 {
    text-align: center;
    color: #00ff88;
}
input,
textarea {
    width: 100%;
    max-width: 520px;
    margin: 8px auto;
    display: block;
}
input[type="file"] {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: block;
}
.button-row {
    max-width: 520px;
    width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
body {
    overflow-y: auto;
}
.upload-actions .primary-button {
    width: 180px;
    padding: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.workspace-panel {
    max-height: 70vh;
    overflow-y: auto;
}
.analysis-scroll {
    max-height: 60vh;
    overflow-y: auto;
    padding: 12px;
}
#uploadModal .modal-content,
#infoModal .modal-content,
#uploadPassModal .modal-content,
#analyzePassModal .modal-content,
#actorPrepCompleteModal .modal-content {
    text-align: center;
}
#uploadModal h3,
#uploadModal .info-copy,
#infoModal h3,
#infoModal .info-copy,
#uploadPassModal h3,
#uploadPassModal .complete-copy,
#analyzePassModal h3,
#analyzePassModal .complete-copy,
#actorPrepCompleteModal h3,
#actorPrepCompleteModal .complete-copy {
    text-align: center;
}
#analyzerPanel .workspace-title,
#analyzerPanel .workspace-copy {
    text-align: center;
}
#liveProcessLog {
    text-align: left;
}
    .home-intro {
    margin: 6px auto 18px;
    max-width: 760px;
    color: #d9d9d9;
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
}
.home-card-grid {
    width: 100%;
    max-width: 980px;
    margin: 6px auto 0;
}
.choices-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    justify-content: center;
    align-items: stretch;
    margin-top: 10px;
}

.choice {
    cursor: pointer;
    border-radius: 18px;
    transition: 0.2s ease;
}

.choice:hover {
    transform: translateY(-4px);
}
.home-module-card {
    min-height: 320px;
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, rgba(30,30,30,0.98), rgba(18,18,18,0.98));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 10px 30px rgba(0,0,0,0.28);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}
.home-module-card:hover {
    border-color: rgba(255,122,0,0.9);
    box-shadow: 0 14px 34px rgba(0,0,0,0.34);
}
.home-thumb {
    width: 100%;
    height: 120px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    overflow: hidden;
    background: #0f0f0f;
    position: relative;
}
.home-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.08));
    pointer-events: none;
}
.thumb-analyzer {
    background:
        linear-gradient(135deg, rgba(255,122,0,0.18), rgba(82,168,255,0.08)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 420'%3E%3Crect width='800' height='420' fill='%23101010'/%3E%3Crect x='78' y='48' width='290' height='330' rx='18' fill='%23191919' stroke='rgba(255,255,255,0.12)'/%3E%3Crect x='432' y='72' width='290' height='40' rx='10' fill='%23222222'/%3E%3Crect x='432' y='134' width='240' height='18' rx='9' fill='%23ff7a00' opacity='0.72'/%3E%3Crect x='432' y='176' width='260' height='14' rx='7' fill='%23333333'/%3E%3Crect x='432' y='205' width='270' height='14' rx='7' fill='%23333333'/%3E%3Crect x='432' y='234' width='248' height='14' rx='7' fill='%23333333'/%3E%3Crect x='432' y='278' width='160' height='32' rx='12' fill='%23262626' stroke='%23ff7a00'/%3E%3Crect x='108' y='92' width='230' height='22' rx='11' fill='%23292929'/%3E%3Crect x='108' y='134' width='188' height='10' rx='5' fill='%23363636'/%3E%3Crect x='108' y='158' width='210' height='10' rx='5' fill='%23363636'/%3E%3Crect x='108' y='204' width='86' height='86' rx='12' fill='rgba(82,168,255,0.18)' stroke='rgba(82,168,255,0.35)'/%3E%3Crect x='208' y='204' width='110' height='12' rx='6' fill='%23363636'/%3E%3Crect x='208' y='228' width='98' height='12' rx='6' fill='%23363636'/%3E%3Crect x='208' y='252' width='120' height='12' rx='6' fill='%23363636'/%3E%3C/svg%3E") center/cover no-repeat;
}
.thumb-deck {
    background:
        linear-gradient(135deg, rgba(255,122,0,0.14), rgba(255,183,71,0.08)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 420'%3E%3Crect width='800' height='420' fill='%23101010'/%3E%3Crect x='92' y='54' width='616' height='312' rx='22' fill='%23171717' stroke='rgba(255,255,255,0.12)'/%3E%3Crect x='132' y='86' width='248' height='210' rx='16' fill='%230d0d0d' stroke='rgba(255,255,255,0.10)'/%3E%3Crect x='414' y='98' width='238' height='18' rx='9' fill='%23ffffff' opacity='0.9'/%3E%3Crect x='414' y='136' width='202' height='14' rx='7' fill='%23ff7a00' opacity='0.8'/%3E%3Crect x='414' y='188' width='226' height='14' rx='7' fill='%23373737'/%3E%3Crect x='414' y='217' width='238' height='14' rx='7' fill='%23373737'/%3E%3Crect x='414' y='246' width='210' height='14' rx='7' fill='%23373737'/%3E%3Crect x='132' y='312' width='520' height='10' rx='5' fill='%23272727'/%3E%3Crect x='162' y='120' width='188' height='130' rx='14' fill='rgba(255,183,71,0.16)'/%3E%3Ccircle cx='255' cy='183' r='36' fill='rgba(255,122,0,0.28)'/%3E%3Crect x='190' y='176' width='130' height='16' rx='8' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") center/cover no-repeat;
}
.thumb-actor {
    background:
        linear-gradient(135deg, rgba(82,168,255,0.14), rgba(255,122,0,0.08)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 420'%3E%3Crect width='800' height='420' fill='%23101010'/%3E%3Ccircle cx='236' cy='180' r='76' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='236' cy='150' r='40' fill='rgba(82,168,255,0.24)'/%3E%3Crect x='182' y='194' width='108' height='88' rx='28' fill='rgba(82,168,255,0.18)'/%3E%3Crect x='372' y='84' width='276' height='32' rx='10' fill='%23232323'/%3E%3Crect x='372' y='132' width='214' height='14' rx='7' fill='%23ff7a00' opacity='0.75'/%3E%3Crect x='372' y='170' width='246' height='14' rx='7' fill='%23373737'/%3E%3Crect x='372' y='199' width='256' height='14' rx='7' fill='%23373737'/%3E%3Crect x='372' y='228' width='224' height='14' rx='7' fill='%23373737'/%3E%3Crect x='372' y='270' width='170' height='34' rx='12' fill='%23232323' stroke='rgba(255,255,255,0.12)'/%3E%3C/svg%3E") center/cover no-repeat;
}
.choice-title {
    font-size: 29px;
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 0;
}
.choice-copy {
    font-size: 16px;
    opacity: 1;
    line-height: 1.45;
    color: #d8d8d8;
    margin-top: 0;
    min-height: 70px;
}
.choice-link {
    margin-top: auto;
    font-size: 15px;
    font-weight: 700;
    color: #f0c15d;
    cursor: pointer;
    text-decoration: underline;
}
.footer-powered.home-footer {
    margin-top: 18px;
    padding-top: 0;
    font-size: 12px;
}


.refine-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-align: left;
}
.meta-chip {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    color: #cfcfcf;
}
.refine-layout {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 14px;
    align-items: start;
}
.refine-actions-single {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.refine-actions-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.refine-actions-single .primary-button,
.refine-actions-pair .primary-button,
.refine-actions-pair .secondary-button {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
    padding: 12px 16px;
    font-size: 14px;
}

.preview-panel, .edit-panel {
    max-height: 62vh;
    overflow-y: auto;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px;
    text-align: left;
}
.panel-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #cfcfcf;
}
.slide-preview-wrap {
    background: #0a0a0a;
    border: 1px solid rgba(82,168,255,0.18);
    border-radius: 12px;
    padding: 8px;
}
.slide-preview-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    display: block;
}
.slide-caption {
    color: #9f9f9f;
    font-size: 11px;
    margin-top: 6px;
    line-height: 1.3;
}
.slide-list {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.slide-pill {
    border: 1px solid rgba(255,255,255,0.12);
    background: #0f0f0f;
    color: #cfcfcf;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 10px;
}
.slide-pill.active {
    border-color: #ff7a00;
    color: white;
}
@media (max-width: 780px) {
    .refine-layout {
    max-height: 60vh;
    overflow: hidden; grid-template-columns: 1fr; }
}



/* Upload Script Height Pass */
#uploadState {
    max-height: calc(100vh - 200px) !important;
    overflow-y: auto !important;
    padding: 8px 8px 0 !important;
}
#uploadState .workspace-title {
    font-size: 18px !important;
    margin-bottom: 4px !important;
}
#uploadState .workspace-copy {
    font-size: 12px !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
}
#uploadState form {
    max-width: 720px;
    margin: 0 auto;
}
#uploadState .field-group {
    max-width: 520px !important;
    margin: 0 auto 7px !important;
}
#uploadState .label {
    font-size: 9px !important;
    margin-bottom: 3px !important;
}
#uploadState input[type="text"],
#uploadState input[type="file"],
#uploadState textarea {
    margin-top: 3px !important;
    margin-bottom: 6px !important;
    padding: 8px !important;
}
#uploadState textarea {
    min-height: 56px !important;
    max-height: 70px !important;
    resize: none !important;
}
#uploadState .upload-actions {
    margin-top: 10px !important;
    gap: 10px !important;
}
#uploadState .upload-actions .primary-button {
    padding: 8px 12px !important;
    font-size: 13px !important;
}
#uploadState .upload-actions:last-of-type {
    margin-bottom: 0 !important;
}
.home-thumb-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 10px 0 12px;
}



/* ===== FEEDBACK + MENU ===== */
.top-nav-shell {
    position: fixed;
    top: 16px;
    right: 18px;
    z-index: 1200;
}
.hamburger-button {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(20,20,20,0.96);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    transition: 0.2s ease;
}
.hamburger-button:hover {
    border-color: rgba(255,122,0,0.9);
    transform: translateY(-1px);
}
.hamburger-lines {
    width: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hamburger-lines span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: white;
}
.top-nav-menu {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    min-width: 220px;
    background: rgba(18,18,18,0.98);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.34);
    overflow: hidden;
}
.top-nav-menu.show {
    display: block;
}
.top-nav-item {
    width: 100%;
    background: transparent;
    border: none;
    color: #e7e7e7;
    text-align: left;
    padding: 14px 16px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-nav-item:last-child {
    border-bottom: none;
}
.top-nav-item:hover {
    background: rgba(255,122,0,0.12);
    color: white;
}
.feedback-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(34,34,34,0.98), rgba(20,20,20,0.98));
    color: white;
    box-shadow: 0 14px 34px rgba(0,0,0,0.34);
    cursor: pointer;
    transition: 0.2s ease;
}
.feedback-fab:hover {
    border-color: rgba(255,122,0,0.9);
    transform: translateY(-2px);
}
.feedback-fab-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}
.feedback-fab-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}
.feedback-fab-label {
    font-size: 14px;
    font-weight: 800;
}
.feedback-fab-sub {
    font-size: 11px;
    color: #cfcfcf;
}
.feedback-quick-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.feedback-chip {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #d8d8d8;
    padding: 10px 12px;
    font-size: 12px;
    cursor: pointer;
}
.feedback-chip.active,
.feedback-chip:hover {
    border-color: #ff7a00;
    color: white;
}
.feedback-help-copy {
    color: #9f9f9f;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
}
@media (max-width: 780px) {
    .top-nav-shell {
        top: 12px;
        right: 12px;
    }
    .feedback-fab {
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
    }
    .feedback-fab-sub {
        display: none;
    }
}
.regen-modal-content{
    max-width: 520px;
    width: 92%;
    text-align: center;
    padding: 28px 24px;
}

.regen-status-wrap{
    margin-top: 18px;
}

.regen-spinner{ display: none; }

.regen-pulse-text{
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #ff7a00;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
    animation: regenTextPulse 2s ease-in-out infinite;
}

@keyframes regenTextPulse{
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.regen-progress-bar{
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 4px;
}

.regen-progress-fill{
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    border-radius: 999px;
    transition: width 0.8s ease;
    animation: regenCrawl 90s linear forwards;
}

@keyframes regenCrawl{
    0%   { width: 0%; }
    80%  { width: 88%; }
    100% { width: 92%; }
}


/* ===== REGEN PROMPT AREA ===== */
.regen-prompt-area {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.regen-prompt-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #666;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}
.regen-prompt-row {
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
}
.regen-prompt-input {
    flex: 1;
    padding: 10px 14px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.regen-prompt-input:focus {
    border-color: rgba(255,122,0,0.5);
}
.regen-prompt-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 13px;
    margin-bottom: 0;
}

/* ===== BUILD PROGRESS QUOTE ===== */
.build-quote-area {
    margin: 18px 0 0;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.build-quote-text {
    font-size: 13px;
    color: #888;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
    transition: opacity 0.6s ease;
    max-width: 400px;
}
.build-quote-attr {
    font-size: 11px;
    color: #555;
    margin-top: 4px;
    text-align: center;
    transition: opacity 0.6s ease;
}

.image-option-strip{
    margin-top: 6px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 2px 0 4px;
}
.image-option-thumb{
    min-width: 80px;
    width: 80px;
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
}
.image-option-thumb.active{
    border-color: #ff7a00;
    box-shadow: 0 0 0 1px rgba(255,122,0,0.35) inset;
}
.image-option-thumb img{
    width: 100%;
    height: 54px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    margin-bottom: 3px;
}
.image-option-thumb-label{
    font-size: 8px;
    line-height: 1.1;
    color: #d7d7d7;
    text-align: center;
}
.no-image-tile .no-image-icon{
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 3px;
    background: #1a1a1a;
    color: #ff7a00;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px dashed rgba(255,122,0,0.35);
}
.image-option-empty{
    color: #8f8f8f;
    font-size: 11px;
    margin-top: 8px;
    text-align: center;
}
.image-modal-content{
    max-width: 760px;
    width: 94%;
    text-align: center;
}
.image-modal-preview-wrap{
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 10px;
    margin: 10px 0 12px;
}
.image-modal-preview{
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}
.image-modal-meta{
    font-size: 12px;
    color: #cfcfcf;
    line-height: 1.35;
    margin-top: 8px;
}
.image-modal-nav{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}
.image-modal-actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}
body.active-build.complete-mode #refinementStage .slide-preview-img {
    height: 210px;
}
.full-width-btn{
    width: 100%;
}
.label-optional{
    color: #777;
    font-weight: 400;
    font-size: 10px;
    text-transform: none;
    letter-spacing: 0;
}
.refine-actions-single .secondary-button,
.refine-actions-single .primary-button{
    flex: 1;
    min-width: 0;
}
.privacy-modal-content{
    max-height: 80vh;
    overflow-y: auto;
}
.privacy-section{
    margin-bottom: 18px;
}
.privacy-heading{
    color: #ff7a00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.privacy-section p{
    color: #c8c8c8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}
.privacy-section strong{
    color: #ffffff;
}
.beta-access-card{
    width: 92%;
    max-width: 420px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    max-height: 78vh;
    overflow: hidden;
    box-sizing: border-box;
}

.beta-access-logo{
    max-width:150px;
    height:auto;
    display:block;
    margin:0 auto 10px;
}

.beta-access-message{
    margin-bottom:14px;
}

.beta-access-button{
    width:100%;
    padding:12px;
    font-size:15px;
    margin-top:4px;
}

</style>
