@charset "utf-8";
/* CSS Document */

/* Editor Mode */

:root {
    --interface-width: 450px;
    --interface-window-width: 1430px;
    /* global scope */
}

.EditorModeSection {
    position: relative;
    width: 100%;
    font-weight: 400;
}

.EditorModeSectionInfo {
    margin-bottom: 0;
}

.EditorModeSectionImage {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    margin-top: 50px;
}

.EditorModeSectionTitle {
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    padding-top: 100px;
    z-index: 1;
    color: #333;
}

.EditorModeSectionSubtitle {
    display: block;
    position: relative;
    text-align: center;
    font-size: 1.4rem;
    z-index: 1;
    margin: 0 auto;
    width: 50%;
    color: #444;
}

/* Installer */

.InstallerInfo {
    position: relative;
    display: flex;
    margin: 0 auto;
    margin-top: 25px;
    justify-content: center;
}

.InstallerImage {
    flex: 1;
    align-self: center;
    max-width: 600px;
    border-radius: 9px;

    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
}

.InstallerText {
    flex: 1;
    max-width: 400px;
}

.InstallerText .EditorModeSectionSubtitle {
    width: auto;
    text-align: left;
    margin: 0 30px;
    margin-top: 15px;
    padding: 0 !important;
}

.InstallerMenu {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 15px;
    margin: 25px;
}

.InstallerMenu div {
    flex: 1;
    padding: 10px 20px;
    background-color: #222;
    color: #ddd;
    border-radius: 5px;
}

.InstallerMenu div:hover {
    color: #fff;
}

/* Interface */

.interface_divider {
    margin-left: var(--interface-width) ;
}

.InterfaceCover {
    position: relative;
    display: block;
    width: 100%;
    font-weight: 400;
    margin-top: 52px;
    margin-bottom: 30px;
    padding: 100px 0;

    color: white;
}

.InterfaceCoverTitle {
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 1000;
    z-index: 1;
    margin-bottom: 15px;
}

.InterfaceCoverSubtitle {
    display: block;
    position: relative;
    text-align: center;
    font-size: 1.4rem;
    z-index: 1;
    margin: 0 auto;
    width: 50%;
}


#InterfaceMenuContainer {
    position: relative;
    width: 100%;
    margin: 0;

    left: 0;
    right: 0;
    z-index: 98;
}

/* Fixed state (toggle this class in JS) */
#InterfaceMenuContainer.is-fixed {
    position: fixed;
    top: var(--header-h);
}

#InterfaceMenuWrap {
    position: relative;
    width: var(--interface-window-width);
    margin: 0 auto;
}

/* Menu fills the container */
#InterfaceMenu {
    line-height: 25px;
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    height: 44px;
    background: #111111;

    padding-top: 2px;
    padding-bottom: 4px;
    border-bottom: 2px solid #f7cb70;

    font-size: 0.75em;
    font-weight: 400;

    box-shadow: rgba(0, 0, 0, 1) 0px 0px 20px,
    rgba(0, 0, 0, 1) 0px 0px 30px,
    rgba(0, 0, 0, 1) 0px 0px 40px,
    rgba(0, 0, 0, 1) 0px 0px 50px;

    width: 100%;
    /* only width behavior you need */
    transition: width 0.2s ease;
    /* don't transition "all" */
}

.InterfaceMenuItem {
    flex: 1 1 calc(25% - 2.5px);
    /* 4 items per row */
    height: 22px;
    line-height: 22px;
    box-sizing: border-box;
    /* Important for borders */

    /*flex: 1;*/
    display: inline-block;
    background-color: #222;
    border-top: 1px solid rgba(255, 255, 255, 0.33);
    text-align: center;
    color: #dddddd;
    border-radius: 5px;
    cursor: pointer;

    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 3px inset;

    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
}

.flex0 {
    flex: 0;
    width: 0;
    overflow: hidden;
}

.InterfaceMenuItem:hover {
    color: #222;
    background-color: #f7cb70;
    font-weight: 400;

    border-top: 1px solid rgba(255, 255, 255, 0.66);
}

.InterfaceMenuItem.selected {
    color: #222;
    background-color: #f7cb70;
    font-weight: 600;

    border-top: 1px solid rgba(255, 255, 255, 1);

    box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 3px inset;
}

