@charset "UTF-8";
.icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain; }
  .icon.play {
    -webkit-mask-image: url("/media/icon_play.svg");
    mask-image: url("/media/icon_play.svg"); }
  .icon.pause {
    -webkit-mask-image: url("/media/icon_pause.svg");
    mask-image: url("/media/icon_pause.svg"); }
  .icon.mute {
    -webkit-mask-image: url("/media/icon_mute.svg");
    mask-image: url("/media/icon_mute.svg"); }
  .icon.sound {
    -webkit-mask-image: url("/media/icon_sound.svg");
    mask-image: url("/media/icon_sound.svg"); }
  .icon.fullscreen {
    -webkit-mask-image: url("/media/icon_fullscreen.svg");
    mask-image: url("/media/icon_fullscreen.svg"); }

:root {
  --primary-color: #3b82f6;
  --success-color: #10b981;
  --accent-color: #8b5cf6;
  --info-color: #0ea5e9;
  --error-color: #ef4444;
  --bg-color: #0d0e24;
  --bg-deep: #070716;
  --bg-base: #0d0e24;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #272a5a; }

:root {
  --border-radius: 3px; }

:root {
  --primary-color: #3b82f6;
  --success-color: #10b981;
  --accent-color: #8b5cf6;
  --info-color: #0ea5e9;
  --error-color: #ef4444;
  --bg-color: #0d0e24;
  --bg-deep: #070716;
  --bg-base: #0d0e24;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #272a5a; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  padding: 0.375rem 0.8rem;
  border: 1px solid #272a5a;
  border-radius: 3px;
  background-color: #070716;
  color: #f8fafc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); }
  input[type="text"]::placeholder,
  input[type="email"]::placeholder,
  input[type="password"]::placeholder,
  input[type="number"]::placeholder,
  select::placeholder,
  textarea::placeholder {
    color: rgba(148, 163, 184, 0.4); }
  input[type="text"]:hover:not(:disabled),
  input[type="email"]:hover:not(:disabled),
  input[type="password"]:hover:not(:disabled),
  input[type="number"]:hover:not(:disabled),
  select:hover:not(:disabled),
  textarea:hover:not(:disabled) {
    border-color: #363b7e; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  input[type="number"]:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(59, 130, 246, 0.25); }
  input[type="text"]:disabled,
  input[type="email"]:disabled,
  input[type="password"]:disabled,
  input[type="number"]:disabled,
  select:disabled,
  textarea:disabled {
    background-color: #17193b;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none; }

textarea {
  display: block;
  width: 100%;
  min-height: 4rem; }

input[type="number"] {
  scrollbar-color: #272a5a transparent; }
  input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    filter: invert(80%);
    cursor: pointer; }

option {
  background-color: #070716;
  color: #f8fafc; }

.form-group {
  margin-bottom: 1.25rem; }
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #94a3b8;
    font-size: 0.95rem; }
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"],
  .form-group select {
    width: 100%; }

.divider {
  border: 0;
  height: 1px;
  background: #272a5a;
  margin: 1.5rem 0; }

.dummy {
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  height: 1rem !important; }

button.btn-success, button--success, .btn.btn-success, .btn--success, .btn-add {
  background-color: #10b981 !important; }
  button.btn-success:hover, button--success:hover, .btn.btn-success:hover, .btn--success:hover, .btn-add:hover {
    background-color: #0c8a60 !important; }

button.btn-danger, button--danger, .btn.btn-danger, .btn--danger {
  background-color: #ef4444 !important; }
  button.btn-danger:hover, button--danger:hover, .btn.btn-danger:hover, .btn--danger:hover {
    background-color: #eb1515 !important; }

button, .btn {
  display: inline-block;
  padding: 0.375rem 1.2rem;
  border-radius: 3px;
  border: none;
  background-color: #3b82f6;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s, border-color 0.2s;
  text-align: center; }
  button:hover:not(:disabled), .btn:hover:not(:disabled) {
    background-color: #2563eb; }
  button:focus, .btn:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(59, 130, 246, 0.25); }
  button:disabled, .btn:disabled {
    background-color: #17193b;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none; }
  button.btn-large, .btn.btn-large {
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem; }
  button.btn-sm, .btn.btn-sm {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem; }
  button.btn-slim, .btn.btn-slim {
    padding: 0.375rem 0.5rem; }
  button.btn-danger-lite, button--danger-lite, .btn.btn-danger-lite, .btn--danger-lite {
    background-color: transparent;
    border: 1px solid #ef4444;
    color: #ef4444; }
    button.btn-danger-lite:hover, button--danger-lite:hover, .btn.btn-danger-lite:hover, .btn--danger-lite:hover {
      background-color: #ef4444;
      color: white; }
  button.btn-warning, button--warning, .btn.btn-warning, .btn--warning {
    background-color: #f59e0b;
    color: #111827; }
    button.btn-warning:hover, button--warning:hover, .btn.btn-warning:hover, .btn--warning:hover {
      background-color: #c57f08; }
  button.btn-accent, button--accent, .btn.btn-accent, .btn--accent {
    background-color: #8b5cf6; }
    button.btn-accent:hover, button--accent:hover, .btn.btn-accent:hover, .btn--accent:hover {
      background-color: #692cf3; }
  button.btn-disabled, button--disabled, .btn.btn-disabled, .btn--disabled {
    background-color: #94a3b8; }
    button.btn-disabled:hover, button--disabled:hover, .btn.btn-disabled:hover, .btn--disabled:hover {
      background-color: #7589a4; }

.segmented-control {
  display: flex;
  gap: 4px;
  background-color: #0d0e24;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #1f2248;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); }
  .segmented-control input[type="radio"] {
    display: none; }
  .segmented-control label {
    flex: 1;
    text-align: center;
    padding: 0.6rem 1rem;
    cursor: pointer;
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    margin: 0; }
    .segmented-control label:hover {
      color: #f8fafc; }
  .segmented-control input[type="radio"]:checked + label {
    background-color: #3b82f6;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }

.avatar-container {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #272a5a;
  background-color: #17193b;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; }
  .avatar-container .avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 14, 36, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  justify-content: center;
  align-items: center; }
  .modal-overlay .modal-content {
    background-color: #17193b;
    border: 1px solid #272a5a;
    border-radius: 3px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease; }
    .modal-overlay .modal-content.show {
      transform: translateY(0);
      opacity: 1; }
  .modal-overlay .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #272a5a; }
    .modal-overlay .modal-header h2 {
      font-size: 1.25rem;
      margin: 0; }
    .modal-overlay .modal-header .btn-close {
      background: transparent;
      border: none;
      color: #94a3b8;
      font-size: 1.5rem;
      cursor: pointer; }
      .modal-overlay .modal-header .btn-close:hover {
        color: #ef4444; }
  .modal-overlay .modal-body {
    padding: 1.5rem; }

.role-badge {
  display: inline-block;
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem 0.075rem;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1em;
  margin-top: -0.5em; }
  .role-badge.role-owner {
    background-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3); }
  .role-badge.role-editor {
    background-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3); }
  .role-badge.role-viewer {
    background-color: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
    border-color: rgba(148, 163, 184, 0.3); }

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #272a5a; }
  .list-item:last-child {
    border-bottom: none; }
  .list-item .item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; }
  .list-item .item-actions {
    display: flex;
    align-items: center;
    gap: 1rem; }
  .list-item select.role-select {
    background-color: #0d0e24;
    color: #f8fafc;
    border: 1px solid #272a5a;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    outline: none;
    cursor: pointer; }
  .list-item .btn-remove {
    background: transparent;
    color: #ef4444;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 3px; }
    .list-item .btn-remove:hover:not(:disabled) {
      background-color: rgba(239, 68, 68, 0.1); }
    .list-item .btn-remove:disabled {
      color: #272a5a;
      cursor: not-allowed; }

.wizard-stepper .step {
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease; }
  .wizard-stepper .step.active {
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 4px; }

progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #0d0e24;
  border: 1px solid #272a5a;
  margin-top: 6px; }
  progress::-webkit-progress-bar {
    background: #0d0e24; }
  progress::-webkit-progress-value {
    background: #0ea5e9;
    transition: width 0.3s ease; }

.draggable-progress-bar {
  position: relative;
  width: 100%;
  height: 46px;
  background-color: #070716;
  border: 1px solid #272a5a;
  border-radius: 3px;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4); }
  .draggable-progress-bar .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7c3aed 0%, #7059f6 100%);
    border-right: 2px solid #c3bafb;
    box-shadow: 0 0 15px rgba(112, 89, 246, 0.6);
    pointer-events: none;
    transition: width 0.05s ease-out; }
  .draggable-progress-bar .progress-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 2;
    padding: 0 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .draggable-progress-bar input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    margin: 0; }
  .draggable-progress-bar:hover {
    border-color: rgba(112, 89, 246, 0.6); }
    .draggable-progress-bar:hover .progress-fill {
      filter: brightness(1.15); }

.combo-box-container {
  width: 100%;
  position: relative; }
  .combo-box-container::after {
    position: absolute;
    width: 10em;
    height: 10em;
    background-color: red; }

.combo-box-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background: #070716;
  border: 1px solid #272a5a;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0; }
  .combo-box-list li {
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #f8fafc;
    font-size: 0.9rem;
    transition: background 0.3s ease; }
    .combo-box-list li.combo-box-item:hover, .combo-box-list li.combo-box-item.active {
      background: #17193b;
      color: #3b82f6; }
    .combo-box-list li.combo-box-empty {
      cursor: default;
      font-style: italic; }
  .combo-box-list::-webkit-scrollbar {
    width: 6px; }
  .combo-box-list::-webkit-scrollbar-thumb {
    background: #272a5a;
    border-radius: 3px; }

.option-menu {
  position: relative; }
  .option-menu .option-menu-btn {
    background: #17193b;
    color: #f8fafc;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s; }
    .option-menu .option-menu-btn:hover {
      background: #13133d;
      border-color: #3b82f6; }
    .option-menu .option-menu-btn .option-menu-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8; }
  .option-menu .option-menu-list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background-color: #17193b;
    border: 1px solid #272a5a;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    min-width: 150px;
    z-index: 50;
    padding: 0.25rem 0; }
    .option-menu .option-menu-list.show {
      display: block; }
    .option-menu .option-menu-list .option-menu-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.55rem 1rem;
      font-size: 0.85rem;
      color: #f8fafc;
      cursor: pointer;
      transition: background 0.15s; }
      .option-menu .option-menu-list .option-menu-item:hover {
        background-color: rgba(255, 255, 255, 0.05); }
      .option-menu .option-menu-list .option-menu-item .item-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8; }
      .option-menu .option-menu-list .option-menu-item#btn-clear-speakers {
        color: #ef4444; }
        .option-menu .option-menu-list .option-menu-item#btn-clear-speakers .item-icon {
          color: #ef4444; }

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  background-color: #070716;
  border: 1px solid #272a5a;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0 0.5rem 0 0;
  position: relative;
  top: -1px; }
  input[type="checkbox"]:hover:not(:disabled) {
    border-color: #3e438f; }
  input[type="checkbox"]:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(139, 92, 246, 0.25); }
  input[type="checkbox"]:checked {
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
    input[type="checkbox"]:checked::after {
      content: "";
      position: absolute;
      left: 31%;
      top: 15%;
      width: 25%;
      height: 50%;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg); }
  input[type="checkbox"]:disabled {
    background-color: #17193b;
    border-color: #1f2248;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none; }
    input[type="checkbox"]:disabled:checked {
      background-color: rgba(139, 92, 246, 0.5);
      border-color: transparent; }
      input[type="checkbox"]:disabled:checked::after {
        border-color: rgba(255, 255, 255, 0.7); }

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  cursor: pointer;
  user-select: none; }
  .checkbox-group input[type="checkbox"] {
    flex-shrink: 0; }
  .checkbox-group label, .checkbox-group span {
    margin-bottom: 0;
    cursor: pointer;
    color: #f8fafc;
    font-size: 0.95rem;
    line-height: 1.2; }
  .checkbox-group:hover input[type="checkbox"]:not(:disabled) {
    border-color: #3e438f; }

.status-msg {
  position: absolute;
  top: 100%;
  /* Places it directly below the input */
  left: 0;
  margin-top: 4px;
  padding: 0 8px;
  font-size: 12px;
  border-radius: 4px;
  color: white;
  /* Animation properties */
  max-height: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in-out;
  overflow: hidden; }
  .status-msg.success {
    background-color: #42A5F5;
    /* Blue 400 */ }
  .status-msg.error {
    background-color: #EF5350;
    /* Red 400 */ }
  .status-msg.show {
    max-height: 40px;
    /* Adjust based on your text size */
    padding: 6px 8px;
    opacity: 1;
    transform: scaleY(1); }

* {
  scrollbar-width: thin;
  scrollbar-color: #272a5a transparent; }

::-webkit-scrollbar {
  width: 14px;
  height: 14px; }

::-webkit-scrollbar-track {
  background: transparent; }

::-webkit-scrollbar-thumb {
  background-color: #272a5a;
  border-radius: 10px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: content-box; }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #3e438f; }

::-webkit-scrollbar-corner {
  background: transparent; }

.faq-section {
  max-width: 900px;
  margin: 0 auto; }
  .faq-section .faq-card {
    border-left: 3px solid #7059f6 !important;
    transition: border-color 0.2s ease, transform 0.2s ease; }
    .faq-section .faq-card:hover {
      border-left-color: #afa2fa !important;
      transform: translateX(4px); }
    .faq-section .faq-card h3 {
      font-size: 1.2rem;
      color: #ffffff;
      margin-bottom: 0.5rem; }
    .faq-section .faq-card p {
      color: #94a3b8;
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.5; }
    .faq-section .faq-card code {
      background: rgba(255, 255, 255, 0.1);
      padding: 0.15rem 0.4rem;
      border-radius: 4px;
      color: #9889fc;
      font-size: 0.85rem; }

.ambient-glow {
  position: absolute;
  max-width: 100%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18; }
  .ambient-glow.glow-purple {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #7059f6 0%, transparent 70%); }
  .ambient-glow.glow-red {
    top: 35%;
    left: -100px;
    background: radial-gradient(circle, #ef4444 0%, transparent 70%); }
  .ambient-glow.glow-green {
    top: 40%;
    right: 0;
    background: radial-gradient(circle, #10b981 0%, transparent 70%); }

.glass-panel, .glass-card {
  background: rgba(30, 41, 59, 0.7) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #9889fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.gradient-purple-text {
  background: linear-gradient(135deg, #9889fc 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(112, 89, 246, 0.4); }
  100% {
    box-shadow: 0 0 28px rgba(112, 89, 246, 0.75); } }
.portal-link {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s; }
  .portal-link.link-red {
    color: #f37373; }
    .portal-link.link-red:hover {
      border-color: #ef4444;
      background: rgba(239, 68, 68, 0.1); }
  .portal-link.link-green {
    color: #14e8a2; }
    .portal-link.link-green:hover {
      border-color: #10b981;
      background: rgba(16, 185, 129, 0.1); }

.split-card {
  overflow: hidden;
  position: relative; }
  .split-card .card-glow-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    pointer-events: none; }
  .split-card.card-red {
    border-top: 3px solid #ef4444 !important; }
    .split-card.card-red .card-glow-bg {
      background: #ef4444; }
    .split-card.card-red:hover {
      border-color: rgba(239, 68, 68, 0.6) !important;
      box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2); }
  .split-card.card-green {
    border-top: 3px solid #10b981 !important; }
    .split-card.card-green .card-glow-bg {
      background: #10b981; }
    .split-card.card-green:hover {
      border-color: rgba(16, 185, 129, 0.6) !important;
      box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2); }

@keyframes save-flash {
  0% {
    background-color: #17193b; }
  50% {
    background-color: rgba(59, 130, 246, 0.2); }
  100% {
    background-color: #17193b; } }
.flash-save {
  animation: save-flash 0.6s ease-in-out; }

.fade-content {
  transition: opacity 0.25s ease-in-out; }

.opacity-0 {
  opacity: 0 !important;
  pointer-events: none; }

.opacity-50 {
  opacity: 0.5 !important; }

.opacity-75 {
  opacity: 0.75 !important; }

.hidden {
  display: none !important; }

.d-none {
  display: none !important; }

.d-block {
  display: block !important; }

.d-inline {
  display: inline !important; }

.d-flex {
  display: flex !important; }

.p-relative {
  position: relative; }

.text-success {
  color: #10b981; }

.text-warning {
  color: #f59e0b; }

.text-danger {
  color: #ef4444; }

.text-info {
  color: #0ea5e9; }

.text-muted {
  color: #94a3b8; }

.text-input-med {
  font-size: 16px; }

.text-center {
  text-align: center !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.font-bold {
  font-weight: 700 !important; }

.font-semibold {
  font-weight: 600 !important; }

.font-normal {
  font-weight: 400 !important; }

.border {
  border: 1px solid #272a5a !important; }

.border-top {
  border-top: 1px solid #272a5a !important; }

.border-bottom {
  border-bottom: 1px solid #272a5a !important; }

.rounded {
  border-radius: 3px !important; }

.hero-clone {
  position: fixed;
  z-index: 9990;
  background: var(--bg-surface);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none; }

.ml-a {
  margin-left: auto; }

.mr-a {
  margin-right: auto; }

.m-0 {
  margin: 0 !important; }

.mt-0 {
  margin-top: 0 !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.ml-0 {
  margin-left: 0 !important; }

.mr-0 {
  margin-right: 0 !important; }

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.mn-0 {
  margin: 0 !important; }

.mnt-0 {
  margin-top: 0 !important; }

.mnb-0 {
  margin-bottom: 0 !important; }

.mnl-0 {
  margin-left: 0 !important; }

.mnr-0 {
  margin-right: 0 !important; }

.mnx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.mny-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.p-0 {
  padding: 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pl-0 {
  padding-left: 0 !important; }

.pr-0 {
  padding-right: 0 !important; }

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.spc-0 {
  width: 0 !important;
  display: inline-block; }

.vts-0 {
  height: 0 !important;
  display: inline-block; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1 {
  margin-top: 0.25rem !important; }

.mb-1 {
  margin-bottom: 0.25rem !important; }

.ml-1 {
  margin-left: 0.25rem !important; }

.mr-1 {
  margin-right: 0.25rem !important; }

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important; }

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.mn-1 {
  margin: -0.25rem !important; }

.mnt-1 {
  margin-top: -0.25rem !important; }

.mnb-1 {
  margin-bottom: -0.25rem !important; }

.mnl-1 {
  margin-left: -0.25rem !important; }

.mnr-1 {
  margin-right: -0.25rem !important; }

.mnx-1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important; }

.mny-1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1 {
  padding-top: 0.25rem !important; }

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pl-1 {
  padding-left: 0.25rem !important; }

.pr-1 {
  padding-right: 0.25rem !important; }

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important; }

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.spc-1 {
  width: 0.25rem !important;
  display: inline-block; }

.vts-1 {
  height: 0.25rem !important;
  display: inline-block; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.ml-2 {
  margin-left: 0.5rem !important; }

.mr-2 {
  margin-right: 0.5rem !important; }

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.mn-2 {
  margin: -0.5rem !important; }

.mnt-2 {
  margin-top: -0.5rem !important; }

.mnb-2 {
  margin-bottom: -0.5rem !important; }

.mnl-2 {
  margin-left: -0.5rem !important; }

.mnr-2 {
  margin-right: -0.5rem !important; }

.mnx-2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important; }

.mny-2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pl-2 {
  padding-left: 0.5rem !important; }

.pr-2 {
  padding-right: 0.5rem !important; }

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.spc-2 {
  width: 0.5rem !important;
  display: inline-block; }

.vts-2 {
  height: 0.5rem !important;
  display: inline-block; }

.m-3 {
  margin: 1rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.ml-3 {
  margin-left: 1rem !important; }

.mr-3 {
  margin-right: 1rem !important; }

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important; }

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.mn-3 {
  margin: -1rem !important; }

.mnt-3 {
  margin-top: -1rem !important; }

.mnb-3 {
  margin-bottom: -1rem !important; }

.mnl-3 {
  margin-left: -1rem !important; }

.mnr-3 {
  margin-right: -1rem !important; }

.mnx-3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important; }

.mny-3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3 {
  padding-top: 1rem !important; }

.pb-3 {
  padding-bottom: 1rem !important; }

.pl-3 {
  padding-left: 1rem !important; }

.pr-3 {
  padding-right: 1rem !important; }

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important; }

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.spc-3 {
  width: 1rem !important;
  display: inline-block; }

.vts-3 {
  height: 1rem !important;
  display: inline-block; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4 {
  margin-top: 1.5rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.ml-4 {
  margin-left: 1.5rem !important; }

.mr-4 {
  margin-right: 1.5rem !important; }

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important; }

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.mn-4 {
  margin: -1.5rem !important; }

.mnt-4 {
  margin-top: -1.5rem !important; }

.mnb-4 {
  margin-bottom: -1.5rem !important; }

.mnl-4 {
  margin-left: -1.5rem !important; }

.mnr-4 {
  margin-right: -1.5rem !important; }

.mnx-4 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important; }

.mny-4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4 {
  padding-top: 1.5rem !important; }

.pb-4 {
  padding-bottom: 1.5rem !important; }

.pl-4 {
  padding-left: 1.5rem !important; }

.pr-4 {
  padding-right: 1.5rem !important; }

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important; }

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.spc-4 {
  width: 1.5rem !important;
  display: inline-block; }

.vts-4 {
  height: 1.5rem !important;
  display: inline-block; }

.m-5 {
  margin: 2rem !important; }

.mt-5 {
  margin-top: 2rem !important; }

.mb-5 {
  margin-bottom: 2rem !important; }

.ml-5 {
  margin-left: 2rem !important; }

.mr-5 {
  margin-right: 2rem !important; }

.mx-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important; }

.my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important; }

.mn-5 {
  margin: -2rem !important; }

.mnt-5 {
  margin-top: -2rem !important; }

.mnb-5 {
  margin-bottom: -2rem !important; }

.mnl-5 {
  margin-left: -2rem !important; }

.mnr-5 {
  margin-right: -2rem !important; }

.mnx-5 {
  margin-left: -2rem !important;
  margin-right: -2rem !important; }

.mny-5 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important; }

.p-5 {
  padding: 2rem !important; }

.pt-5 {
  padding-top: 2rem !important; }

.pb-5 {
  padding-bottom: 2rem !important; }

.pl-5 {
  padding-left: 2rem !important; }

.pr-5 {
  padding-right: 2rem !important; }

.px-5 {
  padding-left: 2rem !important;
  padding-right: 2rem !important; }

.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important; }

.spc-5 {
  width: 2rem !important;
  display: inline-block; }

.vts-5 {
  height: 2rem !important;
  display: inline-block; }

.m-6 {
  margin: 3rem !important; }

.mt-6 {
  margin-top: 3rem !important; }

.mb-6 {
  margin-bottom: 3rem !important; }

.ml-6 {
  margin-left: 3rem !important; }

.mr-6 {
  margin-right: 3rem !important; }

.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important; }

.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.mn-6 {
  margin: -3rem !important; }

.mnt-6 {
  margin-top: -3rem !important; }

.mnb-6 {
  margin-bottom: -3rem !important; }

.mnl-6 {
  margin-left: -3rem !important; }

.mnr-6 {
  margin-right: -3rem !important; }

.mnx-6 {
  margin-left: -3rem !important;
  margin-right: -3rem !important; }

.mny-6 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important; }

.p-6 {
  padding: 3rem !important; }

.pt-6 {
  padding-top: 3rem !important; }

.pb-6 {
  padding-bottom: 3rem !important; }

.pl-6 {
  padding-left: 3rem !important; }

.pr-6 {
  padding-right: 3rem !important; }

.px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important; }

.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.spc-6 {
  width: 3rem !important;
  display: inline-block; }

.vts-6 {
  height: 3rem !important;
  display: inline-block; }

.flex-column {
  flex-direction: column !important; }

.flex-row {
  flex-direction: row !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.justify-center {
  justify-content: center !important; }

.justify-between {
  justify-content: space-between !important; }

.justify-end {
  justify-content: flex-end !important; }

.align-center {
  align-items: center !important; }

.align-start {
  align-items: flex-start !important; }

.gap-1 {
  gap: 0.5rem !important; }

.gap-2 {
  gap: 1rem !important; }

.gap-3 {
  gap: 1.5rem !important; }

.w-100 {
  width: 100% !important; }

.w-50 {
  width: 50% !important; }

.h-100 {
  height: 100% !important; }

:root {
  --border-radius: 3px; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0d0e24;
  color: #f8fafc;
  line-height: 1.6;
  padding-top: 70px; }

a {
  color: #7059f6;
  text-decoration: none;
  transition: color 0.3s ease; }
  a:hover {
    color: #5b42ec; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(13, 14, 36, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  nav .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem; }
    nav .brand .nav-back-btn {
      display: flex;
      justify-content: center;
      align-items: center;
      background: transparent;
      border: none;
      color: #94a3b8;
      border-radius: 3px;
      cursor: pointer;
      width: 0;
      opacity: 0;
      padding: 0;
      margin: 0;
      overflow: hidden;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
      nav .brand .nav-back-btn.show-btn {
        width: 32px;
        opacity: 1;
        padding: 0.25rem 0.5rem 0.25rem 0.25rem;
        margin-left: -0.5rem;
        pointer-events: auto; }
      nav .brand .nav-back-btn:hover {
        color: #f8fafc;
        background-color: rgba(255, 255, 255, 0.05);
        transform: translateX(-2px); }
      nav .brand .nav-back-btn:focus {
        outline: none;
        box-shadow: inset 0 0 0 2px rgba(112, 89, 246, 0.5); }
      nav .brand .nav-back-btn svg {
        display: block;
        min-width: 24px; }
    nav .brand .brand-logo {
      height: 35px;
      width: auto;
      display: block;
      transition: opacity 0.2s ease; }
      nav .brand .brand-logo:hover {
        opacity: 0.9; }
  nav .auth-bar {
    display: flex;
    align-items: center;
    gap: 1rem; }
    nav .auth-bar #auth-message {
      font-size: 0.85rem;
      color: #ef4444; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #f8fafc;
  font-size: 1.5rem;
  cursor: pointer; }

.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  backdrop-filter: blur(3px); }

.nav-drawer {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end; }
  .nav-drawer .drawer-header {
    display: none; }
  .nav-drawer .nav-content {
    display: flex;
    align-items: center;
    gap: 2rem; }
  .nav-drawer .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    order: 1; }
    .nav-drawer .nav-links a {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      color: #94a3b8;
      font-weight: 600;
      transition: color 0.2s; }
      .nav-drawer .nav-links a svg {
        width: 18px;
        height: 18px;
        opacity: 0.7;
        transition: opacity 0.2s, color 0.2s; }
      .nav-drawer .nav-links a:hover, .nav-drawer .nav-links a.active {
        color: #f8fafc; }
        .nav-drawer .nav-links a:hover svg, .nav-drawer .nav-links a.active svg {
          opacity: 1;
          color: #7059f6; }
  .nav-drawer .drawer-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    order: 2; }
    .nav-drawer .drawer-profile .profile-info {
      display: flex;
      align-items: center;
      gap: 0.5rem; }
      .nav-drawer .drawer-profile .profile-info .welcome-text {
        color: #94a3b8; }
      .nav-drawer .drawer-profile .profile-info .role-badge {
        margin: 0; }
  .nav-drawer .drawer-footer {
    order: 3; }
    .nav-drawer .drawer-footer .btn {
      padding: 0.35rem 1rem;
      font-size: 0.85rem; }
  .nav-drawer .drawer-auth-card {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none; }
    .nav-drawer .drawer-auth-card h4 {
      display: none; }
    .nav-drawer .drawer-auth-card input {
      width: 180px;
      margin: 0 !important; }
    .nav-drawer .drawer-auth-card .d-flex.flex-column {
      flex-direction: row !important;
      gap: 0.5rem !important; }
    .nav-drawer .drawer-auth-card .btn {
      padding: 0.35rem 1rem;
      font-size: 0.85rem; }

.app-view, .page-dashboard, #view-profile-wrapper, #view-license-wrapper, .page-project, .page-clip {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 70px); }

.main-content {
  padding: 1.5rem 2rem; }

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #272a5a; }
  .header .header-titles {
    display: flex;
    align-items: center;
    gap: 1rem; }
    .header .header-titles h2 {
      display: inline-block; }

.panel {
  background-color: #17193b;
  border: 1px solid #272a5a;
  border-radius: 3px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 2rem; }
  .panel .panel-title {
    position: relative;
    border-bottom: 1px solid #272a5a;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem; }
  .panel #project-member-count {
    position: absolute;
    right: 0;
    bottom: 0.5rem; }

.highlight-word {
  opacity: 1;
  transform: translateY(0);
  display: inline-block;
  position: relative;
  z-index: 10;
  color: #f8fafc;
  -webkit-text-fill-color: #f8fafc;
  /* Overrides the parent's transparent text */
  -webkit-background-clip: initial;
  /* Detaches from the parent's background clip */
  background-clip: initial;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity 0.25s ease, transform 0.25s ease; }
  .highlight-word.fading {
    opacity: 0 !important;
    transform: translateY(-10px) !important; }

.use-tip {
  display: block;
  color: #94a3b8; }

#view-landing {
  max-width: 100%;
  padding: 0;
  background-color: #0d0e24; }
  #view-landing .btn-beta-glow {
    background: linear-gradient(135deg, #7c3aed 0%, #7059f6 100%);
    color: #ffffff;
    font-weight: 700;
    border: 1px solid #c3bafb;
    box-shadow: 0 0 20px rgba(112, 89, 246, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseGlow 3s infinite alternate; }
    #view-landing .btn-beta-glow:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 0 30px rgba(112, 89, 246, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.6); }
  #view-landing .brand-logo-hero {
    height: 12em;
    max-height: 25vh;
    max-width: 100%;
    object-fit: contain; }
  #view-landing .brand-badge {
    width: 100%; }
  #view-landing .hero {
    position: relative;
    padding: 5rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top, rgba(112, 89, 246, 0.25) 0%, #0d0e24 70%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    #view-landing .hero h1 {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.25rem;
      color: #ffffff; }
      @media (min-width: 768px) {
        #view-landing .hero h1 {
          font-size: 4.5rem; } }
    #view-landing .hero .word-flipper-container {
      display: inline-block;
      min-width: 220px;
      text-align: center;
      border-bottom: 3px solid #7059f6; }
    #view-landing .hero p.tagline {
      font-size: 1.2rem;
      color: #94a3b8;
      max-width: 720px;
      margin-bottom: 2rem; }
    #view-landing .hero .btn-red-portal {
      background-color: #ef4444;
      border: 1px solid #f58a8a;
      box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
      #view-landing .hero .btn-red-portal:hover {
        background-color: #b91c1c; }
    #view-landing .hero .btn-green-portal {
      background-color: #10b981;
      border: 1px solid #29ecac;
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.4); }
      #view-landing .hero .btn-green-portal:hover {
        background-color: #047857; }
    #view-landing .hero .btn-subtext {
      display: block;
      font-size: 0.75rem;
      font-weight: 400;
      opacity: 0.85; }
    #view-landing .hero .hero-stats-bar {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 1rem 2rem;
      background: rgba(23, 25, 59, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      backdrop-filter: blur(8px); }
      #view-landing .hero .hero-stats-bar .stat-item {
        display: flex;
        flex-direction: column; }
        #view-landing .hero .hero-stats-bar .stat-item .stat-value {
          font-weight: 800;
          font-size: 1.25rem;
          color: #ffffff; }
        #view-landing .hero .hero-stats-bar .stat-item .stat-label {
          font-size: 0.75rem;
          color: #94a3b8;
          text-transform: uppercase; }
      #view-landing .hero .hero-stats-bar .stat-divider {
        width: 1px;
        height: 30px;
        background: rgba(255, 255, 255, 0.1); }
      @media (max-width: 768px) {
        #view-landing .hero .hero-stats-bar {
          flex-direction: column;
          gap: 1rem; }
          #view-landing .hero .hero-stats-bar .stat-divider {
            display: none; } }
  #view-landing .split-showcase-section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto; }
    #view-landing .split-showcase-section .split-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem; }
      @media (min-width: 769px) {
        #view-landing .split-showcase-section .split-container {
          grid-template-columns: 1fr 1fr; } }
    #view-landing .split-showcase-section .split-card {
      background: #17193b;
      border-radius: 8px;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid #272a5a;
      transition: transform 0.25s ease, box-shadow 0.25s ease; }
      #view-landing .split-showcase-section .split-card:hover {
        transform: translateY(-4px); }
      #view-landing .split-showcase-section .split-card .card-badge {
        display: inline-block;
        align-self: flex-start;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        margin-bottom: 1rem; }
      #view-landing .split-showcase-section .split-card h2 {
        font-size: 2rem;
        color: #ffffff;
        margin-bottom: 0.5rem; }
      #view-landing .split-showcase-section .split-card .card-description {
        color: #94a3b8;
        margin-bottom: 1.5rem; }
      #view-landing .split-showcase-section .split-card .feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
        flex-grow: 1; }
        #view-landing .split-showcase-section .split-card .feature-list li {
          position: relative;
          padding-left: 1.5rem;
          margin-bottom: 1rem;
          color: #94a3b8;
          font-size: 0.95rem; }
          #view-landing .split-showcase-section .split-card .feature-list li strong {
            display: block;
            color: #ffffff; }
          #view-landing .split-showcase-section .split-card .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: bold; }
      #view-landing .split-showcase-section .split-card .card-footer-action {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08); }
        #view-landing .split-showcase-section .split-card .card-footer-action .price-hint {
          font-size: 0.85rem;
          color: #94a3b8; }
          #view-landing .split-showcase-section .split-card .card-footer-action .price-hint strong {
            color: #ffffff; }
      #view-landing .split-showcase-section .split-card.card-red {
        border-top: 4px solid #ef4444; }
        #view-landing .split-showcase-section .split-card.card-red:hover {
          box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15); }
        #view-landing .split-showcase-section .split-card.card-red .card-badge {
          background: rgba(239, 68, 68, 0.15);
          color: #ef4444; }
        #view-landing .split-showcase-section .split-card.card-red .feature-list li::before {
          color: #ef4444; }
        #view-landing .split-showcase-section .split-card.card-red .btn-red-action {
          background: #ef4444; }
          #view-landing .split-showcase-section .split-card.card-red .btn-red-action:hover {
            background: #b91c1c; }
      #view-landing .split-showcase-section .split-card.card-green {
        border-top: 4px solid #10b981; }
        #view-landing .split-showcase-section .split-card.card-green:hover {
          box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15); }
        #view-landing .split-showcase-section .split-card.card-green .card-badge {
          background: rgba(16, 185, 129, 0.15);
          color: #10b981; }
        #view-landing .split-showcase-section .split-card.card-green .feature-list li::before {
          color: #10b981; }
        #view-landing .split-showcase-section .split-card.card-green .btn-green-action {
          background: #10b981; }
          #view-landing .split-showcase-section .split-card.card-green .btn-green-action:hover {
            background: #047857; }
  #view-landing .pricing-section .pricing-calculator-card {
    max-width: calc(900px - 3em);
    margin: 0 auto;
    border: 1px solid rgba(112, 89, 246, 0.4);
    background: #141634; }
  #view-landing .pricing-section .calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; }
    @media (min-width: 768px) {
      #view-landing .pricing-section .calc-grid {
        grid-template-columns: 3fr 2fr; } }
  #view-landing .pricing-section .calc-summary {
    background: #070716;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #272a5a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    #view-landing .pricing-section .calc-summary .summary-title {
      font-size: 0.85rem;
      color: #94a3b8;
      text-transform: uppercase; }
    #view-landing .pricing-section .calc-summary .total-price {
      font-size: 3rem;
      font-weight: 800;
      color: #7059f6;
      margin: 0.5rem 0; }
    #view-landing .pricing-section .calc-summary .total-breakdown {
      font-size: 0.9rem;
      color: #94a3b8; }
  #view-landing .roadmap-teaser-section .teaser-panel {
    border: 1px dashed rgba(112, 89, 246, 0.5);
    background: linear-gradient(135deg, #131430, #0d0e24); }
  #view-landing .roadmap-teaser-section .teaser-tag {
    color: #7059f6;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px; }
  #view-landing .roadmap-teaser-section .teaser-quote {
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #7059f6;
    font-style: italic;
    color: #94a3b8; }

.beta-banner-section {
  max-width: 1000px;
  margin: 3rem auto; }
  .beta-banner-section .beta-banner {
    position: relative;
    padding: 3.5rem 2rem;
    overflow: hidden;
    border: 1px solid rgba(112, 89, 246, 0.4) !important; }
    .beta-banner-section .beta-banner .banner-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(112, 89, 246, 0.2) 0%, transparent 70%);
      pointer-events: none; }
    .beta-banner-section .beta-banner h2 {
      font-size: 2.2rem;
      color: #ffffff;
      margin-bottom: 0.75rem; }
    .beta-banner-section .beta-banner p {
      color: #94a3b8;
      max-width: 600px;
      margin: 0 auto; }

#beta-modal .modal-content {
  opacity: 1 !important;
  max-width: 520px;
  padding: 0;
  margin-left: 0.75em;
  margin-right: 0.75em;
  position: relative; }
#beta-modal .status-message {
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center; }
  #beta-modal .status-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #40efb5; }
  #beta-modal .status-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #f7a2a2; }

