/* src/styles.css */
:root {
  color-scheme: light;
  font-family:
    "Aptos",
    "Segoe UI",
    sans-serif;
  background: #f5f7f4;
  color: #18201b;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 320px;
}
button,
input {
  font: inherit;
}
.shell {
  min-height: 100vh;
  padding: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(21, 86, 65, 0.16),
      transparent 35%),
    linear-gradient(
      315deg,
      rgba(191, 102, 62, 0.18),
      transparent 42%),
    #f5f7f4;
}
.workspace {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.panel,
.stage {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 32, 27, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(33, 44, 35, 0.12);
}
.panel {
  padding: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #155641;
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
}
.brand p,
.eyebrow {
  margin: 0;
  color: #69756d;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.brand strong {
  display: block;
  margin-top: 2px;
}
.create-form {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
label {
  display: grid;
  gap: 6px;
  color: #4d5a52;
  font-size: 0.9rem;
}
input {
  width: 100%;
  border: 1px solid rgba(24, 32, 27, 0.18);
  border-radius: 6px;
  padding: 11px 12px;
  background: #fff;
  color: #18201b;
}
input[type=file] {
  padding: 9px 10px;
}
.form-section {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 32, 27, 0.1);
}
.form-section small {
  overflow-wrap: anywhere;
  color: #69756d;
}
.upload-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  color: #4d5a52;
  font-size: 0.88rem;
}
progress {
  width: 100%;
  height: 10px;
  accent-color: #155641;
}
button {
  border: 0;
  border-radius: 6px;
  padding: 11px 14px;
  background: #155641;
  color: #fff;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.asset-list {
  display: grid;
  gap: 10px;
}
.asset-row {
  display: grid;
  gap: 4px;
  width: 100%;
  text-align: left;
  background: #eef3ef;
  color: #18201b;
  border: 1px solid transparent;
}
.asset-row.active {
  border-color: #155641;
  background: #dfece5;
}
.asset-row.pending {
  border-color: rgba(191, 102, 62, 0.35);
}
.asset-row small {
  color: #69756d;
}
.empty {
  color: #69756d;
  line-height: 1.5;
}
.stage {
  min-width: 0;
  padding: 24px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
button.danger {
  background: #7b2c12;
  color: #fff;
}
button.secondary {
  border: 1px solid rgba(24, 32, 27, 0.18);
  background: #fff;
  color: #155641;
}
.status-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(21, 86, 65, 0.16);
  border-radius: 6px;
  background: #eef5f0;
  color: #2c4638;
}
.status-strip.waiting {
  border-color: rgba(191, 102, 62, 0.28);
  background: #fbefe6;
  color: #70411f;
}
.status-strip strong {
  overflow-wrap: anywhere;
  text-align: right;
}
.playback-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 14px;
}
.playback-actions {
  display: flex;
  gap: 10px;
}
h1 {
  margin: 4px 0 0;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.05;
}
.player-frame {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 56vh;
  border-radius: 8px;
  background: #111714;
}
iframe {
  position: relative;
  z-index: 1;
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 56vh;
}
.watermark-overlay {
  position: absolute;
  z-index: 2;
  top: 10%;
  left: 8%;
  max-width: min(72%, 680px);
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(17, 23, 20, 0.18);
  color: rgba(255, 0, 0, 0.86);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
  pointer-events: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.45), 0 0 4px rgba(255, 255, 255, 0.34);
  animation: moving-watermark 8s linear infinite;
}
@keyframes moving-watermark {
  0% {
    transform: translate3d(0, 0, 0);
  }
  24% {
    transform: translate3d(70%, 18vh, 0);
  }
  50% {
    transform: translate3d(16%, 42vh, 0);
  }
  74% {
    transform: translate3d(58%, 7vh, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 32px;
  color: #f4faf6;
  text-align: center;
}
.placeholder span {
  max-width: 520px;
  color: #b8c7bd;
}
.placeholder button {
  margin-top: 8px;
  background: #f4faf6;
  color: #155641;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.facts div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(24, 32, 27, 0.1);
  border-radius: 8px;
  background: #fff;
}
.facts span {
  color: #69756d;
  font-size: 0.82rem;
}
.facts strong {
  overflow-wrap: anywhere;
}
.error,
.asset-error {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: #fbe9df;
  color: #7b2c12;
}
@media (max-width: 920px) {
  .shell {
    padding: 12px;
  }
  .workspace {
    grid-template-columns: 1fr;
  }
  header,
  .playback-controls,
  .facts {
    grid-template-columns: 1fr;
  }
  header {
    align-items: stretch;
    flex-direction: column;
  }
  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .playback-actions {
    flex-direction: column;
  }
  .status-strip {
    flex-direction: column;
  }
  .status-strip strong {
    text-align: left;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