#InterfaceMenuSpacer {
    height: 0px;
}



#Interface {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--interface-width);
    /* width: 0; */
    height: calc(100vh - 52px - 27px);
    font-size: 0.8rem;
    font-weight: 400;
    overflow: hidden;

    transition: width 0.2s ease;
}

#InterfaceMain {
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    height: calc(100% - 100px);
}

#InterfaceMainTooltip {
    position: absolute;
    width: 100%;
    bottom: 100%; /* 10px are added in the js interaction */
    padding: 22px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    border-top: 1px solid white;
    color: #000;
    pointer-events: none;
    opacity: 0;
    font-size: 0.8rem;
    font-weight: 400;

    transition: all ease 180ms;

    z-index: -10;
}

.InterfaceMainImgDiv {
    position: sticky;
    bottom: 0;
    padding-bottom: 90px;
    display: block;
    align-self: flex-end;
    width: var(--interface-width);
}

.InterfaceMainImgDiv img {
    width: var(--interface-width);
    pointer-events: none;
}

.InterfaceSection:first-child .InterfaceMainImgDiv {
    border-top: 0px solid #fff;
}





#interfaceFooter {
    position: sticky;
    width: calc(var(--interface-width) - 18px);
    height: 65px;
    margin-left: 9px;
    bottom: 9px;
    /* top: 0; */
    background-color: #191919;
    border-radius: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;

    display: flex;                /* key */
    align-items: center;          /* vertical centering */
    justify-content: space-between;

    box-shadow: rgba(0, 0, 0, 1) 0px 0px 20px,
    rgba(0, 0, 0, 1) 0px 0px 30px,
    rgba(0, 0, 0, 1) 0px 0px 40px,
    rgba(0, 0, 0, 1) 0px 0px 50px;

    z-index: 97;
}

#interfaceFooterInfo {
    display: flex;
    gap: 10px;           /* replaces margin-right */
    margin-left: 15px;
    align-items: center; /* vertically centers items inside */

    z-index: 10;
}

.interfaceFooterInfoItem, .interfaceFooterInfoButton {
    width: 130px;
    height: 22px;
    box-sizing: border-box;
    margin-right: 10px;
    padding: 2px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #222;
    border-top: 1px solid rgba(255, 255, 255, 0.33);
    text-align: center;
    color: #cccccc;
    border-radius: 5px;
    /* cursor: pointer; */

    box-shadow:
    rgba(255, 255, 255, 0.2) 0px 0px 3px inset,
    rgba(0, 0, 0, 0.5) 0px 3px 5px;
}

.interfaceFooterInfoButton {
    border-radius: 50px;
    width: 15px;
    height: 15px;
}

.interfaceFooterInfoSeparator {
    width: 0px;
    height: 40px;
    border-left: 2px solid black;
    border-right: 1px solid rgba(255, 255, 255, 0.33);
}

#interfaceFooterShoot {
    position: absolute;
    width: 45px;
    height: 45px;
    line-height: 45px;
    top: 10px;
    right: 15px;
    text-align: center;
    /* border-top: 1.5px solid rgba(255, 255, 255, 0.66); */
    color: white;
    border-radius: 50vh;
    cursor: pointer;

    background-color: #f7cb70;
    color: #222;

    box-shadow:
    rgba(255, 255, 255, 1) 0px 1px 1px inset,
    rgba(0, 0, 0, 1) 0px 5px 5px;
}

#interfaceFooterShoot:hover {
    box-shadow:
    rgba(255, 255, 255, 1) 0px 0px 3px inset,
    rgba(255, 255, 255, 1) 0px 0px 3px inset,
    rgba(255, 255, 255, 1) 0px 0px 3px,
    rgba(0, 0, 0, 1) 0px 5px 5px;

    font-weight: 500;
}

#InterfaceWindow {
    position: relative;
    width: var(--interface-window-width);
    max-width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 100px;
}

.InterfaceBGColumn {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--interface-width);
    background-color: #0a0a0a;
    z-index: -1;
}

.InterfaceSection {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    /* min-height: 100vh; */
    font-weight: 400;
}