#view-transcription progress::-webkit-progress-value {
  background: #10b981; }
#view-transcription progress::-webkit-progress-bar {
  background: #070716; }
#view-transcription .tx-stage {
  animation: fadeIn 0.3s ease; }
#view-transcription .capimo-table th {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.9rem; }
#view-transcription .capimo-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(39, 42, 90, 0.5); }
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.tx-stage {
  animation: slideFadeIn 0.3s ease forwards; }

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
#p-save::-webkit-progress-value {
  background: #10b981 !important; }

.page-home .hero {
  height: calc(100vh - 70px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: radial-gradient(circle at center, #17193b 0%, #0d0e24 100%);
  padding: 2rem; }
  .page-home .hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
  .page-home .hero p.tagline {
    font-size: 1.5rem;
    color: #94a3b8;
    margin-bottom: 2.5rem; }
.page-home .content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem; }
  .page-home .content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f8fafc; }
  .page-home .content-section p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem; }
  .page-home .content-section--alt {
    background-color: #17193b; }

.page-dashboard .projects-section {
  padding: 2rem 0; }
  .page-dashboard .projects-section #project-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem; }
.page-dashboard .tools-section {
  padding: 2rem 0; }
  .page-dashboard .tools-section h3 {
    margin-bottom: 1rem;
    color: #94a3b8; }
  .page-dashboard .tools-section .tools-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; }
  .page-dashboard .tools-section .tool-card {
    background-color: #17193b;
    border: 1px solid #272a5a;
    border-radius: 3px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
    .page-dashboard .tools-section .tool-card:hover {
      border-color: #7059f6;
      transform: translateY(-2px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25); }
      .page-dashboard .tools-section .tool-card:hover .tool-icon {
        background-color: #7059f6;
        color: white; }
    .page-dashboard .tools-section .tool-card .tool-icon {
      width: 3.5rem;
      height: 3.5rem;
      flex-shrink: 0;
      background-color: rgba(112, 89, 246, 0.15);
      color: #7059f6;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease; }
      .page-dashboard .tools-section .tool-card .tool-icon svg, .page-dashboard .tools-section .tool-card .tool-icon i {
        width: 50%;
        height: 50%; }
    .page-dashboard .tools-section .tool-card .tool-content {
      flex-grow: 1; }
      .page-dashboard .tools-section .tool-card .tool-content h4 {
        margin: 0 0 0.35rem 0;
        color: #f8fafc;
        font-size: 1.15rem; }
      .page-dashboard .tools-section .tool-card .tool-content p {
        margin: 0;
        font-size: 0.9rem;
        color: #94a3b8;
        line-height: 1.4; }
    .page-dashboard .tools-section .tool-card .tool-action {
      flex-shrink: 0; }
.page-dashboard .project-card {
  background-color: #17193b;
  border: 1px solid #272a5a;
  border-radius: 3px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  padding: 0; }
  .page-dashboard .project-card:hover {
    border-color: #272a5a;
    transform: translateY(-2px); }
  .page-dashboard .project-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid #272a5a; }
    .page-dashboard .project-card .card-header h3 {
      font-size: 1.15rem;
      color: #f8fafc;
      margin: 0;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .page-dashboard .project-card .card-header .role-badge {
      margin: 0;
      flex-shrink: 0; }
  .page-dashboard .project-card .card-body {
    padding: 1.5rem;
    flex-grow: 1; }
    .page-dashboard .project-card .card-body .project-desc {
      color: #94a3b8;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
    .page-dashboard .project-card .card-body .project-meta {
      font-size: 0.85rem;
      color: rgba(148, 163, 184, 0.7); }
  .page-dashboard .project-card .card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.15);
    border-top: 1px solid #272a5a;
    cursor: default; }
  .page-dashboard .project-card .btn-card-action {
    background: transparent;
    border: 1px solid transparent;
    color: #94a3b8;
    padding: 0.4rem 0.75rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease; }
    .page-dashboard .project-card .btn-card-action:hover {
      background-color: rgba(255, 255, 255, 0.05);
      color: #f8fafc;
      border-color: #272a5a; }
    .page-dashboard .project-card .btn-card-action.danger {
      color: rgba(239, 68, 68, 0.8); }
      .page-dashboard .project-card .btn-card-action.danger:hover {
        background-color: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        border-color: rgba(239, 68, 68, 0.3); }

#view-profile-wrapper #user-avatar-profile {
  width: 100%; }
#view-profile-wrapper .profile-layout {
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }
#view-profile-wrapper .profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem; }
  @media (max-width: 768px) {
    #view-profile-wrapper .profile-header {
      flex-direction: column;
      text-align: center;
      padding: 0; } }
#view-profile-wrapper .profile-avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-deep);
  flex-shrink: 0; }
  #view-profile-wrapper .profile-avatar-wrapper .avatar-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-deep); }
  #view-profile-wrapper .profile-avatar-wrapper .avatar-edit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem; }
    #view-profile-wrapper .profile-avatar-wrapper .avatar-edit-overlay:hover {
      opacity: 1; }
    #view-profile-wrapper .profile-avatar-wrapper .avatar-edit-overlay:disabled {
      cursor: not-allowed; }
#view-profile-wrapper .profile-meta {
  flex-grow: 1; }
  #view-profile-wrapper .profile-meta h2 {
    margin: 0 0 0.75rem 0;
    font-size: 1.8rem;
    color: var(--text-main); }
#view-profile-wrapper .license-info-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius); }
  #view-profile-wrapper .license-info-box .license-tier {
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px; }
  #view-profile-wrapper .license-info-box .license-exp {
    font-size: 0.9rem; }
#view-profile-wrapper .profile-body {
  overflow: hidden; }
#view-profile-wrapper .settings-section {
  padding: 2rem; }
  @media (max-width: 768px) {
    #view-profile-wrapper .settings-section {
      flex-direction: column;
      text-align: center;
      padding: 2rem 0 !important; } }
  #view-profile-wrapper .settings-section .section-header {
    margin-bottom: 1.5rem; }
    #view-profile-wrapper .settings-section .section-header h3 {
      margin: 0 0 0.25rem 0;
      color: var(--text-main); }
    #view-profile-wrapper .settings-section .section-header p {
      margin: 0;
      font-size: 0.95rem; }
  #view-profile-wrapper .settings-section.danger-zone {
    background-color: rgba(239, 68, 68, 0.05); }
#view-profile-wrapper .section-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 0; }
#view-profile-wrapper .preferences-grid {
  text-align: left;
  padding: 0 1.25rem; }