.InterfaceSectionBG {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-size: cover; */
    /* background-position: calc(50% + 199px) center; */
    /* background-attachment: fixed; */
    z-index: 0;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.InterfaceSectionCover,
.InterfaceSectionCoverVideo {
    display: block;
    position: relative;
    /* height: 50vh; */
    padding-bottom: 40%;
    background-size: cover;
    /* background-position: center; */
    overflow: hidden;
    pointer-events: none;

    box-shadow: rgba(0, 0, 0, 0.33) 0px 10px 10px -5px inset;
    border-bottom: 1px solid white;

    transition: 0.5s ease;
}

.InterfaceSectionCoverVideo {
    padding-bottom: 56.25%;
    transition: 0.5s ease;
    height: 0;
    pointer-events: initial;
}

.InterfaceSectionCoverVideoFrame {
    padding: 56.25% 0 0 0;
    position: relative;
    /* top: 0%;
	transform: translate(0, -50%); */

    transition: 0.5s ease;
}

.InterfaceSectionCoverText {
    position: absolute;
    text-align: right;
    bottom: 0;
    right: 0;
    padding: 6px 25px;
    color: white;
    background: linear-gradient(to right, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 1) 50%);
}

.InterfaceSectionInfo {
    position: relative;
    width: 100%;
    margin-bottom: 100px;
}

.InterfaceSectionTitle {
    position: relative;
    font-size: 2.5rem;
    font-weight: 800;
    padding-top: 30px;
    z-index: 1;
    color: #333;
    margin: 0 50px;
}

.InterfaceSectionSubtitle {
    display: block;
    position: relative;
    font-size: 1.4rem;
    z-index: 1;
    margin: 0 50px;
    color: #444;
}

.InterfaceSectionHighlightContainer {
    position: relative;
    margin-top: 20px;
    z-index: 1;
}

.InterfaceSectionHighlightCentered {
    position: relative;
    margin: 0 50px;
    gap: 25px;
}

.InterfaceSectionHighlight {
    position: relative;
    align-items: center;
    font-weight: 400;
    background-color: white;
    border-radius: 20px;
    /* border-bottom: 1px solid #ccc; */
    padding: 15px;
    padding-top: 15px;
    margin: 25px 0;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.HighlightCoverText {
    position: absolute;
    text-align: right;
    bottom: 0;
    right: 0;
    padding: 5px 10px;
    padding-left: 50px;
    color: #fff;
    background: linear-gradient(to right, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 1) 50%);
    font-size: 0.8rem;
}

.InterfaceSectionHighlightTitle {
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.InterfaceSectionHighlightTitle::after {
    content: "";
    display: block;
    position: absolute;
    /* This positions the line relative to the parent element */
    bottom: -12px;
    /* Position at the bottom of the parent element */
    left: 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.InterfaceSectionHighlight ul,
ol {
    margin: 0;
    padding: 0;
}

.InterfaceSectionHighlight li {
    list-style-type: none;
    /* Removes the bullet point */
    margin: 0;
    /* Resets default margin */
    padding: 0;
    /* Resets default padding */
    display: flex;
    align-items: center;
}

.InterfaceSectionHighlightAssets li:not(:last-child) {
    margin-bottom: 25px;
}

.InterfaceSectionHighlightAssetsSmallIcon li:not(:last-child) {
    margin-bottom: 10px;
}

.InterfaceSectionHighlightAssetsIcon {
    flex: 1;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    background-color: #222;
    background-size: cover;
    background-position: center;
    padding: 5px;
    border-radius: 5px;
    background-size: calc(100% - 10px) calc(100% - 10px);
    background-repeat: no-repeat;
    margin-right: 10px;
}

.InterfaceSectionHighlightAssetsEmptyIcon {
    flex: 1;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #222;
    padding: 5px;
    border-radius: 5px;
    margin: 11px;
    margin-right: 21px;
}

.InterfaceSectionHighlightAssetsInfo {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex: 1;
}

.InterfaceSectionHighlightAssetsTitle {
    font-weight: 600;
}

.InterfaceSectionHighlightAssetsSubtitle {
    margin-top: 5px;
}

.InterfaceSectionHighlightDescription {
    text-align: left;
}

/* SCROLL BAR INTERFACE */

/* For Webkit browsers like Chrome, Safari */
#InterfaceMain::-webkit-scrollbar {
    width: 10px;
    /* Width of the scrollbar */
}

#InterfaceMain::-webkit-scrollbar-track {
    background: #2E2E2E;
    /* Color of the track */
}