#view-profile-wrapper .password-strength-container {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  overflow: hidden; }
  #view-profile-wrapper .password-strength-container .strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease; }

#view-license-wrapper .license-layout {
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }
#view-license-wrapper .license-header h2, #view-license-wrapper .redeem-section h2 {
  margin-bottom: 0.25rem; }
@media (max-width: 768px) {
  #view-license-wrapper .redeem-section .d-flex {
    flex-direction: column;
    align-items: stretch; }
  #view-license-wrapper .redeem-section .text-input {
    width: 100%; }
  #view-license-wrapper .redeem-section .btn {
    width: 100%;
    margin-top: 0.5rem; } }
#view-license-wrapper #tiers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem; }
#view-license-wrapper .tier-card {
  background-color: #17193b;
  border: 1px solid #272a5a;
  border-radius: 3px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #272a5a;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
  @media (min-width: 769px) {
    #view-license-wrapper .tier-card {
      max-width: 25rem; } }
  #view-license-wrapper .tier-card:hover {
    border-color: #5b42ec;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); }
  #view-license-wrapper .tier-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #f8fafc; }
  #view-license-wrapper .tier-card .tier-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1rem; }
    #view-license-wrapper .tier-card .tier-price span {
      font-size: 1rem;
      color: #94a3b8;
      font-weight: 500; }
  #view-license-wrapper .tier-card p.text-muted {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5; }
  #view-license-wrapper .tier-card .btn {
    width: 100%;
    padding: 0.6rem 1rem; }