#InterfaceMain::-webkit-scrollbar-thumb {
    background: #555;
    /* Color of the thumb (the draggable part) */
    border-radius: 5px;
    /* Rounded corners */
}

#InterfaceMain::-webkit-scrollbar-thumb:hover {
    background: #444;
    /* Color when hovering over the thumb */
}

/* For Firefox */
#InterfaceMain {
    scrollbar-width: thin;
    /* Can be "auto", "thin", or "none" */
    scrollbar-color: #555 #2E2E2E;
    /* Thumb and Track color */
}

/* For IE and Edge */
#InterfaceMain::-ms-scrollbar {
    width: 10px;
}

#InterfaceMain::-ms-scrollbar-track {
    background: #2E2E2E;
}

#InterfaceMain::-ms-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}

#InterfaceMain::-ms-scrollbar-thumb:hover {
    background: #444;
}

/* TOOLTIP */

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
    margin-bottom: 5px;
}

.tooltip:hover::before {
    opacity: 1;
}













:root {
    --bg: #111111;
    --panel: #222222;
    --text: #e8eaf0;
    --muted: #b7bccb;
    --accent: #f7cb70;
    --border: #3a3a3a;
    --code: #0b0d12;
}

/* ===========================
   Editor Mode (match Interface)
   =========================== */

#editor-mode {
  margin: 0;
}

.editor-mode__header {
  margin-bottom: 12px;
}

.editor-mode__title {
  margin: 0 0 6px;
  font-size: 22px; /* match h2 scale */
}

.editor-mode__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Highlights grid (shortcut cards) */
.editor-mode__highlights {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.editor-mode__card {
  grid-column: span 4;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.editor-mode__cardHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.editor-mode__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.02);
  background-size: cover;
  background-position: center;
}

.editor-mode__cardTitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.editor-mode__cardBody {
  font-size: 14px;
  color: var(--text);
}

.editor-mode__cardBody b {
  color: var(--text);
}

.editor-mode__kbd {
  display: inline-block;
  padding: 1px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 12px;
  margin: 0 2px;
  white-space: nowrap;
}

/* Control sections (Placement / Light Painting) */
.editor-mode__controlsWrap {
  margin-top: 12px;
}

.editor-mode__controlsGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.editor-mode__controlsCard {
  grid-column: span 6;
}

/* Use existing section styling, but add a little structure */
.editor-mode__controlsCard .note {
  margin-top: 14px;
}

/* Lists in control cards */
.editor-mode__list {
  margin: 10px 0 0 20px;
}

.editor-mode__list li {
  margin: 8px 0;
}

.editor-mode__divider {
  height: 1px;
  background: var(--border);
  opacity: 1;
  margin: 18px 12px;
  border: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .editor-mode__card { grid-column: span 6; }
  .editor-mode__controlsCard { grid-column: span 12; }
}

@media (max-width: 700px) {
  .editor-mode__card { grid-column: span 12; }
}


/* ===========================
   Interface
   =========================== */

.wrap {
    position: relative;
    /* max-width: 980px; */
    width: 100%;
    margin: 0 auto;

    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    line-height: 1.55;
}

h1 {
    margin: 0 0 8px;
    font-size: 34px;
    letter-spacing: -0.02em;
}

.subtitle {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

main {
    padding: 24px 20px 60px;
}

section {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    margin: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

h3 {
    margin: 18px 0 8px;
    font-size: 16px;
    color: var(--text);
}

p {
    margin: 10px 0;
    color: var(--text);
}

.note {
    border-left: 4px solid var(--accent);
    padding: 10px 12px;
    margin: 12px 0;
    background: #111111;
    color: var(--text);
    border-radius: 10px;
}

.muted {
    color: var(--muted);
}

ul, ol {
    margin: 10px 0 10px 20px;
}

li {
    margin: 6px 0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 12px 0 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
}

th,
td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    font-size: 14px;
}

th {
    text-align: left;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

code,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background: var(--code);
    color: var(--text);
}

pre {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: auto;
}

.pill {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    margin-right: 6px;
    background: rgba(255, 255, 255, 0.02);
}

footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.02);
}


@media (max-width: 1920px) {
    :root {
        --interface-window-width: 100%;
    }
}