#view-license-wrapper .history-container {
  padding: 1.5rem;
  overflow-x: auto; }
  #view-license-wrapper .history-container .capimo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px; }
    #view-license-wrapper .history-container .capimo-table th, #view-license-wrapper .history-container .capimo-table td {
      padding: 1rem;
      text-align: left;
      border-bottom: 1px solid #272a5a; }
    #view-license-wrapper .history-container .capimo-table th {
      color: #94a3b8;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px; }
    #view-license-wrapper .history-container .capimo-table tbody tr {
      transition: background-color 0.2s ease; }
      #view-license-wrapper .history-container .capimo-table tbody tr:hover {
        background-color: rgba(255, 255, 255, 0.02); }
      #view-license-wrapper .history-container .capimo-table tbody tr:last-child td {
        border-bottom: none; }
#view-license-wrapper .license-modal {
  backdrop-filter: blur(4px); }
  #view-license-wrapper .license-modal .modal-content {
    animation: slideFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    border: 1px solid #272a5a; }
    #view-license-wrapper .license-modal .modal-content .modal-title {
      margin: 0;
      font-size: 1.5rem; }
    #view-license-wrapper .license-modal .modal-content .warning-box {
      border-radius: 3px;
      font-size: 0.95rem;
      line-height: 1.5; }
    #view-license-wrapper .license-modal .modal-content .btn-modal-cancel {
      color: #94a3b8;
      border: 1px solid transparent;
      transition: all 0.2s ease; }
      #view-license-wrapper .license-modal .modal-content .btn-modal-cancel:hover {
        color: #f8fafc;
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: #272a5a; }

.page-project .clips-panel, .page-project .media-panel {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important; }
.page-project .meta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 !important;
  background: none !important;
  border: none !important; }
  @media (min-width: 769px) {
    .page-project .meta-panel {
      flex-direction: row; } }
.page-project .speakers-panel {
  background-color: #070716;
  padding: 0 !important; }
  .page-project .speakers-panel .speakers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    height: 4rem;
    border-bottom: 1px solid #272a5a;
    background-color: #17193b; }
  .page-project .speakers-panel .speakers-list {
    display: block;
    padding: 0;
    min-height: 15rem;
    max-height: 15rem;
    overflow-y: scroll; }
  .page-project .speakers-panel .speaker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 5rem;
    cursor: pointer;
    padding: 1rem 0.75rem; }
    .page-project .speakers-panel .speaker-item:not(:first-child) {
      margin-top: -0.25rem !important; }
    .page-project .speakers-panel .speaker-item:hover {
      background-color: #13133d; }
    .page-project .speakers-panel .speaker-item .avatar-container {
      color: white;
      font-weight: bold;
      font-size: 1.2rem; }
  .page-project .speakers-panel .speakers-footer {
    display: block;
    gap: 0.5rem;
    padding: 1rem;
    height: 4rem;
    border-top: 1px solid #272a5a;
    background-color: #17193b; }
    .page-project .speakers-panel .speakers-footer .speakers-add-group {
      display: flex;
      width: 100%; }
      .page-project .speakers-panel .speakers-footer .speakers-add-group #new-speaker-name {
        flex-grow: 1;
        border-right: none !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important; }
      .page-project .speakers-panel .speakers-footer .speakers-add-group #btn-add-speaker {
        flex-shrink: 0;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important; }
    .page-project .speakers-panel .speakers-footer #btn-clear-speakers {
      display: block;
      width: 100%;
      margin-top: 1rem; }
  @media (min-width: 769px) {
    .page-project .speakers-panel {
      width: 320px;
      flex-shrink: 0; } }
.page-project .clip-card {
  background-color: #17193b;
  border: 1px solid #272a5a;
  border-radius: 3px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease; }
  .page-project .clip-card h4, .page-project .clip-card .title {
    display: block; }
  .page-project .clip-card .clip-desc {
    color: #94a3b8;
    padding: 0 1em;
    margin-bottom: 1em; }
.page-project .media-card {
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid #272a5a !important;
  transition: transform 0.3s ease, border-color 0.3s ease; }
  .page-project .media-card .player-footer {
    background: #070716;
    border-bottom: 1px solid #272a5a;
    border-top: none;
    overflow: hidden; }
  .page-project .media-card .media-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #272a5a; }
    .page-project .media-card .media-controls .left-controls {
      justify-self: start; }
    .page-project .media-card .media-controls .center-controls {
      justify-self: center; }
    .page-project .media-card .media-controls .right-controls {
      justify-self: end; }
    .page-project .media-card .media-controls .time-label {
      font-family: 'Courier New', Courier, monospace;
      font-variant-numeric: tabular-nums;
      color: #94a3b8;
      font-size: 0.9rem; }
    .page-project .media-card .media-controls button {
      background: none;
      padding: 4px; }
      .page-project .media-card .media-controls button:hover {
        background: #1e293b;
        transition: 200ms; }
      .page-project .media-card .media-controls button:active {
        background: #465975;
        transition: 200ms; }
  .page-project .media-card .card-body {
    padding: 1rem 1.5rem;
    background-color: #17193b; }
  .page-project .media-card canvas {
    background: transparent !important;
    border-radius: 0 !important;
    display: block;
    width: 100%;
    min-height: 120px; }
  .page-project .media-card .video-container {
    width: 100%;
    background: #000;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center; }
    .page-project .media-card .video-container video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      outline: none; }
.page-project .marker-panel {
  background-color: #070716;
  padding: 0 !important; }
  @media (min-width: 769px) {
    .page-project .marker-panel {
      flex-grow: 1;
      min-width: 0; } }
  .page-project .marker-panel .panel-header {
    background-color: #17193b;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem; }
    @media (min-width: 768px) {
      .page-project .marker-panel .panel-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center; } }
    .page-project .marker-panel .panel-header .marker-search-box {
      width: 100%; }
      @media (min-width: 768px) {
        .page-project .marker-panel .panel-header .marker-search-box {
          width: 250px; } }
.page-project .marker-split-view {
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 769px) {
    .page-project .marker-split-view {
      flex-direction: row;
      max-height: 17rem;
      margin-left: 1rem; } }
  .page-project .marker-split-view .marker-list-container {
    overflow-y: scroll; }
  @media (min-width: 768px) {
    .page-project .marker-split-view #marker-details-container {
      overflow-y: scroll;
      height: 100%; } }
  .page-project .marker-split-view .marker-list-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 250px;
    max-width: 100%; }
    @media (min-width: 768px) {
      .page-project .marker-split-view .marker-list-side {
        max-width: 350px; } }
  .page-project .marker-split-view .marker-list {
    max-height: 400px;
    overflow-y: auto; }
  .page-project .marker-split-view .marker-list-item {
    padding: 0.75rem 1rem;
    background-color: #17193b;
    border: 1px solid #272a5a;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease; }
    .page-project .marker-split-view .marker-list-item:hover {
      background-color: #0e0f28; }
    .page-project .marker-split-view .marker-list-item.active {
      background-color: #17193b;
      border-color: #272a5a; }
  .page-project .marker-split-view .marker-details-side {
    flex: 2;
    background-color: #17193b;
    border-radius: 3px;
    border: 1px solid #272a5a;
    padding: 1rem; }
    @media (min-width: 768px) {
      .page-project .marker-split-view .marker-details-side {
        margin-right: 1rem;
        margin-bottom: 1rem; } }

.page-clip .header {
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: -1.75rem;
  padding-top: 1.75rem;
  position: sticky;
  top: 70px;
  background-color: #0d0e24; }
.page-clip .header::before {
  height: 2em;
  width: 100%;
  display: block; }
.page-clip h3 {
  border-bottom: 1px solid #272a5a;
  margin-bottom: 0.25em;
  margin-left: -0.75em;
  margin-right: -0.75em; }
.page-clip h3:not(:first-child) {
  margin-top: 1.5em; }
.page-clip h3:first-child {
  margin-top: -0.75em; }
.page-clip .clip-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start; }
.page-clip .metadata-panel p {
  margin-bottom: 0.75rem;
  color: #94a3b8; }
.page-clip .metadata-panel strong {
  color: #f8fafc; }
.page-clip .metadata-panel .tx-speaker-names li {
  margin-left: 1.5em;
  color: #94a3b8; }
.page-clip .transcription-list p {
  margin: 0; }
  .page-clip .transcription-list p strong {
    color: #8b5cf6;
    margin-right: 0.5rem; }
.page-clip .transcription-list p:nth-child(even) {
  background-color: rgba(39, 42, 90, 0.5); }
.page-clip .transcription-list p:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0; }
@media (max-width: 768px) {
  .page-clip h3 {
    margin-left: 0;
    margin-right: 0; } }
@media (min-width: 769px) {
  .page-clip {
    max-height: calc(100cqh - 70px); }
    .page-clip .main-content {
      container-type: size;
      height: calc(100cqh - 70px); }
    .page-clip .clip-grid {
      height: calc(100cqh - 70px); }
    .page-clip .transcription-list {
      flex-grow: 1;
      overflow-y: auto;
      min-height: 0; }
    .page-clip .transcriptions-panel {
      display: flex;
      flex-direction: column;
      max-height: calc(100cqh - 70px); } }

.media-gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1em; }
  .media-gallery-layout .media-sidebar {
    display: flex;
    flex-direction: column;
    background-color: #070716;
    border: 1px solid #272a5a;
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.3s ease; }
    .media-gallery-layout .media-sidebar .sidebar-header {
      border-bottom: 1px solid #272a5a;
      background: #17193b;
      min-height: 52px;
      display: flex;
      justify-content: center;
      align-items: center;
      justify-content: flex-start; }
      .media-gallery-layout .media-sidebar .sidebar-header .sidebar-title {
        padding: 1rem 1.25rem;
        margin: 0;
        font-size: 1.05rem;
        width: 100%; }
      .media-gallery-layout .media-sidebar .sidebar-header .breadcrumb-title {
        display: flex;
        align-items: center;
        gap: 0.5rem; }
        .media-gallery-layout .media-sidebar .sidebar-header .breadcrumb-title .nav-arrow {
          cursor: pointer;
          color: #94a3b8;
          padding-right: 0.25rem;
          transition: color 0.2s; }
          .media-gallery-layout .media-sidebar .sidebar-header .breadcrumb-title .nav-arrow:hover {
            color: #f8fafc; }
        .media-gallery-layout .media-sidebar .sidebar-header .breadcrumb-title .current-media-name {
          font-weight: 400;
          color: #94a3b8;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
    .media-gallery-layout .media-sidebar .sidebar-viewport {
      flex-grow: 1;
      overflow: hidden;
      position: relative; }
    .media-gallery-layout .media-sidebar .sidebar-slider {
      display: flex;
      width: 200%;
      height: 100%;
      transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
    .media-gallery-layout .media-sidebar .sidebar-pane {
      width: 50%;
      height: 100%;
      display: flex;
      flex-direction: column; }
    .media-gallery-layout .media-sidebar .list-wrapper {
      flex-grow: 1;
      overflow-y: auto;
      flex-basis: 0;
      min-height: 250px; }
    .media-gallery-layout .media-sidebar .media-list-item {
      padding: 0.85rem 1.25rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      cursor: pointer;
      transition: background 0.3s ease, border-color 0.3s ease;
      display: flex;
      flex-direction: row;
      align-items: center; }
      .media-gallery-layout .media-sidebar .media-list-item:last-child {
        border-bottom: none; }
      .media-gallery-layout .media-sidebar .media-list-item:hover {
        background-color: rgba(255, 255, 255, 0.03); }
      .media-gallery-layout .media-sidebar .media-list-item.active {
        background-color: rgba(91, 66, 236, 0.15);
        border-left: 3px solid #5b42ec;
        padding-left: calc(1.25rem - 3px); }
      .media-gallery-layout .media-sidebar .media-list-item .media-info {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        min-width: 0; }
        .media-gallery-layout .media-sidebar .media-list-item .media-info .media-name {
          font-weight: 500;
          font-size: 0.95rem;
          color: #f8fafc;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
      .media-gallery-layout .media-sidebar .media-list-item .btn-drill-down {
        background: none;
        border: none;
        color: #94a3b8;
        font-size: 1.5rem;
        line-height: 1;
        padding: 0.25rem 0.5rem;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.2s; }
        .media-gallery-layout .media-sidebar .media-list-item .btn-drill-down:hover {
          color: #5b42ec;
          background: rgba(255, 255, 255, 0.05); }
    .media-gallery-layout .media-sidebar .media-actions {
      padding: 1rem;
      border-top: 1px solid #272a5a;
      background: #17193b; }
    .media-gallery-layout .media-sidebar.clips-mode {
      border-color: rgba(139, 92, 246, 0.4); }
      .media-gallery-layout .media-sidebar.clips-mode .sidebar-slider {
        transform: translateX(-50%); }
      .media-gallery-layout .media-sidebar.clips-mode .media-list-item.active {
        background-color: rgba(139, 92, 246, 0.15);
        border-left-color: #8b5cf6; }
      .media-gallery-layout .media-sidebar.clips-mode .btn-add-clip {
        background-color: #8b5cf6; }
        .media-gallery-layout .media-sidebar.clips-mode .btn-add-clip:hover {
          background-color: #692cf3; }
  .media-gallery-layout .media-viewer {
    display: flex;
    flex-direction: column; }
    .media-gallery-layout .media-viewer .viewer-placeholder {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      border: 1px dashed #272a5a;
      border-radius: 3px;
      background: #070716;
      text-align: center;
      padding: 2rem; }
    .media-gallery-layout .media-viewer .active-player-card {
      margin-bottom: 0;
      animation: slideFadeIn 0.3s ease forwards; }
  @media (min-width: 769px) {
    .media-gallery-layout {
      flex-direction: row;
      align-items: stretch;
      min-height: 500px; }
      .media-gallery-layout .media-sidebar {
        width: 320px;
        flex-shrink: 0; }
        .media-gallery-layout .media-sidebar .list-wrapper {
          min-height: 0; }
      .media-gallery-layout .media-viewer {
        flex-grow: 1;
        min-width: 0; }
        .media-gallery-layout .media-viewer .viewer-placeholder {
          flex-grow: 1;
          height: 100%; } }

@media (max-width: 1024px) {
  .tools-section .tools-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem; } }
@media (max-width: 768px) {
  .menu-toggle {
    display: block; }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: #17193b;
    border-left: 1px solid #272a5a;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .nav-drawer.open {
      transform: translateX(-320px); }
    .nav-drawer .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      background-color: rgba(0, 0, 0, 0.1); }
      .nav-drawer .drawer-header .drawer-title {
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #94a3b8; }
      .nav-drawer .drawer-header .btn-close {
        font-size: 1.75rem;
        line-height: 1;
        cursor: pointer;
        color: #94a3b8;
        border: none;
        background: transparent;
        transition: color 0.2s; }
        .nav-drawer .drawer-header .btn-close:hover {
          color: #ef4444; }
    .nav-drawer .nav-content {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
      overflow-y: auto; }
    .nav-drawer .drawer-profile {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem;
      background: #070716;
      border: 1px solid #272a5a;
      border-radius: 3px;
      margin-bottom: 2rem;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); }
      .nav-drawer .drawer-profile .profile-info {
        display: flex;
        flex-direction: column; }
        .nav-drawer .drawer-profile .profile-info .welcome-text {
          font-size: 1.1rem;
          color: #f8fafc; }
        .nav-drawer .drawer-profile .profile-info .role-badge {
          margin-top: 0.25rem;
          align-self: flex-start; }
    .nav-drawer .nav-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0 0 auto 0;
      padding: 0;
      list-style: none; }
      .nav-drawer .nav-links li a {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        padding: 1rem 1.25rem;
        color: #94a3b8;
        font-weight: 600;
        font-size: 1.05rem;
        border-radius: 3px;
        transition: all 0.2s ease;
        background-color: transparent; }
        .nav-drawer .nav-links li a svg {
          width: 22px;
          height: 22px;
          opacity: 0.7;
          transition: all 0.2s; }
        .nav-drawer .nav-links li a:hover, .nav-drawer .nav-links li a.active {
          color: #f8fafc;
          background-color: rgba(255, 255, 255, 0.03); }
          .nav-drawer .nav-links li a:hover svg, .nav-drawer .nav-links li a.active svg {
            color: #7059f6;
            opacity: 1;
            transform: scale(1.1); }
    .nav-drawer .drawer-footer {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05); }
    .nav-drawer .drawer-auth-card {
      display: flex;
      flex-direction: column;
      background: #070716;
      padding: 1.75rem 1.5rem;
      border-radius: 3px;
      border: 1px solid #272a5a;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); }
      .nav-drawer .drawer-auth-card input {
        width: 100%; }
      .nav-drawer .drawer-auth-card .btn-outline {
        background: transparent;
        border: 1px solid #272a5a;
        color: #94a3b8; }
        .nav-drawer .drawer-auth-card .btn-outline:hover {
          background: rgba(255, 255, 255, 0.05);
          color: #f8fafc; }

  .hero h1 {
    font-size: 3rem; }

  .page-project .project-grid,
  .page-clip .clip-grid {
    grid-template-columns: 1fr; }

  .main-content {
    padding: 1.5rem 0.75rem; }

  .panel {
    padding: 1.5em 0.75em; }

  .tools-section .tools-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem; }
  .tools-section .tool-card {
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    padding: 0.5rem !important;
    gap: 1rem !important; }
    .tools-section .tool-card .tool-icon {
      width: 4rem;
      height: 4rem;
      margin-bottom: 0.25rem;
      margin-top: 1rem; }
    .tools-section .tool-card .tool-content {
      display: flex;
      flex-direction: column; }
      .tools-section .tool-card .tool-content h4 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .tools-section .tool-card .tool-content p {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; }
    .tools-section .tool-card .tool-action {
      display: none; } }
#ltx-live-list.hide-timestamps .ltx-ts {
  display: none !important; }

#ltx-live-list.hide-speakers .ltx-spk {
  display: none !important; }

/*# sourceMappingURL=main.css.map */
