*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #15091d;
  color: #FFFFFF;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.1rem;
}

@media (max-width: 639px) {
  h3 {
    font-size: 1.2rem;
  }
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

a {
  color: #7be8e3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #ffbc13;
}

.app-container {
  display: flex;
  height: 100vh;
}
@media (max-width: 1023px) {
  .app-container {
    flex-direction: column;
  }
}

.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1001;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.2), rgba(175, 92, 255, 0.15));
  border: 2px solid rgba(123, 232, 227, 0.4);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(123, 232, 227, 0.3);
}
.sidebar-toggle .hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 5px;
}
.sidebar-toggle .hamburger-icon span {
  width: 22px;
  height: 2px;
  background-color: #7be8e3;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.sidebar-toggle:hover {
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.3), rgba(175, 92, 255, 0.25));
  border-color: rgba(123, 232, 227, 0.6);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(123, 232, 227, 0.5);
  transform: translateY(-2px);
}
.sidebar-toggle.active {
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.25), rgba(245, 11, 10, 0.15));
  border-color: rgba(255, 188, 19, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 188, 19, 0.4);
}
.sidebar-toggle.active .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sidebar-toggle.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.sidebar-toggle.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1023px) {
  .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(21, 9, 29, 0.85);
  z-index: 999;
  backdrop-filter: blur(4px);
}
@media (max-width: 1023px) {
  .sidebar-overlay.active {
    display: block;
  }
}

.sidebar {
  width: 260px;
  min-width: 260px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  border-right: 1px solid rgba(123, 232, 227, 0.15);
  position: relative;
  box-shadow: 2px 0 20px rgba(123, 232, 227, 0.1), 0 12px 28px rgba(0, 0, 0, 0.7);
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.16), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.18), transparent 55%), rgba(15, 10, 25, 0.9);
}
.sidebar .logo {
  text-align: center;
  margin-bottom: 44px;
  padding: 0 24px;
  font-size: 2.4em;
  line-height: 1;
  user-select: none;
  cursor: default;
}
.sidebar .logo .logo-wize {
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}
.sidebar .logo .logo-clip {
  font-weight: 300;
  color: #7be8e3;
  letter-spacing: 0.02em;
  position: relative;
}
.sidebar .main-nav {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
  padding: 0 20px;
}
.sidebar .main-nav .nav-link {
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 20px;
  border-radius: 20px;
  font-size: 0.95em;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 2px solid transparent;
}
.sidebar .main-nav .nav-link .nav-icon {
  font-size: 0.7em;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .main-nav .nav-link .nav-text {
  flex: 1;
}
.sidebar .main-nav .nav-link:hover {
  background-color: rgba(255, 188, 19, 0.08);
  color: #fff;
  border-color: rgba(255, 188, 19, 0.3);
  transform: translateX(2px);
  box-shadow: 0 0 20px rgba(255, 188, 19, 0.2), inset 0 0 20px rgba(255, 188, 19, 0.08);
}
.sidebar .main-nav .nav-link:hover .nav-icon {
  opacity: 1;
  color: #ffbc13;
}
.sidebar .main-nav .nav-link:hover::before {
  width: 4px;
  opacity: 1;
}
.sidebar .main-nav .nav-link.active {
  background-color: rgba(123, 232, 227, 0.12);
  color: white;
  border-color: rgba(123, 232, 227, 0.3);
  box-shadow: 0 0 20px rgba(123, 232, 227, 0.2), inset 0 0 20px rgba(123, 232, 227, 0.08);
}
.sidebar .main-nav .nav-link.active .nav-icon {
  opacity: 1;
  color: #7be8e3;
}
.sidebar .main-nav .divider {
  margin: 16px 0;
}
.sidebar .sidebar-footer {
  padding: 0 24px;
  margin-top: 24px;
}
@media (max-width: 639px) {
  .sidebar .sidebar-footer {
    display: flex;
    justify-content: end;
  }
}
.sidebar .sidebar-footer .footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 188, 19, 0.3), transparent);
  margin-bottom: 20px;
}
.sidebar .sidebar-footer #live-clock {
  text-align: center;
  font-family: "Courier New", monospace;
  font-size: 0.85em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  letter-spacing: 0.5px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1;
}
.sidebar .sidebar-footer .logout {
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    height: 100vh;
    width: 280px;
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
  }
  .sidebar.active {
    left: 0;
  }
}
@media (max-width: 639px) {
  .sidebar {
    width: 100%;
    left: -100%;
    padding: 36px 0;
  }
  .sidebar.active {
    left: 0;
  }
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 188, 19, 0.3), transparent);
  margin-bottom: 32px;
  margin-top: 32px;
}

@keyframes cyan-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(123, 232, 227, 0.6), 0 0 20px rgba(123, 232, 227, 0.4), 0 0 30px rgba(123, 232, 227, 0.2);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 20px #7be8e3, 0 0 30px rgba(123, 232, 227, 0.6), 0 0 40px rgba(123, 232, 227, 0.4), 0 0 50px rgba(123, 232, 227, 0.2);
    opacity: 0.95;
  }
}
.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background-color: #15091d;
}
.main-content .main-header {
  padding: 20px 60px 20px;
  background-color: rgba(21, 9, 29, 0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(123, 232, 227, 0.15);
  box-shadow: 0 4px 20px rgba(123, 232, 227, 0.1);
  backdrop-filter: blur(20px);
  z-index: 999;
  gap: 20px;
}
.main-content .main-header h1, .main-content .main-header h2, .main-content .main-header h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
}
.main-content .main-header h1 {
  font-size: 2.5rem;
}
.main-content .main-header h2 {
  font-size: 2rem;
  margin-bottom: 2px;
}
.main-content .main-header h3 {
  font-size: 1.5rem;
}
.main-content .main-header p {
  font-size: 0.95em;
  margin: 0;
}
.main-content .main-header .header-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 639px) {
  .main-content .main-header .header-info {
    gap: 10px;
  }
}
.main-content .main-header .header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 1023px) {
  .main-content .main-header {
    position: relative;
    padding: 16px 20px 16px 20px;
  }
}
@media (max-width: 767px) {
  .main-content .main-header {
    padding: 16px 16px 16px 16px;
    align-items: flex-start;
    gap: 12px;
  }
  .main-content .main-header h1 {
    font-size: 2rem;
  }
  .main-content .main-header h2 {
    font-size: 1.75rem;
  }
  .main-content .main-header .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 639px) {
  .main-content .main-header {
    padding: 12px 16px 12px 16px;
  }
  .main-content .main-header h1 {
    font-size: 1.75rem;
  }
  .main-content .main-header h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 479px) {
  .main-content .main-header {
    position: relative;
    padding: 16px 20px 16px 20px;
  }
  .main-content .main-header h1 {
    font-size: 1rem;
  }
  .main-content .main-header h2 {
    font-size: 1rem;
  }
  .main-content .main-header p {
    font-size: 0.75rem;
  }
  .main-content .main-header .header-actions {
    flex-direction: row;
    gap: 8px;
    width: auto;
  }
  .main-content .main-header .header-actions .btn-filled, .main-content .main-header .header-actions .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload, .uppy-Root .uppy-StatusBar-actions .main-content .main-header .header-actions .uppy-StatusBar-action--upload,
.main-content .main-header .header-actions .btn-filled-cyan,
.main-content .main-header .header-actions .btn-filled-red {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0;
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }
  .main-content .main-header .header-actions .btn-filled-cyan[data-remodal-target=modal-creator] {
    background-image: url("/images/user-circle-plus-solid-full.svg");
  }
  .main-content .main-header .header-actions #open-uploader-btn.btn-filled-cyan {
    background-image: url("/images/cloud-arrow-up-solid-full.svg");
  }
  .main-content .main-header form .btn-filled-red[type=submit] {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 0;
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/images/trash-can-solid-full.svg");
    flex-shrink: 0;
  }
  .main-content .main-header .btn-back {
    width: 32px;
    height: 32px;
    background-size: 16px 16px;
  }
}
.main-content .content-area {
  padding: 40px 60px;
  flex-grow: 1;
}
.main-content .content-area.jobs .card {
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .main-content .content-area {
    padding: 32px 40px;
  }
}
@media (max-width: 767px) {
  .main-content .content-area {
    padding: 24px 20px;
  }
}
@media (max-width: 639px) {
  .main-content .content-area {
    padding: 20px 16px;
  }
}
.main-content .card {
  margin-bottom: 32px;
}
.main-content .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 232, 227, 0.3), transparent);
  opacity: 0.5;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  flex-direction: column;
  gap: 12px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  margin-top: 10px;
}

.remodal-overlay {
  background: rgba(21, 9, 29, 0.85);
}

.remodal {
  background: #faeee0 !important;
  color: #1a1123 !important;
  max-width: 560px !important;
  border-radius: 20px !important;
  padding: 30px !important;
}
.remodal h3 {
  color: #1a1123;
  text-align: left;
  margin: 0 0 30px 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.remodal .remodal-confirm {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffbc13;
  color: #15091d;
  border: 2px solid #f9b200;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  height: 60px;
}
.remodal .remodal-confirm:hover {
  background-color: #ffc32d;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #ac7b00, 0 8px 24px rgba(255, 188, 19, 0.6);
}
.remodal .remodal-confirm:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #ac7b00, 0 3px 12px rgba(255, 188, 19, 0.4);
}
.remodal .remodal-confirm[disabled] {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(230, 230, 230, 0.7);
  box-shadow: 0 4px 0 rgba(230, 230, 230, 0.7);
  cursor: not-allowed;
  opacity: 0.6;
}
.remodal .remodal-confirm[disabled]:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: none;
}
.remodal .remodal-confirm[disabled]:active {
  transform: none;
}

.remodal-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background-color: #f50b0a;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  background-image: url("/images/xmark-regular-full.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  position: absolute;
  top: 12px;
  right: 12px;
  color: transparent;
  text-indent: -9999px;
  left: auto;
  width: 32px;
  height: 32px;
  background-size: 18px;
  z-index: 10;
}
.remodal-close:hover {
  opacity: 1;
  background-color: #c40908;
  box-shadow: 0 0 20px rgba(245, 11, 10, 0.2), inset 0 0 20px rgba(245, 11, 10, 0.2);
}

.remodal input[type=text],
.remodal input[type=url],
.remodal input[type=file],
.remodal input[type=email],
.remodal textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  color: #1a1123;
  border: 1px solid rgba(26, 17, 35, 0.2);
  transition: all 0.3s ease;
}
.remodal input[type=text]::placeholder,
.remodal input[type=url]::placeholder,
.remodal input[type=file]::placeholder,
.remodal input[type=email]::placeholder,
.remodal textarea::placeholder {
  color: rgba(26, 17, 35, 0.4);
}
.remodal input[type=text]:focus,
.remodal input[type=url]:focus,
.remodal input[type=file]:focus,
.remodal input[type=email]:focus,
.remodal textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.8);
  border-color: #ffbc13;
  box-shadow: 0 0 12px rgba(255, 188, 19, 0.4);
}

.remodal textarea {
  padding: 16px 20px;
}
.remodal textarea::-webkit-scrollbar {
  display: none;
}

@media (max-width: 767px) {
  .remodal {
    max-width: 90% !important;
    padding: 24px !important;
  }
  .remodal h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .remodal .remodal-confirm {
    height: 52px;
    font-size: 0.9rem;
  }

  .remodal-close {
    width: 28px;
    height: 28px;
    background-size: 16px;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 639px) {
  .remodal {
    max-width: 95% !important;
    padding: 20px !important;
  }
  .remodal h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .remodal .remodal-confirm {
    height: 48px;
    font-size: 0.85rem;
    padding: 14px 18px;
  }

  .modal-actions {
    gap: 10px;
  }
}
.upload-platform-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.upload-group-title {
  font-size: 0.85rem;
  font-weight: 200;
  letter-spacing: 1.5px;
  color: rgba(26, 17, 35, 0.6);
  margin: 16px 0 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(26, 17, 35, 0.15);
  text-align: left;
}
.upload-group-title:first-child {
  margin-top: 0;
}

.upload-form-container {
  width: 100%;
}
.upload-form-container form {
  margin: 0;
}

.uppy-Dashboard-overlay {
  background-color: rgba(21, 9, 29, 0.85) !important;
}

.uppy-Root {
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.uppy-Root .uppy-Dashboard-inner {
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.16), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.18), transparent 55%), rgba(15, 10, 25, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}
.uppy-Root .uppy-Dashboard-innerWrap {
  background: #faeee0;
  border-radius: 20px;
}
.uppy-Root .uppy-Dashboard-AddFiles {
  background: radial-gradient(circle at 0% 0%, rgba(175, 92, 255, 0.12), transparent 60%), radial-gradient(circle at 100% 120%, rgba(255, 188, 19, 0.1), transparent 65%), rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  border: 1.5px dashed rgba(175, 92, 255, 0.8);
  color: #FFFFFF;
  margin: 24px;
}
.uppy-Root .uppy-Dashboard-AddFiles .uppy-Dashboard-AddFiles-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #15091d;
}
.uppy-Root .uppy-Dashboard-AddFiles .uppy-Dashboard-AddFiles-title .uppy-Dashboard-browse {
  color: #af5cff;
  border: none;
}
.uppy-Root .uppy-Dashboard-AddFiles .uppy-Dashboard-AddFiles-info {
  font-size: 0.9em;
  color: #15091d;
}
.uppy-Root .uppy-Dashboard-progressindicators {
  background-color: rgba(21, 9, 29, 0);
}
.uppy-Root .uppy-Dashboard-progressBar {
  width: 100%;
  height: 6px;
  background-color: rgba(21, 9, 29, 0.15);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.uppy-Root .uppy-Dashboard-progressBar .uppy-ProgressBar-inner {
  height: 100%;
  background: linear-gradient(90deg, #7be8e3, #a6f0ec);
  border-radius: inherit;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(123, 232, 227, 0.5);
}
.uppy-Root .uppy-DashboardNote {
  color: rgba(255, 255, 255, 0.7);
}
.uppy-Root .uppy-DashboardContent-back,
.uppy-Root .uppy-DashboardContent-addMore {
  color: #f50b0a;
}
.uppy-Root .uppy-DashboardContent-back:hover,
.uppy-Root .uppy-DashboardContent-addMore:hover {
  color: #f50b0a;
}
.uppy-Root .uppy-DashboardItem {
  background-color: rgba(21, 9, 29, 0.85);
  border-radius: 8px;
  border: 1px solid rgba(123, 232, 227, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.uppy-Root .uppy-DashboardItem:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 188, 19, 0.7);
}
.uppy-Root .uppy-DashboardItem-previewInnerWrap {
  border-radius: 8px;
}
.uppy-Root .uppy-Dashboard-Item-name {
  color: #15091d;
  font-size: 0.75em;
}
.uppy-Root .uppy-Dashboard-Item-statusSize {
  color: #15091d;
}
.uppy-Root .uppy-DashboardItem-progress .uppy-StatusBar {
  background: transparent;
}
.uppy-Root .uppy-DashboardItem-progress .uppy-StatusBar .uppy-StatusBar-progressBar {
  width: 100%;
  height: 5px;
  background-color: rgba(21, 9, 29, 0.15);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.uppy-Root .uppy-DashboardItem-progress .uppy-StatusBar .uppy-StatusBar-progressBar .uppy-ProgressBar-inner {
  height: 100%;
  background: linear-gradient(90deg, #7be8e3, #a6f0ec);
  border-radius: inherit;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(123, 232, 227, 0.5);
}
.uppy-Root .uppy-StatusBar-statusPrimary {
  color: #15091d;
  margin-bottom: 6px;
  font-size: 1.1em;
}
.uppy-Root .uppy-StatusBar-statusSecondary {
  color: #15091d;
  font-size: 0.95em;
}
.uppy-Root .uppy-StatusBar:before {
  height: 6px;
  background-color: rgba(21, 9, 29, 0.15);
}
.uppy-Root .uppy-StatusBar-spinner {
  fill: #7be8e3;
}
.uppy-Root .uppy-StatusBar-progress {
  background: linear-gradient(90deg, #7be8e3, #a6f0ec);
  border-radius: inherit;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(123, 232, 227, 0.5);
  height: 8px;
}
.uppy-Root .uppy-StatusBar {
  background: none;
  border-top: 1px solid rgba(255, 188, 19, 0.3);
  color: #15091d;
  height: 66px;
}
.uppy-Root .uppy-StatusBar.is-complete {
  color: #2ff385;
}
.uppy-Root .uppy-StatusBar.is-error {
  color: #f50b0a;
}
.uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload {
  background: linear-gradient(135deg, #7be8e3, #af5cff);
  border: 0;
  box-shadow: 0 6px 18px rgba(123, 232, 227, 0.5);
}
.uppy-Root .uppy-Dashboard-tab.is-active {
  color: #ffbc13;
  border-color: #ffbc13;
}
.uppy-Root .uppy-DashboardContent-bar {
  background-color: rgba(255, 255, 255, 0);
  border: 1px dashed rgba(255, 188, 19, 0.8);
}
.uppy-Root .uppy-DashboardContent-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #15091d;
}

.toast-job-processing {
  background: #7be8e3 !important;
  box-shadow: 0 4px 12px rgba(123, 232, 227, 0.5) !important;
}

.toast-job-success {
  background: #2ff385 !important;
  box-shadow: 0 4px 12px rgba(47, 243, 133, 0.4) !important;
}

.toast-job-failed {
  background: #f50b0a !important;
  box-shadow: 0 4px 12px rgba(245, 11, 10, 0.4) !important;
}

.btn-filled, .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  height: 52px;
  border-radius: 20px;
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  box-sizing: border-box;
  border: none;
  background-color: #ffbc13;
  color: #15091d;
  border: 2px solid #f9b200;
  box-shadow: 0 4px 0 #ac7b00, 0 6px 20px rgba(255, 188, 19, 0.4);
}
.btn-filled[disabled], .uppy-Root .uppy-StatusBar-actions [disabled].uppy-StatusBar-action--upload {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-filled:hover:not([disabled]), .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload:hover:not([disabled]) {
  background-color: #ffc32d;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #ac7b00, 0 8px 24px rgba(255, 188, 19, 0.6);
  color: #15091d;
}
.btn-filled:active:not([disabled]), .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload:active:not([disabled]) {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #ac7b00, 0 3px 12px rgba(255, 188, 19, 0.4);
}
.btn-filled.btn-filled-green, .uppy-Root .uppy-StatusBar-actions .btn-filled-green.uppy-StatusBar-action--upload {
  background-color: #2ff385;
  border-color: #0cca5f;
  box-shadow: 0 4px 0 #0ab254, 0 6px 20px rgba(47, 243, 133, 0.4);
  color: #15091d;
}
.btn-filled.btn-filled-green:hover:not([disabled]), .uppy-Root .uppy-StatusBar-actions .btn-filled-green.uppy-StatusBar-action--upload:hover:not([disabled]) {
  background-color: #47f493;
  box-shadow: 0 6px 0 #0ab254, 0 8px 24px rgba(47, 243, 133, 0.6);
}
.btn-filled.btn-filled-green:active:not([disabled]), .uppy-Root .uppy-StatusBar-actions .btn-filled-green.uppy-StatusBar-action--upload:active:not([disabled]) {
  box-shadow: 0 2px 0 #0ab254, 0 3px 12px rgba(47, 243, 133, 0.4);
}
.btn-filled.btn-filled-red, .uppy-Root .uppy-StatusBar-actions .btn-filled-red.uppy-StatusBar-action--upload {
  color: #fff;
  background-color: #f50b0a;
  border-color: #ac0807;
  box-shadow: 0 4px 0 #930706, 0 6px 20px rgba(245, 11, 10, 0.4);
}
.btn-filled.btn-filled-red:hover:not([disabled]), .uppy-Root .uppy-StatusBar-actions .btn-filled-red.uppy-StatusBar-action--upload:hover:not([disabled]) {
  background-color: #f62323;
  box-shadow: 0 6px 0 #930706, 0 8px 24px rgba(245, 11, 10, 0.6);
  color: #fff;
}
.btn-filled.btn-filled-red:active:not([disabled]), .uppy-Root .uppy-StatusBar-actions .btn-filled-red.uppy-StatusBar-action--upload:active:not([disabled]) {
  box-shadow: 0 2px 0 #930706, 0 3px 12px rgba(245, 11, 10, 0.4);
  color: #fff;
}
.btn-filled.btn-filled-cyan, .uppy-Root .uppy-StatusBar-actions .btn-filled-cyan.uppy-StatusBar-action--upload {
  background-color: #7be8e3;
  border-color: #3addd5;
  box-shadow: 0 4px 0 #1eaca6, 0 6px 20px rgba(123, 232, 227, 0.5);
  color: #15091d;
}
.btn-filled.btn-filled-cyan:hover:not([disabled]), .uppy-Root .uppy-StatusBar-actions .btn-filled-cyan.uppy-StatusBar-action--upload:hover:not([disabled]) {
  background-color: #91ece8;
  box-shadow: 0 6px 0 #1eaca6, 0 8px 24px rgba(123, 232, 227, 0.7);
}
.btn-filled.btn-filled-cyan:active:not([disabled]), .uppy-Root .uppy-StatusBar-actions .btn-filled-cyan.uppy-StatusBar-action--upload:active:not([disabled]) {
  box-shadow: 0 2px 0 #1eaca6, 0 3px 12px rgba(123, 232, 227, 0.5);
}

.btn-outline, .btn-action, .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--cancel,
.uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--retry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  height: 52px;
  border-radius: 20px;
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.btn-outline[disabled], [disabled].btn-action, .uppy-Root .uppy-StatusBar-actions [disabled].uppy-StatusBar-action--cancel,
.uppy-Root .uppy-StatusBar-actions [disabled].uppy-StatusBar-action--retry {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-outline:hover:not([disabled]), .btn-action:hover:not([disabled]), .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--cancel:hover:not([disabled]),
.uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--retry:hover:not([disabled]) {
  background-color: rgba(255, 188, 19, 0.08);
  color: #fff;
  border-color: rgba(255, 188, 19, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 188, 19, 0.2), inset 0 0 20px rgba(255, 188, 19, 0.08);
}
.btn-outline:active:not([disabled]), .btn-action:active:not([disabled]), .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--cancel:active:not([disabled]),
.uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--retry:active:not([disabled]) {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 188, 19, 0.3), inset 0 0 24px rgba(255, 188, 19, 0.12);
}
.btn-outline.active, .active.btn-action, .uppy-Root .uppy-StatusBar-actions .active.uppy-StatusBar-action--cancel,
.uppy-Root .uppy-StatusBar-actions .active.uppy-StatusBar-action--retry {
  background-color: rgba(123, 232, 227, 0.12);
  color: white;
  border-color: rgba(123, 232, 227, 0.3);
  box-shadow: 0 0 20px rgba(123, 232, 227, 0.2), inset 0 0 20px rgba(123, 232, 227, 0.08);
}
.btn-outline.active:hover:not([disabled]), .active.btn-action:hover:not([disabled]), .uppy-Root .uppy-StatusBar-actions .active.uppy-StatusBar-action--cancel:hover:not([disabled]),
.uppy-Root .uppy-StatusBar-actions .active.uppy-StatusBar-action--retry:hover:not([disabled]) {
  background-color: rgba(123, 232, 227, 0.16);
  border-color: rgba(123, 232, 227, 0.4);
  box-shadow: 0 0 24px rgba(123, 232, 227, 0.3), inset 0 0 24px rgba(123, 232, 227, 0.12);
}

.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  background-image: url("/images/chevron-left-regular-full.svg");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-back:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.btn-back:active {
  transform: translateY(1px);
}

.btn-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  height: 52px;
  border-radius: 20px;
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.btn-delete[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-delete:hover:not([disabled]) {
  background-color: #f50b0a;
  border-color: #ac0807;
  color: white;
  box-shadow: 0 4px 0 #930706, 0 6px 20px rgba(245, 11, 10, 0.4);
  transform: translateY(-2px);
}
.btn-delete:active:not([disabled]) {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #930706, 0 3px 12px rgba(245, 11, 10, 0.4);
}

.main-header .btn-delete {
  color: #f50b0a;
  border-color: #f50b0a;
}

.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  height: 36px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-small:hover:not([disabled]) {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-small.btn-small-delete:hover:not([disabled]) {
  background-color: #f50b0a;
  border-color: #f50b0a;
  color: white;
  box-shadow: 0 2px 8px rgba(245, 11, 10, 0.4);
}

.platform-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  height: 52px;
  border-radius: 20px;
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  box-sizing: border-box;
  border: none;
  height: 60px;
  width: 100%;
  background-color: #ffbc13;
  color: #15091d;
  border: 2px solid #f9b200;
  box-shadow: 0 4px 0 #ac7b00, 0 6px 20px rgba(255, 188, 19, 0.4);
}
.platform-upload-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.platform-upload-btn .platform-logo {
  width: 70px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.platform-upload-btn .platform-logo[data-platform-name=fikfap] {
  background-image: url("/images/platforms/fikfap-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=xfree] {
  background-image: url("/images/platforms/xfree-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=tikporn] {
  background-image: url("/images/platforms/tikporn-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=pornhub] {
  background-image: url("/images/platforms/pornhub-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=waptap] {
  background-image: url("/images/platforms/waptap-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=erome] {
  background-image: url("/images/platforms/erome-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=sharesome] {
  background-image: url("/images/platforms/sharesome-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=spankbang] {
  background-image: url("/images/platforms/spankbang.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=xhamster] {
  background-image: url("/images/platforms/xhamster-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=xxxfollow] {
  background-image: url("/images/platforms/xxxfollow-dark.svg");
}
.platform-upload-btn .platform-logo[data-platform-name=redgifs] {
  background-image: url("/images/platforms/redgifs-dark.svg");
}
.platform-upload-btn span {
  flex: 1;
  text-align: left;
}
.platform-upload-btn:hover:not([disabled]) {
  background-color: #ffc32d;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #ac7b00, 0 8px 24px rgba(255, 188, 19, 0.6);
}
.platform-upload-btn:active:not([disabled]) {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #ac7b00, 0 3px 12px rgba(255, 188, 19, 0.4);
}
.platform-upload-btn.status-completed {
  background-color: #2ff385;
  border-color: #0cca5f;
  box-shadow: 0 4px 0 #0ab254, 0 6px 20px rgba(47, 243, 133, 0.4);
}
.platform-upload-btn.status-completed:hover {
  background-color: #47f493;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #0ab254, 0 8px 24px rgba(47, 243, 133, 0.6);
}
.platform-upload-btn.status-completed:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #0ab254, 0 3px 12px rgba(47, 243, 133, 0.4);
}
.platform-upload-btn.status-uploading {
  background-color: #7be8e3;
  border-color: #3addd5;
  box-shadow: 0 4px 0 #26d7cf, 0 6px 20px rgba(123, 232, 227, 0.4);
  cursor: not-allowed;
  opacity: 0.7;
}
.platform-upload-btn.status-uploading:hover {
  background-color: #7be8e3;
  transform: none;
}
.platform-upload-btn.status-failed {
  color: #fff;
  background-color: #f50b0a;
  border-color: #ac0807;
  box-shadow: 0 4px 0 #930706, 0 6px 20px rgba(245, 11, 10, 0.4);
}
.platform-upload-btn.status-failed:hover {
  background-color: #f62323;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #930706, 0 8px 24px rgba(245, 11, 10, 0.6);
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=fikfap] {
  background-image: url("/images/platforms/fikfap.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=xfree] {
  background-image: url("/images/platforms/xfree.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=tikporn] {
  background-image: url("/images/platforms/tikporn.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=pornhub] {
  background-image: url("/images/platforms/pornhub.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=waptap] {
  background-image: url("/images/platforms/waptap.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=erome] {
  background-image: url("/images/platforms/erome.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=sharesome] {
  background-image: url("/images/platforms/sharesome.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=spankbang] {
  background-image: url("/images/platforms/spankbang.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=xhamster] {
  background-image: url("/images/platforms/xhamster.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=xxxfollow] {
  background-image: url("/images/platforms/xxxfollow.svg");
}
.platform-upload-btn.status-failed .platform-logo[data-platform-name=redgifs] {
  background-image: url("/images/platforms/redgifs.svg");
}
.platform-upload-btn.status-disabled {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(230, 230, 230, 0.7);
  box-shadow: 0 4px 0 rgba(230, 230, 230, 0.7);
  cursor: not-allowed;
  opacity: 0.6;
}
.platform-upload-btn.status-disabled:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: none;
}
.platform-upload-btn.status-emergency-disabled {
  background-color: #ffbc13;
  border-color: #c68d00;
  box-shadow: 0 4px 0 #ac7b00;
  cursor: not-allowed;
  opacity: 0.8;
  color: #15091d;
}
.platform-upload-btn.status-emergency-disabled:hover {
  background-color: #ffbc13;
  transform: none;
}
@media (max-width: 639px) {
  .platform-upload-btn {
    height: 48px;
    font-size: 0.75rem;
    padding: 8px 12px;
  }
  .platform-upload-btn .platform-logo {
    width: 50px;
    height: 20px;
  }
  .platform-upload-btn span {
    font-size: 0.8rem;
  }
}

.filter-chip .chip-count {
  padding: 2px 8px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  font-size: 0.7em;
}

.pagination-arc {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.pagination-arc .pagination-arc-pages {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pagination-arc .pagination-arc-arrow,
.pagination-arc .pagination-arc-page {
  border-radius: 20px;
  padding: 6px 22px;
  border: 1px solid transparent;
}
.pagination-arc .pagination-arc-arrow {
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.pagination-arc .pagination-arc-arrow:hover:not(.is-disabled) {
  background-color: rgba(255, 188, 19, 0.08);
  color: #fff;
  border-color: rgba(255, 188, 19, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 188, 19, 0.2), inset 0 0 20px rgba(255, 188, 19, 0.08);
}
.pagination-arc .pagination-arc-arrow.is-disabled {
  opacity: 0.4;
  cursor: default;
}
.pagination-arc .pagination-arc-page {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s ease;
}
.pagination-arc .pagination-arc-page:hover {
  background-color: rgba(255, 188, 19, 0.08);
  color: #fff;
  border-color: rgba(255, 188, 19, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 188, 19, 0.2), inset 0 0 20px rgba(255, 188, 19, 0.08);
}
.pagination-arc .pagination-arc-page.is-active {
  background-color: rgba(123, 232, 227, 0.12);
  color: white;
  border-color: rgba(123, 232, 227, 0.3);
  box-shadow: 0 0 20px rgba(123, 232, 227, 0.2), inset 0 0 20px rgba(123, 232, 227, 0.08);
}
.pagination-arc .pagination-arc-ellipsis {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .btn-filled, .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload,
.btn-outline,
.btn-action,
.uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--cancel,
.uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--retry,
.btn-delete {
    padding: 14px 24px;
    height: 48px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .btn-back {
    width: 42px;
    height: 42px;
    background-size: 20px;
  }
}
@media (max-width: 639px) {
  .btn-filled, .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload,
.btn-outline,
.btn-action,
.uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--cancel,
.uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--retry,
.btn-delete {
    padding: 12px 20px;
    height: 44px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .btn-back {
    width: 40px;
    height: 40px;
    background-size: 18px;
  }

  .header-actions,
.modal-actions {
    flex-direction: column;
    width: 100%;
  }
  .header-actions .btn-filled, .header-actions .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload, .uppy-Root .uppy-StatusBar-actions .header-actions .uppy-StatusBar-action--upload,
.header-actions .btn-outline,
.header-actions .btn-action,
.header-actions .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--cancel,
.uppy-Root .uppy-StatusBar-actions .header-actions .uppy-StatusBar-action--cancel,
.header-actions .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--retry,
.uppy-Root .uppy-StatusBar-actions .header-actions .uppy-StatusBar-action--retry,
.header-actions .btn-delete,
.modal-actions .btn-filled,
.modal-actions .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload,
.uppy-Root .uppy-StatusBar-actions .modal-actions .uppy-StatusBar-action--upload,
.modal-actions .btn-outline,
.modal-actions .btn-action,
.modal-actions .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--cancel,
.uppy-Root .uppy-StatusBar-actions .modal-actions .uppy-StatusBar-action--cancel,
.modal-actions .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--retry,
.uppy-Root .uppy-StatusBar-actions .modal-actions .uppy-StatusBar-action--retry,
.modal-actions .btn-delete {
    width: 100%;
  }
}
.add-form {
  display: flex;
  gap: 15px;
}

input[type=text], input[type=url], input[type=file], input[type=email], input[type=number], select {
  flex-grow: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 1em;
  background-color: rgba(26, 17, 35, 0.5);
  color: #FFFFFF;
  transition: all 0.3s ease;
  font-weight: 400;
  height: 56px;
  max-width: 480px;
  line-height: 1.2;
}
input[type=text]:focus, input[type=url]:focus, input[type=file]:focus, input[type=email]:focus, input[type=number]:focus, select:focus {
  outline: none;
  border-color: #7be8e3;
  background-color: rgba(26, 17, 35, 0.8);
  box-shadow: 0 0 20px rgba(123, 232, 227, 0.5);
}
input[type=text]::placeholder, input[type=url]::placeholder, input[type=file]::placeholder, input[type=email]::placeholder, input[type=number]::placeholder, select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.arc-toggle {
  position: relative;
  display: inline-block;
  width: 52px !important;
  height: 30px;
}

.arc-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.arc-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.arc-checkbox .arc-checkbox-box {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2b3040, #141622);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
  transition: all 0.18s ease;
}
.arc-checkbox .arc-checkbox-box::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
  opacity: 0.9;
  pointer-events: none;
}
.arc-checkbox .arc-checkbox-check {
  position: absolute;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.18s ease;
  pointer-events: none;
  left: 5px;
}

.arc-checkbox input[type=checkbox]:checked ~ .arc-checkbox-box {
  background: linear-gradient(135deg, #7be8e3, #af5cff);
  box-shadow: 0 0 0 1px rgba(123, 232, 227, 0.7), 0 0 14px rgba(123, 232, 227, 0.7);
}

.arc-checkbox input[type=checkbox]:checked ~ .arc-checkbox-check {
  opacity: 1;
  transform: scale(1);
}

.arc-toggle-small {
  width: 42px;
  height: 24px;
}
.arc-toggle-small .arc-toggle-slider:before {
  height: 18px;
  width: 18px;
  top: 3px;
  left: 3px;
}

.arc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.arc-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b3040, #141622);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}
.arc-toggle-slider::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
  opacity: 0.9;
  pointer-events: none;
}

.arc-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease;
}

.arc-toggle input:checked + .arc-toggle-slider {
  background: linear-gradient(135deg, #7be8e3, #af5cff);
  box-shadow: 0 0 0 1px rgba(123, 232, 227, 0.7), 0 0 18px rgba(123, 232, 227, 0.7);
}

.arc-toggle input:checked + .arc-toggle-slider::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.35));
}

.arc-toggle input:checked + .arc-toggle-slider:before {
  transform: translateX(22px);
}

.arc-toggle.arc-toggle-small input:checked + .arc-toggle-slider:before {
  transform: translateX(18px);
}

textarea {
  border-radius: 12px;
}

@media (max-width: 767px) {
  input[type=text],
input[type=email],
input[type=password],
input[type=url],
input[type=number],
textarea,
select {
    font-size: 16px;
    padding: 12px 16px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
}
@media (max-width: 639px) {
  input[type=text],
input[type=email],
input[type=password],
input[type=url],
input[type=number],
textarea,
select {
    padding: 10px 14px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  .form-row .form-group {
    width: 100%;
  }
}
.creator-card,
.creator-card-modern,
.original-video-card,
.clip-card {
  background-color: #faeee0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.creator-card:hover,
.creator-card-modern:hover,
.original-video-card:hover,
.clip-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(123, 232, 227, 0.5);
}

.creator-card .creator-name,
.creator-card .video-details h4,
.creator-card h4,
.creator-card-modern .creator-name,
.creator-card-modern .video-details h4,
.creator-card-modern h4,
.original-video-card .creator-name,
.original-video-card .video-details h4,
.original-video-card h4,
.clip-card .creator-name,
.clip-card .video-details h4,
.clip-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1a1123;
}

.creator-card .video-details .progress-bar-creator,
.creator-card .creator-progress .progress-bar-creator,
.creator-card .progress-bar-creator,
.creator-card .progress-bar-mini,
.creator-card-modern .video-details .progress-bar-creator,
.creator-card-modern .creator-progress .progress-bar-creator,
.creator-card-modern .progress-bar-creator,
.creator-card-modern .progress-bar-mini,
.original-video-card .video-details .progress-bar-creator,
.original-video-card .creator-progress .progress-bar-creator,
.original-video-card .progress-bar-creator,
.original-video-card .progress-bar-mini,
.clip-card .video-details .progress-bar-creator,
.clip-card .creator-progress .progress-bar-creator,
.clip-card .progress-bar-creator,
.clip-card .progress-bar-mini {
  width: 100%;
  height: 8px;
  background-color: rgba(21, 9, 29, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.creator-card .video-details .progress-bar-creator .progress-fill-creator,
.creator-card .video-details .progress-bar-creator .progress-fill-mini,
.creator-card .creator-progress .progress-bar-creator .progress-fill-creator,
.creator-card .creator-progress .progress-bar-creator .progress-fill-mini,
.creator-card .progress-bar-creator .progress-fill-creator,
.creator-card .progress-bar-creator .progress-fill-mini,
.creator-card .progress-bar-mini .progress-fill-creator,
.creator-card .progress-bar-mini .progress-fill-mini,
.creator-card-modern .video-details .progress-bar-creator .progress-fill-creator,
.creator-card-modern .video-details .progress-bar-creator .progress-fill-mini,
.creator-card-modern .creator-progress .progress-bar-creator .progress-fill-creator,
.creator-card-modern .creator-progress .progress-bar-creator .progress-fill-mini,
.creator-card-modern .progress-bar-creator .progress-fill-creator,
.creator-card-modern .progress-bar-creator .progress-fill-mini,
.creator-card-modern .progress-bar-mini .progress-fill-creator,
.creator-card-modern .progress-bar-mini .progress-fill-mini,
.original-video-card .video-details .progress-bar-creator .progress-fill-creator,
.original-video-card .video-details .progress-bar-creator .progress-fill-mini,
.original-video-card .creator-progress .progress-bar-creator .progress-fill-creator,
.original-video-card .creator-progress .progress-bar-creator .progress-fill-mini,
.original-video-card .progress-bar-creator .progress-fill-creator,
.original-video-card .progress-bar-creator .progress-fill-mini,
.original-video-card .progress-bar-mini .progress-fill-creator,
.original-video-card .progress-bar-mini .progress-fill-mini,
.clip-card .video-details .progress-bar-creator .progress-fill-creator,
.clip-card .video-details .progress-bar-creator .progress-fill-mini,
.clip-card .creator-progress .progress-bar-creator .progress-fill-creator,
.clip-card .creator-progress .progress-bar-creator .progress-fill-mini,
.clip-card .progress-bar-creator .progress-fill-creator,
.clip-card .progress-bar-creator .progress-fill-mini,
.clip-card .progress-bar-mini .progress-fill-creator,
.clip-card .progress-bar-mini .progress-fill-mini {
  height: 100%;
  background: linear-gradient(90deg, #7be8e3, #a6f0ec);
  border-radius: inherit;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(123, 232, 227, 0.5);
}

.stat-mini {
  text-align: center;
  padding: 10px;
  background-color: rgba(21, 9, 29, 0.08);
  border-radius: 20px;
}
.stat-mini .stat-mini-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1123;
  line-height: 1.2;
  height: 28px;
}
.stat-mini .stat-mini-label {
  display: block;
  font-size: 0.7em;
  color: rgba(26, 17, 35, 0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 10px 0;
}

.creators-overview-card {
  margin-bottom: 24px;
}

.creator-filter-panel {
  padding: 20px 0 0;
}

.filter-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 400px;
}

.filter-label {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.filter-toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.creator-card-modern {
  display: flex;
  flex-direction: column;
  padding: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.12), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.1), transparent 55%), #faeee0;
  border-radius: 20px;
  border: 1px solid rgba(26, 17, 35, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.creator-card-modern:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(123, 232, 227, 0.5);
}
.creator-card-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  border-color: rgba(123, 232, 227, 0.25);
}
.creator-card-modern .creator-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.creator-card-modern .creator-owner {
  color: rgba(26, 17, 35, 0.7);
  text-align: center;
  padding: 10px 0;
}
.creator-card-modern .creator-owner .creator-owner-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.7em;
  margin-bottom: 2px;
  color: rgba(26, 17, 35, 0.6);
}
.creator-card-modern .creator-owner .creator-owner-email {
  font-weight: 500;
  word-break: break-all;
  font-size: 0.9em;
}
.creator-card-modern .creator-thumbnail {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #15091d;
  position: relative;
  border-radius: 20px;
}
.creator-card-modern .creator-thumbnail:before {
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.25), transparent 60%), radial-gradient(circle at 100% 120%, rgba(175, 92, 255, 0.28), transparent 60%);
  bottom: 0;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 2;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.creator-card-modern .creator-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 3;
}
.creator-card-modern .creator-thumbnail .thumbnail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9em;
}
.creator-card-modern .creator-thumbnail .creator-thumbnail-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.25);
  background-image: url("/images/loading.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64px 64px;
  transition: opacity 0.2s ease-out;
}
.creator-card-modern .creator-thumbnail img[data-loaded=true] ~ .creator-thumbnail-loading {
  opacity: 0;
  pointer-events: none;
}
.creator-card-modern:hover .creator-thumbnail img {
  transform: scale(1.06);
}
.creator-card-modern .creator-info {
  padding: 18px 4px 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.creator-card-modern .creator-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #1a1123;
  letter-spacing: -0.01em;
}
.creator-card-modern .creator-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.creator-card-modern .stat-mini {
  text-align: center;
  padding: 10px;
  background-color: rgba(21, 9, 29, 0.08);
  border-radius: 20px;
  background-color: rgba(21, 9, 29, 0.03);
  border: 1px solid rgba(26, 17, 35, 0.16);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.creator-card-modern .stat-mini .stat-mini-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1123;
  line-height: 1.2;
  height: 28px;
}
.creator-card-modern .stat-mini .stat-mini-label {
  display: block;
  font-size: 0.7em;
  color: rgba(26, 17, 35, 0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.creator-card-modern .stat-mini .stat-mini-value.cost {
  color: #1a1123;
}
.creator-card-modern .creator-progress {
  margin-top: auto;
  padding: 10px 12px 12px;
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(175, 92, 255, 0.12), transparent 60%), radial-gradient(circle at 100% 120%, rgba(255, 188, 19, 0.1), transparent 65%), rgba(0, 0, 0, 0.03);
}
.creator-card-modern .creator-progress .progress-label {
  font-size: 0.7em;
  color: rgba(26, 17, 35, 0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: left;
  font-weight: 600;
}
.creator-card-modern .creator-progress .progress-bar-creator {
  width: 100%;
  height: 8px;
  background-color: rgba(21, 9, 29, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  height: 7px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.12);
}
.creator-card-modern .creator-progress .progress-bar-creator .progress-fill-creator {
  height: 100%;
  background: linear-gradient(90deg, #7be8e3, #a6f0ec);
  border-radius: inherit;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(123, 232, 227, 0.5);
  background: #af5cff;
  box-shadow: 0 0 10px rgba(175, 92, 255, 0.45);
}
.creator-card-modern .creator-progress .progress-text {
  font-size: 0.75em;
  color: rgba(26, 17, 35, 0.7);
  margin-top: 6px;
  text-align: left;
}
.creator-card-modern .creator-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(21, 9, 29, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}
.creator-card-modern .creator-platforms-compact .platforms-count {
  font-size: 0.85em;
  color: rgba(26, 17, 35, 0.6);
}
.creator-card-modern .btn-delete-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(21, 9, 29, 0.2);
  color: rgba(26, 17, 35, 0.6);
  font-size: 20px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.creator-card-modern .btn-delete-mini:hover {
  background-color: #f50b0a;
  border-color: #f50b0a;
  color: white;
  box-shadow: 0 4px 16px rgba(245, 11, 10, 0.4);
}

@media (max-width: 1023px) {
  .creators-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .creators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .creator-card-modern .creator-thumbnail {
    height: 240px;
  }
  .creator-card-modern .creator-name {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .creator-card-modern .creator-info {
    padding: 14px 4px 4px;
  }
}
@media (max-width: 639px) {
  .creators-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .creator-card-modern .creator-thumbnail {
    height: 200px;
  }
  .creator-card-modern .stat-mini {
    padding: 8px;
  }
  .creator-card-modern .stat-mini .stat-mini-value {
    font-size: 1rem;
    height: 24px;
  }
  .creator-card-modern .stat-mini .stat-mini-label {
    font-size: 0.65rem;
  }

  .filter-toggle-row {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .filter-toggle-row::-webkit-scrollbar {
    display: none;
  }
  .filter-toggle-row .filter-chip {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .filter-toggle-row .filter-chip .chip-email {
    font-size: 0.8rem;
  }
}
.creator-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.creator-overview-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.creator-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  flex: 1;
}
.creator-overview-grid .stat-item {
  position: relative;
  padding: 16px 18px;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.16), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.18), transparent 55%), rgba(15, 10, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
  text-align: left;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}
.creator-overview-grid .stat-item:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.35), rgba(175, 92, 255, 0.3));
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.2s ease-out;
}
.creator-overview-grid .stat-item .stat-label {
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.creator-overview-grid .stat-item .stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.creator-overview-grid .stat-item .stat-value.cost {
  color: #7be8e3;
  text-shadow: 0 0 10px rgba(123, 232, 227, 0.6);
}

.platform-sessions-list {
  margin-top: 32px;
}
.platform-sessions-list .sessions-title {
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.platform-sessions-list .sessions-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inactive-sessions-list .inactive-session-item, .failed-uploads-list .inactive-session-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inactive-sessions-list .sessions-grid, .failed-uploads-list .sessions-grid {
  gap: 12px;
}

.session-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  height: 52px;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  font-weight: 700;
}
.session-badge .platform-logo-small {
  width: 70px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.session-badge .platform-logo-small[data-platform-name=fikfap] {
  background-image: url("/images/platforms/fikfap.svg");
}
.session-badge .platform-logo-small[data-platform-name=xfree] {
  background-image: url("/images/platforms/xfree.svg");
}
.session-badge .platform-logo-small[data-platform-name=tikporn] {
  background-image: url("/images/platforms/tikporn.svg");
}
.session-badge .platform-logo-small[data-platform-name=pornhub] {
  background-image: url("/images/platforms/pornhub.svg");
}
.session-badge .platform-logo-small[data-platform-name=waptap] {
  background-image: url("/images/platforms/waptap.svg");
}
.session-badge .platform-logo-small[data-platform-name=erome] {
  background-image: url("/images/platforms/erome.svg");
}
.session-badge .platform-logo-small[data-platform-name=sharesome] {
  background-image: url("/images/platforms/sharesome.svg");
}
.session-badge .platform-logo-small[data-platform-name=spankbang] {
  background-image: url("/images/platforms/spankbang.svg");
}
.session-badge .platform-logo-small[data-platform-name=xhamster] {
  background-image: url("/images/platforms/xhamster.svg");
}
.session-badge .platform-logo-small[data-platform-name=xxxfollow] {
  background-image: url("/images/platforms/xxxfollow.svg");
}
.session-badge .platform-logo-small[data-platform-name=redgifs] {
  background-image: url("/images/platforms/redgifs.svg");
}
.session-badge .session-indicator {
  font-size: 10px;
  line-height: 1;
  transition: all 0.3s ease;
}
.session-badge .session-label {
  font-size: 0.75rem;
  opacity: 0.75;
}

.session-badge.session-active {
  color: #2ff385;
  background: linear-gradient(135deg, rgba(47, 243, 133, 0.15), rgba(47, 243, 133, 0.08));
  border-color: rgba(47, 243, 133, 0.4);
  box-shadow: 0 0 20px rgba(47, 243, 133, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.session-badge.session-active .session-indicator {
  color: #2ff385;
  text-shadow: 0 0 8px #2ff385;
  animation: pulse-green 2s ease-in-out infinite;
}
.session-badge.session-active:hover {
  transform: translateY(-2px);
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15);
}

.session-badge.session-inactive {
  color: #f50b0a;
  background: linear-gradient(135deg, rgba(245, 11, 10, 0.15), rgba(245, 11, 10, 0.08));
  border-color: rgba(245, 11, 10, 0.4);
  box-shadow: 0 0 20px rgba(245, 11, 10, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.session-badge.session-inactive .platform-logo-small {
  filter: grayscale(100%) brightness(0.6);
}
.session-badge.session-inactive .session-indicator {
  color: #f50b0a;
  text-shadow: 0 0 8px #f50b0a;
  animation: pulse-green 2s ease-in-out infinite;
}
.session-badge.session-inactive:hover {
  transform: translateY(-2px);
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15);
}

.session-badge.session-failed {
  color: #ffbc13;
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.15), rgba(255, 188, 19, 0.08));
  border-color: rgba(255, 188, 19, 0.4);
  box-shadow: 0 0 20px rgba(255, 188, 19, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.session-badge.session-failed .platform-logo-small {
  filter: grayscale(100%) brightness(0.6);
}
.session-badge.session-failed .session-indicator {
  color: #ffbc13;
  text-shadow: 0 0 8px #ffbc13;
  animation: pulse-green 2s ease-in-out infinite;
}
.session-badge.session-failed:hover {
  transform: translateY(-2px);
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15);
}

@keyframes pulse-green {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}
.progress-circle-container {
  flex-shrink: 0;
  text-align: center;
}
.progress-circle-container .progress-circle-label {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.progress-circle-container .progress-circle-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0%, rgba(123, 232, 227, 0.25), transparent 55%), radial-gradient(circle at 80% 120%, rgba(175, 92, 255, 0.3), transparent 55%), rgba(0, 0, 0, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 24px rgba(123, 232, 227, 0.35);
}
.progress-circle-container .progress-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.progress-circle-container .progress-circle-bg {
  fill: none;
  stroke: rgba(123, 232, 227, 0.18);
  stroke-width: 9;
}
.progress-circle-container .progress-circle-fill {
  fill: none;
  stroke: url(#creator-progress-gradient);
  stroke-width: 9;
  stroke-linecap: round;
  transition: stroke-dasharray 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.progress-circle-container .progress-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.progress-circle-container .progress-circle-text .progress-percent {
  display: block;
  font-size: 1.9rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 0 12px rgba(123, 232, 227, 0.6);
}
.progress-circle-container .progress-circle-text .progress-details {
  display: block;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-close-platforms {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background-color: #f50b0a;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  background-image: url("/images/xmark-regular-full.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
}
.btn-close-platforms:hover {
  opacity: 1;
  background-color: #c40908;
  box-shadow: 0 0 20px rgba(245, 11, 10, 0.2), inset 0 0 20px rgba(245, 11, 10, 0.2);
}
.btn-close-platforms:hover {
  background-color: #f50b0a;
  border-color: #f50b0a;
  color: white;
  box-shadow: 0 4px 16px rgba(245, 11, 10, 0.4);
}

.creator-card {
  background-color: rgba(26, 16, 35, 0.8);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}
.creator-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(123, 232, 227, 0.5);
}
.creator-card .thumbnail-link {
  flex-shrink: 0;
}
.creator-card img, .creator-card .thumbnail-placeholder {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  background-color: #333;
}
.creator-card .thumbnail-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
}
.creator-card .creator-details {
  flex-grow: 1;
}
.creator-card .creator-details h3 a {
  color: #FFFFFF;
  font-size: 1.3em;
}
.creator-card .creator-details h3 a:hover {
  text-decoration: none;
}
.creator-card .creator-stats {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
}
.creator-card .creator-stats span.cost {
  color: #7be8e3;
  font-weight: 600;
}
.creator-card .creator-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.creator-card .creator-platforms .platform-btn {
  background-color: #7be8e3;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(123, 232, 227, 0.2);
  transition: all 0.2s ease;
}
.creator-card .creator-platforms .platform-btn:hover {
  background-color: #65e4de;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(123, 232, 227, 0.3);
}
.creator-card .creator-actions {
  margin-left: auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.platform-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}
.platform-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.35), rgba(175, 92, 255, 0.3));
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.2s ease-out;
}
.platform-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 16px rgba(123, 232, 227, 0.4);
  border-color: rgba(123, 232, 227, 0.55);
}
.platform-card:hover:before {
  opacity: 0.4;
}
.platform-card .platform-link {
  flex-grow: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.platform-card .platform-card-actions {
  padding: 0 24px 24px;
}
.platform-card .btn-manage-session {
  width: 100%;
}
.platform-card .platform-logo {
  flex-shrink: 0;
  width: 80px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.platform-card .platform-logo[data-platform-name=fikfap] {
  background-image: url("/images/platforms/fikfap.svg");
}
.platform-card .platform-logo[data-platform-name=xfree] {
  background-image: url("/images/platforms/xfree.svg");
}
.platform-card .platform-logo[data-platform-name=tikporn] {
  background-image: url("/images/platforms/tikporn.svg");
}
.platform-card .platform-logo[data-platform-name=pornhub] {
  background-image: url("/images/platforms/pornhub.svg");
}
.platform-card .platform-logo[data-platform-name=waptap] {
  background-image: url("/images/platforms/waptap.svg");
}
.platform-card .platform-logo[data-platform-name=erome] {
  background-image: url("/images/platforms/erome.svg");
}
.platform-card .platform-logo[data-platform-name=sharesome] {
  background-image: url("/images/platforms/sharesome.svg");
}
.platform-card .platform-logo[data-platform-name=spankbang] {
  background-image: url("/images/platforms/spankbang.svg");
}
.platform-card .platform-logo[data-platform-name=xhamster] {
  background-image: url("/images/platforms/xhamster.svg");
}
.platform-card .platform-logo[data-platform-name=xxxfollow] {
  background-image: url("/images/platforms/xxxfollow.svg");
}
.platform-card .platform-logo[data-platform-name=redgifs] {
  background-image: url("/images/platforms/redgifs.svg");
}
.platform-card .platform-info {
  overflow: hidden;
}
.platform-card .platform-name {
  display: block;
  font-weight: 600;
  color: #FFFFFF;
  font-size: 1.1em;
}
.platform-card .platform-url {
  display: block;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.platform-card .btn-delete-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background-color: #f50b0a;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  background-image: url("/images/xmark-regular-full.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  position: absolute;
  top: 8px;
  right: 8px;
}
.platform-card .btn-delete-icon:hover {
  opacity: 1;
  background-color: #c40908;
  box-shadow: 0 0 20px rgba(245, 11, 10, 0.2), inset 0 0 20px rgba(245, 11, 10, 0.2);
}

.modal-instructions {
  font-weight: 600;
  color: rgba(26, 16, 35, 0.8);
  margin-bottom: 5px;
  align-self: flex-start;
  text-align: left;
}

.platform-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  margin-bottom: 20px;
}

.platform-radio-label {
  position: relative;
  cursor: pointer;
}
.platform-radio-label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.platform-radio-label .platform-radio-card {
  background-color: #15091d;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}
.platform-radio-label .platform-radio-card .platform-logo {
  width: 70px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=fikfap] {
  background-image: url("/images/platforms/fikfap.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=xfree] {
  background-image: url("/images/platforms/xfree.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=tikporn] {
  background-image: url("/images/platforms/tikporn.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=pornhub] {
  background-image: url("/images/platforms/pornhub.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=waptap] {
  background-image: url("/images/platforms/waptap.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=erome] {
  background-image: url("/images/platforms/erome.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=sharesome] {
  background-image: url("/images/platforms/sharesome.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=spankbang] {
  background-image: url("/images/platforms/spankbang.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=xhamster] {
  background-image: url("/images/platforms/xhamster.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=xxxfollow] {
  background-image: url("/images/platforms/xxxfollow.svg");
}
.platform-radio-label .platform-radio-card .platform-logo[data-platform-name=redgifs] {
  background-image: url("/images/platforms/redgifs.svg");
}
.platform-radio-label .platform-radio-card .platform-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
}
.platform-radio-label input[type=radio]:checked + .platform-radio-card {
  border-color: #2ff385;
  background-color: rgba(21, 9, 29, 0.8);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(47, 243, 133, 0.3), 0 4px 12px rgba(47, 243, 133, 0.25);
}
.platform-radio-label.is-linked {
  cursor: not-allowed;
}
.platform-radio-label.is-linked .platform-radio-card {
  border-color: #2ff385;
  background-color: rgba(47, 243, 133, 0.08);
  position: relative;
}

.original-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1400px) {
  .original-videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .original-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .original-videos-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.original-video-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 220px;
  padding: 6px;
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.12), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.1), transparent 55%), #faeee0;
  border-radius: 20px;
  border: 1px solid rgba(26, 17, 35, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.original-video-card .card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.original-video-card .thumbnail-wrapper {
  height: 380px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #15091d;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.original-video-card .thumbnail-wrapper:before {
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.25), transparent 60%), radial-gradient(circle at 100% 120%, rgba(175, 92, 255, 0.28), transparent 60%);
  bottom: 0;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 2;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.original-video-card .thumbnail-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.original-video-card .thumbnail-wrapper .original-video-thumbnail-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.25);
  background-image: url("/images/loading.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64px 64px;
  transition: opacity 0.2s ease-out;
}
.original-video-card .thumbnail-wrapper img[data-loaded=true] ~ .original-video-thumbnail-loading {
  opacity: 0;
  pointer-events: none;
}
.original-video-card .thumbnail-wrapper.loading-state img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.original-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  border-color: rgba(123, 232, 227, 0.25);
}
.original-video-card:hover .thumbnail-wrapper img {
  transform: scale(1.06);
}
.original-video-card .video-details {
  padding: 18px 4px 4px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.original-video-card .video-details h4 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #1a1123;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.original-video-card .video-details .video-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.original-video-card .video-details .progress-label {
  font-size: 0.7em;
  color: rgba(26, 17, 35, 0.7);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: left;
  font-weight: 600;
}
.original-video-card .video-details .creator-progress.video-progress {
  padding: 10px 12px 12px;
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(175, 92, 255, 0.12), transparent 60%), radial-gradient(circle at 100% 120%, rgba(255, 188, 19, 0.1), transparent 65%), rgba(0, 0, 0, 0.03);
}
.original-video-card .video-details .video-progress-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.original-video-card .video-details .video-progress-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78em;
  color: rgba(26, 17, 35, 0.7);
  justify-content: flex-end;
}
.original-video-card .video-details .video-progress-percent {
  font-weight: 600;
}
.original-video-card .video-details .video-progress-count {
  opacity: 0.85;
}
.original-video-card .video-details .creator-progress.video-progress .progress-bar-creator {
  width: 100%;
  height: 8px;
  background-color: rgba(21, 9, 29, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  height: 7px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.12);
}
.original-video-card .video-details .creator-progress.video-progress .progress-bar-creator .progress-fill-creator {
  height: 100%;
  background: linear-gradient(90deg, #7be8e3, #a6f0ec);
  border-radius: inherit;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(123, 232, 227, 0.5);
  background: #af5cff;
  box-shadow: 0 0 10px rgba(175, 92, 255, 0.45);
}
.original-video-card .video-details .creator-progress.video-progress .progress-text {
  font-size: 0.75em;
  color: rgba(26, 17, 35, 0.7);
  margin-top: 6px;
  text-align: left;
}
.original-video-card .stat-mini {
  background-color: rgba(21, 9, 29, 0.03);
  border: 1px solid rgba(26, 17, 35, 0.16);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.original-video-card .stat-mini--success {
  background: linear-gradient(135deg, rgba(47, 243, 133, 0.1), rgba(255, 188, 19, 0.05));
  border-color: rgba(47, 243, 133, 0.5);
}
.original-video-card .stat-mini--success .stat-mini-value {
  color: #2ff385;
}
.original-video-card .stat-mini--warning {
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.08), rgba(245, 11, 10, 0.03));
  border-color: rgba(255, 188, 19, 0.4);
}
.original-video-card .stat-mini--warning .stat-mini-value {
  color: #ffbc13;
}

.creator-controls-card {
  margin-bottom: 54px !important;
}
@media (max-width: 479px) {
  .creator-controls-card {
    margin-bottom: 34px !important;
  }
}
.creator-controls-card .creator-controls-header {
  margin-bottom: 18px;
}
.creator-controls-card .creator-controls-header h3 {
  margin: 0 0 4px 0;
}
.creator-controls-card .creator-controls-header .creator-controls-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.creator-controls-card .creator-controls-tabs {
  display: flex;
  gap: 12px;
}
.creator-controls-card .creator-tab-button {
  display: flex;
  font-size: 0.85rem;
  align-items: center;
  gap: 10px;
}
.creator-controls-card .creator-tab-button .creator-tab-label {
  color: #FFFFFF;
  font-weight: 600;
}
.creator-controls-card .creator-tab-button .creator-tab-meta {
  font-size: 0.75rem;
  opacity: 0.75;
}
.creator-controls-card .creator-controls-panels {
  margin-top: 18px;
}
.creator-controls-card .creator-controls-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .creator-controls-card .creator-controls-row {
    grid-template-columns: 1fr;
  }
}
.creator-controls-card .creator-controls-section {
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.16), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.18), transparent 55%), rgba(15, 10, 25, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}
@media (max-width: 639px) {
  .creator-controls-card .creator-controls-section {
    padding: 16px;
  }
}
.creator-controls-card .creator-controls-section .creator-settings-grid {
  margin-bottom: 0;
}
.creator-controls-card .creator-controls-section--proxies {
  margin-top: 20px;
  overflow: hidden;
}
.creator-controls-card .creator-controls-section--ai {
  margin-top: 24px;
}
.creator-controls-card .creator-controls-section-header {
  margin-bottom: 16px;
}
.creator-controls-card .creator-controls-section-header h4 {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}
.creator-controls-card .creator-controls-section-header p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.proxy-help-text {
  margin-top: 6px;
}

.mono-text-masked {
  letter-spacing: 0.18em;
}

.controls-subtabs {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 24px;
}

.controls-subtab-button {
  padding-inline: 18px;
  height: 40px;
  font-size: 0.85rem;
}

.controls-subpanel {
  margin-top: 6px;
}

.session-helper {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.session-helper .session-helper-os-card[hidden] {
  display: none !important;
}
.session-helper-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
  margin-bottom: 32px;
}
.session-helper-download:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 16px rgba(123, 232, 227, 0.4);
  border-color: rgba(123, 232, 227, 0.55);
}
.session-helper-download:hover:before {
  opacity: 0.4;
}
.session-helper-download-text {
  max-width: 620px;
}
.session-helper-download-text h5 {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
.session-helper-download-text p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.session-helper-download .btn-filled, .session-helper-download .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload, .uppy-Root .uppy-StatusBar-actions .session-helper-download .uppy-StatusBar-action--upload {
  white-space: nowrap;
}
.session-helper-download code {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 900px) {
  .session-helper-download {
    flex-direction: column;
    align-items: flex-start;
  }
}
.session-helper-os-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.session-helper-os-switch {
  display: inline-flex;
  gap: 12px;
}
.session-helper-os-switch .windows {
  background-image: url("/images/windows-brands-solid-full.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 24px;
  padding: 16px 28px 16px 58px;
}
.session-helper-os-switch .macos {
  background-image: url("/images/apple-brands-solid-full.svg");
  background-repeat: no-repeat;
  background-size: 26px;
  background-position: 24px;
  padding: 16px 28px 16px 56px;
}
.session-helper-os-button-sub {
  font-size: 0.75rem;
  opacity: 0.7;
}
.session-helper-os-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1200px) {
  .session-helper-os-grid {
    grid-template-columns: 1fr;
  }
}
.session-helper-os-card {
  position: relative;
  padding: 22px 22px 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
  margin-top: 12px;
}
.session-helper-os-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 16px rgba(123, 232, 227, 0.4);
  border-color: rgba(123, 232, 227, 0.55);
}
.session-helper-os-card:hover:before {
  opacity: 0.4;
}
.session-helper-os-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.session-helper-os-logo {
  width: 40px;
  height: 40px;
}
.session-helper-os-logo--windows {
  background-image: url("/images/windows-brands-solid-full.svg");
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
}
.session-helper-os-logo--macos {
  background-image: url("/images/apple-brands-solid-full.svg");
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
}
.session-helper-os-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
.session-helper-os-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}
.session-helper-steps {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #FFFFFF;
  line-height: 1.7;
}
.session-helper-steps > li {
  margin-bottom: 8px;
}
.session-helper-steps > li::marker {
  color: #7be8e3;
  font-weight: 600;
}
.session-helper-steps > li strong {
  color: #FFFFFF;
}
.session-helper-steps > li ul {
  margin: 4px 0 0;
  padding-left: 18px;
  list-style: disc;
}
.session-helper-steps > li ul li {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
}
.session-helper-steps code {
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.status-tab-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-tab-button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-tab-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: none !important;
}

.status-tab-disabled::before {
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.2) !important;
}

.status-tab-failed {
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.15), rgba(255, 188, 19, 0.08));
  border-color: rgba(255, 188, 19, 0.4);
  color: #ffbc13;
  box-shadow: 0 0 20px rgba(255, 188, 19, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.status-tab-failed:before {
  box-shadow: 0 0 8px #ffbc13;
  background: #ffbc13;
}
.status-tab-failed:hover {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.15), rgba(255, 188, 19, 0.08)) !important;
  box-shadow: 0 0 30px rgba(255, 188, 19, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}
.status-tab-failed.active {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.15), rgba(255, 188, 19, 0.08)) !important;
  box-shadow: 0 0 30px rgba(255, 188, 19, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.status-tab-inactive {
  background: linear-gradient(135deg, rgba(245, 11, 10, 0.15), rgba(245, 11, 10, 0.08));
  border-color: rgba(245, 11, 10, 0.4);
  color: #f50b0a;
  box-shadow: 0 0 20px rgba(245, 11, 10, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.status-tab-inactive:before {
  box-shadow: 0 0 8px #f50b0a;
  background: #f50b0a;
}
.status-tab-inactive:hover {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: linear-gradient(135deg, rgba(245, 11, 10, 0.15), rgba(245, 11, 10, 0.08)) !important;
  box-shadow: 0 0 30px rgba(245, 11, 10, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}
.status-tab-inactive.active {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(245, 11, 10, 0.15), rgba(245, 11, 10, 0.08)) !important;
  box-shadow: 0 0 30px rgba(245, 11, 10, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.status-tab-active {
  background: linear-gradient(135deg, rgba(47, 243, 133, 0.15), rgba(47, 243, 133, 0.08));
  border-color: rgba(47, 243, 133, 0.4);
  color: #2ff385;
  box-shadow: 0 0 20px rgba(47, 243, 133, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.status-tab-active:before {
  box-shadow: 0 0 8px #2ff385;
  background: #2ff385;
}
.status-tab-active:hover {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: linear-gradient(135deg, rgba(47, 243, 133, 0.15), rgba(47, 243, 133, 0.08)) !important;
  box-shadow: 0 0 30px rgba(47, 243, 133, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}
.status-tab-active.active {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(47, 243, 133, 0.15), rgba(47, 243, 133, 0.08)) !important;
  box-shadow: 0 0 30px rgba(47, 243, 133, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 1023px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .video-card .video-thumbnail {
    height: 200px;
  }
}
@media (max-width: 639px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .platform-list {
    flex-wrap: wrap;
    gap: 8px;
  }

  .creator-overview-wrapper {
    position: relative;
    left: -16px;
    width: calc(100% + 32px);
    flex-direction: column;
    gap: 24px;
  }

  .creator-overview-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 0 16px 8px 16px;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .creator-overview-grid::-webkit-scrollbar {
    display: none;
  }
  .creator-overview-grid .stat-item {
    flex-shrink: 0;
    min-width: 200px;
    width: 200px;
  }

  .platform-sessions-list .sessions-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  .platform-sessions-list .sessions-grid .session-badge {
    flex-shrink: 0;
  }
}
@media (max-width: 639px) {
  .creator-overview-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .creator-overview-grid .stat-item {
    padding: 14px 16px;
  }
  .creator-overview-grid .stat-item .stat-value {
    font-size: 1.5rem;
  }

  .creator-controls-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    position: relative;
    left: -16px;
    width: calc(100% + 32px);
    padding: 16px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: -16px;
    margin-bottom: -16px;
  }
  .creator-controls-tabs::-webkit-scrollbar {
    display: none;
  }
  .creator-controls-tabs .creator-tab-button {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .creator-actions-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .creator-actions-grid::-webkit-scrollbar {
    display: none;
  }
  .creator-actions-grid .btn-outline, .creator-actions-grid .btn-action, .creator-actions-grid .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--cancel, .uppy-Root .uppy-StatusBar-actions .creator-actions-grid .uppy-StatusBar-action--cancel,
.creator-actions-grid .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--retry,
.uppy-Root .uppy-StatusBar-actions .creator-actions-grid .uppy-StatusBar-action--retry,
.creator-actions-grid .btn-filled,
.creator-actions-grid .uppy-Root .uppy-StatusBar-actions .uppy-StatusBar-action--upload,
.uppy-Root .uppy-StatusBar-actions .creator-actions-grid .uppy-StatusBar-action--upload,
.creator-actions-grid .btn-delete {
    flex-shrink: 0;
    min-width: 160px;
    white-space: nowrap;
  }

  .controls-subtabs {
    overflow-x: auto;
    flex-wrap: wrap;
    padding: 20px;
    margin-left: -20px;
    margin-top: -20px;
    margin-bottom: 0;
    width: calc(100% + 40px);
  }
  .controls-subtabs .controls-subtab-button {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .progress-circle-container {
    width: 50%;
    max-width: 240px;
    margin: 0 auto;
  }
  .progress-circle-container .progress-circle-wrapper {
    width: 140px;
    height: 140px;
  }
  .progress-circle-container .progress-percent {
    font-size: 1.6rem;
  }
}
.video-ai-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0 54px 0;
}

.video-ai-meta-card {
  text-align: center;
  padding: 10px;
  background-color: rgba(21, 9, 29, 0.08);
  border-radius: 20px;
  position: relative;
  padding: 16px 18px;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.16), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.18), transparent 55%), rgba(15, 10, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
  text-align: left;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}
.video-ai-meta-card .stat-mini-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1123;
  line-height: 1.2;
  height: 28px;
}
.video-ai-meta-card .stat-mini-label {
  display: block;
  font-size: 0.7em;
  color: rgba(26, 17, 35, 0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.video-ai-meta-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.35), rgba(175, 92, 255, 0.3));
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.2s ease-out;
}
.video-ai-meta-card .meta-label {
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.video-ai-meta-card .meta-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  word-break: break-all;
  text-shadow: 0 0 10px rgba(123, 232, 227, 0.4);
}

.clip-card {
  display: flex;
  flex-direction: row;
  min-height: 240px;
  padding: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.12), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.1), transparent 55%), #faeee0;
  border-radius: 20px;
  border: 1px solid rgba(26, 17, 35, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}
.clip-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(123, 232, 227, 0.5);
}
.clip-card.is-scheduled {
  background-color: #fff8f1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 30px #7be8e3;
}
.clip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  border-color: rgba(123, 232, 227, 0.25);
}
.clip-card .clip-video-wrapper {
  width: 200px;
  flex-shrink: 0;
  background-color: #15091d;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.clip-card .clip-video-wrapper::before {
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.25), transparent 60%), radial-gradient(circle at 100% 120%, rgba(175, 92, 255, 0.28), transparent 60%);
  bottom: 0;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 2;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.clip-card .clip-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
}
.clip-card .clip-video-wrapper .clip-video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.25);
  background-image: url("/images/loading.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px 48px;
  transition: opacity 0.2s ease-out;
}
.clip-card .clip-video-wrapper video[data-loaded=true] ~ .clip-video-loading {
  opacity: 0;
  pointer-events: none;
}
.clip-card:hover .clip-video-wrapper video {
  transform: scale(1.06);
}
.clip-card .clip-content {
  padding: 2px 6px 14px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.clip-card .clip-title-wrapper {
  margin-bottom: 16px;
}
.clip-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #1a1123;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.clip-card h4.clip-title-editable {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.clip-card h4.clip-title-editable:hover {
  background-color: rgba(21, 9, 29, 0.05);
}
.clip-card .clip-title-editing input {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  background-color: white;
  color: #1a1123;
  letter-spacing: -0.01em;
  line-height: 1.3;
  height: auto;
  box-shadow: none;
}
.clip-card .clip-title-editing input:focus {
  outline: none;
  background-color: white;
}
.clip-card p {
  font-size: 0.9em;
  color: rgba(26, 17, 35, 0.7);
  margin: 0 0 16px 0;
  line-height: 1.5;
  display: none;
}
.clip-card .clip-tags-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.clip-card .clip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.clip-card .clip-tag {
  font-size: 0.75em;
  padding: 8px 14px;
  background: #af5cff;
  color: #fdf8ff;
  border-radius: 12px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.3px;
  position: relative;
  padding-right: 28px;
  transition: all 0.2s ease;
  line-height: 1.2;
}
.clip-card .clip-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(175, 92, 255, 0.7);
}
.clip-card .clip-tag .tag-remove {
  position: absolute;
  right: 12px;
  top: 4px;
  font-size: 1.6em;
  font-weight: 700;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
  transition: color 0.2s ease;
}
.clip-card .clip-tag .tag-remove:hover {
  color: #f50b0a;
}
.clip-card .btn-add-tag {
  font-size: 0.78em;
  padding: 5px 14px;
  background-color: rgba(175, 92, 255, 0.12);
  color: #af5cff;
  border: 1px solid rgba(175, 92, 255, 0.8);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  height: auto;
  min-width: fit-content;
}
.clip-card .btn-add-tag:hover {
  background-color: rgba(175, 92, 255, 0.22);
  border-color: rgba(175, 92, 255, 0.95);
  box-shadow: 0 0 14px rgba(175, 92, 255, 0.55);
}
.clip-card .tag-input-inline {
  font-size: 0.75em;
  padding: 6px 14px;
  border: 2px dashed #7be8e3;
  border-radius: 16px;
  background-color: white;
  color: #1a1123;
  font-weight: 600;
  text-transform: lowercase;
  height: auto;
  box-shadow: none;
  flex: 0 0 50px;
}
.clip-card .tag-input-inline:focus {
  outline: none;
  background-color: white;
  border: none;
  box-shadow: none;
}
.clip-card .tag-input-inline::placeholder {
  color: rgba(26, 17, 35, 0.4);
}
.clip-card .clip-platform-logos {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.clip-card .clip-platform-logos .platform-logo-link {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 1;
  border-radius: 12px;
  padding: 8px 12px;
  background: radial-gradient(circle at 0% 0%, rgba(175, 92, 255, 0.12), transparent 60%), radial-gradient(circle at 100% 120%, rgba(255, 188, 19, 0.1), transparent 65%), rgba(0, 0, 0, 0.03);
}
.clip-card .clip-platform-logos .platform-logo-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(175, 92, 255, 0.2);
}
.clip-card .clip-platform-logos .platform-logo-mini {
  width: 60px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.9);
  transition: filter 0.2s ease;
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=fikfap] {
  background-image: url("/images/platforms/fikfap-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=xfree] {
  background-image: url("/images/platforms/xfree-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=tikporn] {
  background-image: url("/images/platforms/tikporn-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=pornhub] {
  background-image: url("/images/platforms/pornhub-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=waptap] {
  background-image: url("/images/platforms/waptap-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=erome] {
  background-image: url("/images/platforms/erome-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=sharesome] {
  background-image: url("/images/platforms/sharesome-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=spankbang] {
  background-image: url("/images/platforms/spankbang.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=xhamster] {
  background-image: url("/images/platforms/xhamster-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=xxxfollow] {
  background-image: url("/images/platforms/xxxfollow-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini[data-platform-name=redgifs] {
  background-image: url("/images/platforms/redgifs-dark.svg");
}
.clip-card .clip-platform-logos .platform-logo-mini:hover {
  filter: brightness(1);
}
.clip-card .clip-stats-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.clip-card .clip-stats-grid .stat-mini {
  text-align: center;
  padding: 10px;
  background-color: rgba(21, 9, 29, 0.08);
  border-radius: 20px;
  background-color: rgba(21, 9, 29, 0.03);
  border: 1px solid rgba(26, 17, 35, 0.16);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex: 1;
}
.clip-card .clip-stats-grid .stat-mini .stat-mini-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1123;
  line-height: 1.2;
  height: 28px;
}
.clip-card .clip-stats-grid .stat-mini .stat-mini-label {
  display: block;
  font-size: 0.7em;
  color: rgba(26, 17, 35, 0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.clip-card .clip-stats-grid .stat-mini .stat-mini-value {
  font-weight: 600;
}
.clip-card .stat-mini {
  flex-basis: 100%;
}
.clip-card .stat-mini.stat-mini-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.clip-card .stat-mini.stat-mini-progress .progress-bar-mini {
  width: 100%;
  height: 6px;
  background-color: rgba(21, 9, 29, 0.15);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.clip-card .stat-mini.stat-mini-progress .progress-bar-mini .progress-fill-mini {
  height: 100%;
  background: linear-gradient(90deg, #7be8e3, #a6f0ec);
  border-radius: inherit;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(123, 232, 227, 0.5);
}
.clip-card .stat-mini.stat-mini-progress .progress-count {
  font-size: 0.65em;
  color: rgba(26, 17, 35, 0.5);
  margin-top: 2px;
}
.clip-card .clip-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: auto;
}
.clip-card .clip-actions form {
  margin: 0;
  flex: 50%;
}
.clip-card .clip-actions button {
  width: 100%;
}

#upload-calendar-container {
  margin-top: 20px;
}

#upload-calendar {
  --fc-border-color: rgba(255, 255, 255, 0.05);
  --fc-today-bg-color: rgba(123, 232, 227, 0.08);
  --fc-list-even-bg-color: rgba(21, 9, 29, 0.5);
}
#upload-calendar .fc-daygrid-event-dot {
  display: none;
}
#upload-calendar .fc-event-title {
  display: none !important;
}
#upload-calendar .fc-event-time, #upload-calendar .fc-event-title {
  display: inline;
  font-weight: 400;
  padding: 4px 6px;
  line-height: 1;
  margin: 0;
}
#upload-calendar .fc-event.event-completed {
  background-color: #27ae60 !important;
  border-color: #27ae60 !important;
  color: white;
  margin: 0;
}
#upload-calendar .fc-event.event-completed:hover {
  background-color: #2cc36b !important;
}
#upload-calendar .fc-col-header-cell-cushion,
#upload-calendar .fc-daygrid-day-number {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
#upload-calendar .fc-event {
  background-color: #7be8e3 !important;
  border-color: #7be8e3 !important;
  cursor: pointer;
  border-radius: 4px !important;
  font-weight: 500;
  transition: all 0.2s ease;
}
#upload-calendar .fc-event:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(123, 232, 227, 0.4) !important;
}
#upload-calendar .fc-button {
  background-color: rgba(26, 16, 35, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  text-transform: capitalize;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}
#upload-calendar .fc-button:hover {
  background-color: rgba(123, 232, 227, 0.08);
  border-color: #7be8e3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}
#upload-calendar .fc-button-primary:not(:disabled).fc-button-active {
  background-color: #7be8e3;
  border-color: #7be8e3;
  color: white;
  box-shadow: 0 2px 8px rgba(123, 232, 227, 0.3);
}
#upload-calendar .fc-toolbar-title {
  color: #FFFFFF;
}
#upload-calendar .fc-daygrid-day-events {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 4px;
}
#upload-calendar .fc-daygrid-day-events:before {
  display: none;
}

.clip-settings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 18px;
}
@media (max-width: 1400px) {
  .clips-grid {
    grid-template-columns: 1fr;
  }
}

.upload-form-with-schedule {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.upload-form-with-schedule .ajax-form {
  flex: 1;
}
.upload-form-with-schedule .platform-schedule-toggle-btn {
  background-image: url("/../images/calendar-clock-solid-full.svg");
  background-size: 26px;
  background-repeat: no-repeat;
  background-position: center;
  height: 60px;
  width: 68px;
}
.upload-form-with-schedule .platform-schedule-toggle-btn.is-schedule {
  background-color: #2ff385;
  border-color: #0cca5f;
  box-shadow: 0 4px 0 #0ab254, 0 6px 20px rgba(47, 243, 133, 0.4);
}
.upload-form-with-schedule .platform-schedule-toggle-btn.is-schedule:hover {
  background-color: #47f493;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #0ab254, 0 8px 24px rgba(47, 243, 133, 0.6);
}
.upload-form-with-schedule .platform-schedule-toggle-btn.is-active {
  background-color: #47f493;
  transform: translateY(-2px);
  border-color: #0cca5f;
  box-shadow: 0 6px 0 #0ab254, 0 8px 24px rgba(47, 243, 133, 0.6);
}
@media (max-width: 639px) {
  .upload-form-with-schedule .platform-schedule-toggle-btn {
    height: 48px;
    width: 52px;
    background-size: 20px;
  }
}

.upload-schedule-panel {
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid rgba(26, 17, 35, 0.15);
  padding-bottom: 18px;
  padding-top: 18px;
  margin-bottom: 10px;
  display: none !important;
}
.upload-schedule-panel.is-open {
  display: flex !important;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker {
  width: 100%;
  border-radius: 24px;
  background: rgba(26, 17, 35, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #7be8e3, #af5cff, #ffbc13) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.6;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--content {
  position: relative;
  padding: 14px 20px 10px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-nav {
  border-bottom: 1px solid rgba(123, 232, 227, 0.25);
  padding-inline: 20px;
  padding: 12px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-nav .air-datepicker-nav--title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-nav .air-datepicker-nav--title:hover {
  background: rgba(123, 232, 227, 0.22);
  border-radius: 20px;
  padding: 0 14px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-nav .air-datepicker-nav--action {
  color: #7be8e3;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-nav .air-datepicker-nav--action:hover {
  color: #91ece8;
  background: rgba(123, 232, 227, 0.22);
  border-radius: 20px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body--day-names .air-datepicker-body--day-name {
  color: #ffbc13;
  font-size: 0.7rem;
  font-weight: 600;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body .air-datepicker-body--cells {
  gap: 10px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body .air-datepicker-cell {
  color: #fff;
  font-size: 0.95rem;
  padding: 6px 0;
  border-radius: 20px;
  transition: all 0.15s ease;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body .air-datepicker-cell.-disabled- {
  opacity: 0.25;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body .air-datepicker-cell.-other-month- {
  opacity: 0.1;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body .air-datepicker-cell:hover {
  background: rgba(123, 232, 227, 0.16);
  color: #FFFFFF;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body .air-datepicker-cell.-current- {
  background: rgba(255, 188, 19, 0.16);
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body .air-datepicker-cell.-selected- {
  background: #7be8e3;
  color: #15091d;
  box-shadow: 0 0 0 1px rgba(123, 232, 227, 0.9), 0 0 18px rgba(123, 232, 227, 0.7);
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker-body .air-datepicker-cell.-in-range- {
  background: rgba(123, 232, 227, 0.14);
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time {
  border-top: 1px solid rgba(123, 232, 227, 0.22);
  background: rgba(0, 0, 0, 0.28);
  padding: 12px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  height: 22px;
  padding: 0 6px;
  transition: all 0.15s ease;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--row:first-child {
  margin-bottom: 16px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--row:hover {
  background: rgba(123, 232, 227, 0.22);
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--row input[type=range] {
  flex: 1;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--current-colon {
  margin: 0 6px 4px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--current-hours, .upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--current-minutes {
  font-size: 1.4rem;
  transition: all 0.15s ease;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--current-hours.-focus-, .upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--current-minutes.-focus- {
  color: #15091d;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--current-hours:after, .upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker-time--current-minutes:after {
  background: #7be8e3;
  box-shadow: 0 0 0 1px rgba(123, 232, 227, 0.9), 0 0 18px rgba(123, 232, 227, 0.7);
  top: -7px;
  right: -2px;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker--time--cell {
  transition: all 0.15s ease;
}
.upload-schedule-panel .upload-schedule-datepicker .air-datepicker .air-datepicker--time .air-datepicker--time--cell.-selected- {
  color: #7be8e3;
}
.upload-schedule-panel .upload-schedule-footer {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.upload-schedule-panel .upload-schedule-footer .schedule-confirm-btn {
  width: 100%;
}
.upload-schedule-panel .upload-schedule-hint {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

@media (max-width: 1023px) {
  .clips-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .clips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .clip-card .clip-thumbnail {
    height: 200px;
  }
}
@media (max-width: 639px) {
  .clips-grid {
    grid-template-columns: 1fr;
  }

  .platform-list {
    flex-wrap: wrap;
    gap: 8px;
  }

  .video-ai-meta-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    grid-template-columns: none;
    position: relative;
    left: -16px;
    width: calc(100% + 32px);
    padding: 4px 16px;
    margin: 18px 0 34px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .video-ai-meta-grid::-webkit-scrollbar {
    display: none;
  }
  .video-ai-meta-grid .video-ai-meta-card {
    flex-shrink: 0;
    min-width: 200px;
    width: 200px;
  }

  .clip-settings {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .clip-settings .clip-mode-toggle {
    width: 100%;
    gap: 16px;
  }
  .clip-settings .btn-filled-green {
    width: 100%;
  }

  .clip-mode-toggle {
    flex-direction: column;
    gap: 12px;
  }
  .clip-mode-toggle .clip-mode-actions {
    align-self: flex-start;
  }

  .clip-card {
    flex-direction: column;
    min-height: auto;
  }
  .clip-card .clip-video-wrapper {
    width: 100%;
    height: 280px;
  }
  .clip-card .clip-content {
    padding: 16px;
  }
  .clip-card h4 {
    font-size: 1rem;
  }
  .clip-card .clip-stats-grid {
    flex-wrap: wrap;
  }
  .clip-card .clip-actions {
    flex-direction: column;
  }
  .clip-card .clip-actions form {
    flex: 100%;
  }
}
.status-indicator {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.status-indicator.idle {
  background: rgba(47, 243, 133, 0.2);
  color: #2ff385;
  border: 1px solid rgba(47, 243, 133, 0.3);
}
.status-indicator.active {
  background: rgba(123, 232, 227, 0.2);
  color: #7be8e3;
  border: 1px solid rgba(123, 232, 227, 0.3);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123, 232, 227, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(123, 232, 227, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(123, 232, 227, 0);
  }
}
.nav-link-jobs {
  position: relative;
}

.nav-indicator {
  display: block;
  position: absolute;
  top: 21px;
  right: 18px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #7be8e3;
  animation: pulse 1.5s infinite;
}

/* ========== JOB MONITOR CARDS ========== */
#toggle-video-jobs-btn,
#toggle-upload-jobs-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px 16px 28px;
}
#toggle-video-jobs-btn.toggle-active,
#toggle-upload-jobs-btn.toggle-active {
  background-color: rgba(123, 232, 227, 0.12);
  color: white;
  border-color: rgba(123, 232, 227, 0.3);
  box-shadow: 0 0 20px rgba(123, 232, 227, 0.2), inset 0 0 20px rgba(123, 232, 227, 0.08);
}
#toggle-video-jobs-btn.toggle-active:hover:not([disabled]),
#toggle-upload-jobs-btn.toggle-active:hover:not([disabled]) {
  background-color: rgba(123, 232, 227, 0.16);
  border-color: rgba(123, 232, 227, 0.4);
  box-shadow: 0 0 24px rgba(123, 232, 227, 0.3), inset 0 0 24px rgba(123, 232, 227, 0.12);
}

.job-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.job-indicator.active {
  background-color: #7be8e3;
  box-shadow: 0 0 12px #7be8e3;
  animation: pulse 1.5s infinite;
}

.active-jobs-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 16px;
}

.no-jobs-message {
  padding: 48px 24px;
  text-align: center;
  background: rgba(255, 188, 19, 0.06);
  border: 1px dashed rgba(255, 188, 19, 0.3);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}
.no-jobs-message p {
  margin-bottom: 0;
}

/* Job Card Base Styles */
.job-card {
  padding: 24px;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.12), rgba(175, 92, 255, 0.08));
  border: 1px solid rgba(123, 232, 227, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}
.job-card.processing {
  border-color: rgba(255, 188, 19, 0.5);
  box-shadow: 0 0 20px rgba(255, 188, 19, 0.15);
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.12), rgba(255, 188, 19, 0.08));
}
.job-card.processing:hover {
  border-color: rgba(255, 188, 19, 0.6);
  box-shadow: 0 12px 48px rgba(255, 188, 19, 0.2);
}
.job-card:hover {
  border-color: rgba(123, 232, 227, 0.6);
  box-shadow: 0 12px 48px rgba(123, 232, 227, 0.2);
}

/* Job Card Header */
.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(123, 232, 227, 0.2);
}

.job-card-title-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.job-phase-indicator {
  font-size: 2rem;
  animation: pulse-icon 2s infinite;
}

.job-card-title-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.job-creator {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 6px 0 0 0;
}
.job-creator a {
  color: #7be8e3;
  text-decoration: none;
  transition: color 0.2s;
}
.job-creator a:hover {
  color: #ffbc13;
}

.job-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.job-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.job-status-badge.processing {
  background: rgba(255, 188, 19, 0.2);
  color: #ffbc13;
  border: 1px solid rgba(255, 188, 19, 0.4);
  animation: pulse-border 2s infinite;
}

/* Job Card Content */
.job-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-item label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}
.info-item span,
.info-item a {
  font-size: 0.95rem;
  color: #7be8e3;
  text-decoration: none;
}
.info-item span:hover,
.info-item a:hover {
  color: #ffbc13;
  text-decoration: underline;
}

/* Progress Section */
.progress-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.progress-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.phase {
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(123, 232, 227, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  /* Phase Active State */
  /* Phase Completed State */
}
.phase .phase-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.phase .phase-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phase .phase-bar {
  height: 4px;
  background: rgba(123, 232, 227, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.phase .phase-fill {
  height: 100%;
  background: linear-gradient(90deg, #7be8e3, #ffbc13);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.phase .phase-status {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.phase.active {
  border-color: rgba(255, 188, 19, 0.5);
  background: rgba(255, 188, 19, 0.08);
}
.phase.completed {
  border-color: rgba(123, 232, 227, 0.5);
  background: rgba(123, 232, 227, 0.08);
}
.phase.completed .phase-fill {
  background: linear-gradient(90deg, #7be8e3, #2ff385);
}
.phase.completed .phase-status {
  color: #7be8e3;
}

/* Main Progress Bar */
.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.progress-message {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
}

.progress-percentage {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffbc13;
  min-width: 50px;
  text-align: right;
}

.progress-bar.main-progress {
  height: 8px;
  background: rgba(123, 232, 227, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar.main-progress .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7be8e3 0%, #ffbc13 50%, #2ff385 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 188, 19, 0.4);
}

/* Cost Tracking */
.cost-tracking {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 188, 19, 0.08);
  border: 1px solid rgba(255, 188, 19, 0.2);
  border-radius: 8px;
}

.cost-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.cost-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffbc13;
}

/* Events Timeline */
.job-events-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-events-timeline .timeline-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 120px;
  overflow-y: auto;
  padding-right: 8px;
}

.event-item {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.2);
  border-left: 2px solid rgba(123, 232, 227, 0.3);
  border-radius: 4px;
}
.event-item .event-time {
  color: rgba(123, 232, 227, 0.7);
  font-weight: 600;
  min-width: 60px;
}
.event-item .event-msg {
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

/* Job Actions */
.job-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-action {
  flex: 1;
  min-width: 100px;
  padding: 10px 16px;
  background: rgba(123, 232, 227, 0.1);
  border: 1px solid rgba(123, 232, 227, 0.3);
  color: #7be8e3;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.btn-action:hover {
  background: rgba(123, 232, 227, 0.2);
  border-color: rgba(123, 232, 227, 0.6);
  color: #ffbc13;
  transform: translateY(-2px);
}
.btn-action:active {
  transform: translateY(0);
}
.btn-action.cancel-job {
  background: rgba(245, 11, 10, 0.1);
  border-color: rgba(245, 11, 10, 0.3);
  color: #f50b0a;
}
.btn-action.cancel-job:hover {
  background: rgba(245, 11, 10, 0.2);
  border-color: rgba(245, 11, 10, 0.6);
}

/* Animations */
@keyframes pulse-icon {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 188, 19, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 188, 19, 0);
  }
}
/* Scrollbar Styling */
.events-list::-webkit-scrollbar {
  width: 4px;
}

.events-list::-webkit-scrollbar-track {
  background: rgba(123, 232, 227, 0.05);
  border-radius: 2px;
}

.events-list::-webkit-scrollbar-thumb {
  background: rgba(123, 232, 227, 0.3);
  border-radius: 2px;
}
.events-list::-webkit-scrollbar-thumb:hover {
  background: rgba(123, 232, 227, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .job-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .progress-phases {
    grid-template-columns: 1fr;
  }

  .job-actions {
    gap: 8px;
  }

  .btn-action {
    min-width: 80px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .job-info-grid {
    grid-template-columns: 1fr;
  }

  .job-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-card-meta {
    width: 100%;
  }

  .job-actions {
    flex-direction: column;
  }

  .btn-action {
    min-width: auto;
  }
}
.clip-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 700px;
}

.original-video-card .thumbnail-wrapper {
  position: relative;
}
.original-video-card .clip-mode-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  border-width: 1px;
  border-style: solid;
  z-index: 2;
}
.original-video-card .clip-mode-badge-unique {
  background-color: rgba(123, 232, 227, 0.16);
  border: 1px solid rgba(123, 232, 227, 0.7);
  color: #7be8e3;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.original-video-card .clip-mode-badge-multi {
  background-color: rgba(47, 243, 133, 0.16);
  border: 1px solid rgba(47, 243, 133, 0.7);
  color: #2ff385;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.original-video-card .clip-mode-badge-mixed {
  background-color: rgba(255, 188, 19, 0.16);
  border: 1px solid rgba(255, 188, 19, 0.7);
  color: #ffbc13;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.clip-mode-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clip-mode-label {
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.clip-mode-description {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.6);
}

.clip-unique-form {
  flex-shrink: 0;
}

.stat-mini-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-mini-toggle .clip-unique-form {
  flex-shrink: 0;
}

.toggle-buttons-container {
  margin-top: 24px;
}
.toggle-buttons-container .toggle-title {
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.toggle-buttons-container .toggle-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

#toggle-platforms-btn,
#toggle-proxies-btn,
#toggle-calendar-btn,
#toggle-settings-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-header-with-close {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.card-header-with-close h3 {
  margin: 0;
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}
@media (max-width: 639px) {
  .calendar-controls {
    justify-content: space-between;
  }
}

.calendar-range-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.calendar-nav-btn.disabled,
.calendar-nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.creator-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
@media (max-width: 639px) {
  .creator-calendar {
    flex-direction: column;
    display: flex;
  }
}

.calendar-day {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}
.calendar-day:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 16px rgba(123, 232, 227, 0.4);
  border-color: rgba(123, 232, 227, 0.55);
}
.calendar-day:hover:before {
  opacity: 0.4;
}

.calendar-day-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.calendar-date-num {
  font-size: 1.8rem;
  font-weight: 600;
}

.calendar-date-day {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.75;
}

.calendar-today-pill {
  margin-left: auto;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(123, 232, 227, 0.12);
  color: #7be8e3;
  border: 1px solid rgba(123, 232, 227, 0.5);
}

.calendar-events {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 32px;
}

.calendar-event-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.calendar-event-platform {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 32px;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.calendar-event-platform:hover {
  background-color: rgba(249, 206, 14, 0.08);
  color: #ffbc13;
  border: 1px solid rgba(255, 188, 18, 0.3);
}
.calendar-event-platform .platform-logo-small {
  background-repeat: no-repeat;
  background-position: right;
  width: 70px;
  height: 18px;
  background-size: contain;
}
.calendar-event-platform .platform-logo-small[data-platform-name=fikfap] {
  background-image: url("/images/platforms/fikfap.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=xfree] {
  background-image: url("/images/platforms/xfree.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=tikporn] {
  background-image: url("/images/platforms/tikporn.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=pornhub] {
  background-image: url("/images/platforms/pornhub.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=waptap] {
  background-image: url("/images/platforms/waptap.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=erome] {
  background-image: url("/images/platforms/erome.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=sharesome] {
  background-image: url("/images/platforms/sharesome.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=spankbang] {
  background-image: url("/images/platforms/spankbang.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=xhamster] {
  background-image: url("/images/platforms/xhamster.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=xxxfollow] {
  background-image: url("/images/platforms/xxxfollow.svg");
}
.calendar-event-platform .platform-logo-small[data-platform-name=redgifs] {
  background-image: url("/images/platforms/redgifs.svg");
}

.calendar-empty {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.btn-close-card {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background-color: #f50b0a;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  background-image: url("/images/xmark-regular-full.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  width: 32px;
  height: 32px;
}
.btn-close-card:hover {
  opacity: 1;
  background-color: #c40908;
  box-shadow: 0 0 20px rgba(245, 11, 10, 0.2), inset 0 0 20px rgba(245, 11, 10, 0.2);
}

.proxy-add-form {
  margin-bottom: 30px;
}

.add-proxy-form-flex {
  display: flex;
  gap: 15px;
  align-items: center;
  max-width: 700px;
}
.add-proxy-form-flex input[type=text] {
  flex: 1;
}

.proxies-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.proxies-table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
}
.proxies-table thead tr {
  background-color: rgba(26, 17, 35, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.proxies-table th {
  padding: 16px 20px;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.proxies-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.proxies-table tbody tr:hover {
  background-color: rgba(26, 17, 35, 0.4);
}
.proxies-table tbody tr.active-row {
  background-color: rgba(47, 243, 133, 0.08);
  border-color: rgba(47, 243, 133, 0.2);
}
.proxies-table tbody tr.active-row:hover {
  background-color: rgba(47, 243, 133, 0.12);
}
.proxies-table td {
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9em;
  vertical-align: middle;
}

.mono-text {
  font-family: "Courier New", monospace;
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.table-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.table-actions form {
  margin: 0;
}

.proxy-test-status {
  margin-top: 20px;
  padding: 16px 24px;
  background-color: rgba(123, 232, 227, 0.1);
  border: 1px solid rgba(123, 232, 227, 0.3);
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}
.proxy-test-status.error {
  background-color: rgba(245, 11, 10, 0.1);
  border-color: rgba(245, 11, 10, 0.3);
}
.proxy-test-status.error .test-status-content {
  color: #f50b0a;
}
.proxy-test-status.error .test-status-content .spinner {
  border-top-color: #f50b0a;
}

.test-status-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7be8e3;
  font-size: 0.95em;
  font-weight: 500;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #7be8e3;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.video-status-banner {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}
.video-status-banner.video-status-pending {
  background-color: rgba(245, 11, 10, 0.08);
  border: 1px solid rgba(245, 11, 10, 0.3);
}
.video-status-banner.video-status-pending .test-status-content {
  color: #f50b0a;
}
.video-status-banner.video-status-pending .test-status-content .spinner {
  border-top-color: #f50b0a;
}
.video-status-banner.video-status-processing {
  background-color: rgba(175, 92, 255, 0.08);
  border: 1px solid rgba(175, 92, 255, 0.3);
}
.video-status-banner.video-status-processing .test-status-content {
  color: #af5cff;
}
.video-status-banner.video-status-processing .test-status-content .spinner {
  border-top-color: #af5cff;
}

.settings-grid,
.creator-settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.settings-grid label, .settings-grid button,
.creator-settings-grid label,
.creator-settings-grid button {
  display: block;
  width: max-content;
}

.settings-section,
.creator-settings-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.settings-section:first-of-type,
.creator-settings-section:first-of-type {
  border-top: none;
}

.creator-settings-section {
  justify-content: flex-start;
}

.settings-section-title {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.settings-help-text {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.settings-help-text.danger-text {
  color: #f50b0a;
  margin-bottom: 32px;
}

.settings-form {
  display: flex;
  flex-direction: column;
}
.settings-form label {
  display: block;
}
.settings-form button {
  width: max-content;
}

.settings-input {
  width: 100%;
  margin-top: 8px;
}
.settings-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.settings-save-btn {
  align-self: flex-start;
}

.danger-zone .btn-delete-creator-trigger {
  margin-top: 4px;
  background-color: transparent;
  color: #f50b0a;
  border: 2px solid rgba(245, 11, 10, 0.6);
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.danger-zone .btn-delete-creator-trigger:hover {
  background-color: rgba(245, 11, 10, 0.12);
  box-shadow: 0 0 20px rgba(245, 11, 10, 0.25);
}
.danger-zone .delete-creator-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.danger-zone .delete-warning {
  font-size: 0.8rem;
  color: #f50b0a;
  margin-top: -32px;
  margin-bottom: 0;
}
.danger-zone .btn-danger {
  margin-top: 10px;
  background-color: #f50b0a;
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid #f50b0a;
}
.danger-zone .btn-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}
.danger-zone .btn-danger:not(:disabled):hover {
  box-shadow: 0 6px 20px rgba(245, 11, 10, 0.4);
}

.platform-logo-admin {
  width: 80px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.platform-logo-admin[data-platform-name=fikfap] {
  background-image: url("/images/platforms/fikfap.svg");
}
.platform-logo-admin[data-platform-name=xfree] {
  background-image: url("/images/platforms/xfree.svg");
}
.platform-logo-admin[data-platform-name=tikporn] {
  background-image: url("/images/platforms/tikporn.svg");
}
.platform-logo-admin[data-platform-name=pornhub] {
  background-image: url("/images/platforms/pornhub.svg");
}
.platform-logo-admin[data-platform-name=waptap] {
  background-image: url("/images/platforms/waptap.svg");
}
.platform-logo-admin[data-platform-name=erome] {
  background-image: url("/images/platforms/erome.svg");
}
.platform-logo-admin[data-platform-name=sharesome] {
  background-image: url("/images/platforms/sharesome.svg");
}
.platform-logo-admin[data-platform-name=spankbang] {
  background-image: url("/images/platforms/spankbang.svg");
}
.platform-logo-admin[data-platform-name=xhamster] {
  background-image: url("/images/platforms/xhamster.svg");
}
.platform-logo-admin[data-platform-name=xxxfollow] {
  background-image: url("/images/platforms/xxxfollow.svg");
}
.platform-logo-admin[data-platform-name=redgifs] {
  background-image: url("/images/platforms/redgifs.svg");
}

.platform-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.platform-actions form {
  margin: 0;
}

.platform-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-status-active {
  background-color: rgba(47, 243, 133, 0.15);
  color: #2ff385;
  border: 1px solid rgba(47, 243, 133, 0.4);
}

.platform-status-disabled {
  background-color: rgba(245, 11, 10, 0.15);
  color: #f50b0a;
  border: 1px solid rgba(245, 11, 10, 0.4);
}

.platform-disabled-row {
  opacity: 0.6;
  background-color: rgba(245, 11, 10, 0.05);
}

.btn-small-emergency {
  background-color: transparent;
  color: #ffbc13;
  border-color: #ffbc13;
}
.btn-small-emergency:hover:not([disabled]) {
  background-color: #ffbc13;
  border-color: #ffbc13;
  color: #15091d;
  box-shadow: 0 2px 8px rgba(255, 188, 19, 0.4);
}

.btn-small-enable {
  background-color: transparent;
  color: #2ff385;
  border-color: #2ff385;
}
.btn-small-enable:hover:not([disabled]) {
  background-color: #2ff385;
  border-color: #2ff385;
  color: white;
  box-shadow: 0 2px 8px rgba(47, 243, 133, 0.4);
}

.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background-color: #15091d;
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.16), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.18), transparent 55%), rgba(15, 10, 25, 0.9);
}

.auth-card {
  width: 100%;
  max-width: 450px;
  padding: 48px 40px;
  background: rgba(26, 17, 35, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(123, 232, 227, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(123, 232, 227, 0.15);
  backdrop-filter: blur(20px);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}
.auth-header .auth-logo {
  font-size: 3rem;
  line-height: 1;
  user-select: none;
  cursor: default;
  margin-bottom: 24px;
}
.auth-header .auth-logo .logo-wize {
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}
.auth-header .auth-logo .logo-clip {
  font-weight: 300;
  color: #7be8e3;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(123, 232, 227, 0.5);
}
.auth-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.auth-error {
  padding: 12px 16px;
  margin-bottom: 24px;
  background-color: rgba(245, 11, 10, 0.15);
  border: 1px solid rgba(245, 11, 10, 0.5);
  border-radius: 8px;
  color: #f50b0a;
  font-size: 0.9rem;
  text-align: center;
}

.auth-success {
  padding: 12px 16px;
  margin-bottom: 24px;
  background-color: rgba(47, 243, 133, 0.15);
  border: 1px solid rgba(47, 243, 133, 0.5);
  border-radius: 8px;
  color: #2ff385;
  font-size: 0.9rem;
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}
.auth-form .form-group input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(123, 232, 227, 0.3);
  background-color: rgba(21, 9, 29, 0.5);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  transition: all 0.2s ease;
}
.auth-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.auth-form .form-group input:focus {
  outline: none;
  border-color: #7be8e3;
  box-shadow: 0 0 0 3px rgba(123, 232, 227, 0.2);
}
.auth-form .form-group input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth-form .btn-primary {
  margin-top: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #7be8e3, #50e0da);
  color: #15091d;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 232, 227, 0.3);
}
.auth-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 232, 227, 0.5);
}
.auth-form .btn-primary:active {
  transform: translateY(0);
}
.auth-form .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
}
.auth-footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.auth-footer p a {
  color: #7be8e3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.auth-footer p a:hover {
  color: #ffbc13;
}

.dashboard-welcome {
  margin-bottom: 32px;
}
.dashboard-welcome h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.dashboard-welcome p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.stat-card {
  position: relative;
  padding: 24px 20px;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.16), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.18), transparent 55%), rgba(15, 10, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
  text-align: left;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}
.stat-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.35), rgba(175, 92, 255, 0.3));
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.2s ease-out;
}
.stat-card .stat-icon {
  margin-bottom: 12px;
  display: block;
  opacity: 0.8;
  background-repeat: no-repeat;
  width: 38px;
  height: 32px;
}
.stat-card .stat-icon.my-creators {
  background-image: url("/images/clapperboard-solid-full.svg");
}
.stat-card .stat-icon.my-videos {
  background-image: url("/images/film-solid-full.svg");
}
.stat-card .stat-icon.my-clips {
  background-image: url("/images/wand-magic-sparkles-solid-full.svg");
}
.stat-card .stat-icon.total-users {
  background-image: url("/images/user-group-solid-full.svg");
}
.stat-card .stat-icon.storage-used {
  background-image: url("/images/hard-drive-solid-full.svg");
}
.stat-card .stat-content {
  display: flex;
  flex-direction: column;
}
.stat-card .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat-card .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.dashboard-actions h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.btn-action .action-icon {
  display: block;
  opacity: 0.8;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.btn-action .action-icon.total-users {
  background-image: url("/images/user-group-solid-full.svg");
}
.btn-action .action-icon.my-creators {
  background-image: url("/images/clapperboard-solid-full.svg");
}
.btn-action .action-icon.view-jobs {
  background-image: url("/images/list-check-solid-full.svg");
}
.btn-action .action-icon.manage-platforms {
  background-image: url("/images/globe-pointer-solid-full.svg");
}
.btn-action:hover .action-icon {
  opacity: 1;
}

@media (max-width: 1023px) {
  .dashboard-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .action-buttons {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 20px 16px;
  }
  .stat-card .stat-value {
    font-size: 1.75rem;
  }
  .stat-card .stat-label {
    font-size: 0.7rem;
  }
  .stat-card .stat-icon {
    width: 32px;
    height: 28px;
  }

  .action-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 639px) {
  .dashboard-stats {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    max-width: 100%;
    padding-bottom: 8px;
    flex-direction: column;
  }

  .stat-card {
    flex-shrink: 0;
    min-width: 200px;
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .stat-card .stat-icon {
    margin-bottom: 0;
  }
  .stat-card .stat-value {
    font-size: 1.5rem;
  }

  .dashboard-welcome h3 {
    font-size: 1.5rem;
  }
  .dashboard-welcome p {
    font-size: 0.9rem;
  }
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table thead tr {
  border-bottom: 2px solid rgba(255, 188, 19, 0.3);
}
.data-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffbc13;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}
.data-table tbody tr:hover {
  background-color: rgba(255, 188, 19, 0.05);
}
.data-table tbody tr:last-child {
  border-bottom: none;
}
.data-table tbody td {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #FFFFFF;
  vertical-align: middle;
}
.data-table tbody td.buttons {
  display: flex;
  gap: 10px;
  height: 86px;
  align-items: center;
}

.role-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.role-badge.role-admin {
  background-color: rgba(245, 11, 10, 0.15);
  color: #f50b0a;
  border: 1px solid rgba(245, 11, 10, 0.5);
}
.role-badge.role-user {
  background-color: rgba(123, 232, 227, 0.15);
  color: #7be8e3;
  border: 1px solid rgba(123, 232, 227, 0.5);
}

.table-container {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .table-container {
    overflow-x: visible;
  }

  .data-table {
    display: block;
  }
  .data-table thead {
    display: none;
  }
  .data-table tbody {
    display: block;
  }
  .data-table tr {
    display: block;
    margin-bottom: 16px;
    background-color: #faeee0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(26, 17, 35, 0.1);
  }
  .data-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(26, 17, 35, 0.08);
    color: #1a1123;
  }
  .data-table td:last-child {
    border-bottom: none;
  }
  .data-table td.buttons {
    height: auto;
    flex-wrap: wrap;
    gap: 8px;
  }
  .data-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: rgba(26, 17, 35, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}
.admin-content-full {
  display: flex;
  flex-direction: column;
  padding: 40px 60px;
  flex: 1;
  overflow-y: auto;
  gap: 32px;
}

.admin-content-line {
  padding: 40px 60px;
  flex: 1;
  overflow-y: auto;
  gap: 32px;
}

.admin-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.08), transparent 55%), radial-gradient(circle at 120% 0%, rgba(175, 92, 255, 0.06), transparent 55%);
}

.admin-job-content {
  padding: 40px 60px;
  flex: 1;
  overflow-y: auto;
}

.admin-header {
  background: linear-gradient(90deg, rgba(255, 188, 19, 0.18), rgba(21, 9, 29, 0.9));
  border-bottom-color: rgba(255, 188, 19, 0.5);
  box-shadow: 0 4px 24px rgba(255, 188, 19, 0.25), 0 0 0 1px rgba(255, 188, 19, 0.25);
}
.admin-header h2 {
  display: flex;
  align-items: center;
  gap: 15px;
}
.admin-header h2:after {
  content: "Admin";
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 188, 19, 0.2);
  color: #ffbc13;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 188, 19, 0.3);
}

.admin-job-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(123, 232, 227, 0.16);
  border: 1px solid rgba(123, 232, 227, 0.7);
  color: #1a1123;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.admin-job-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7be8e3;
  box-shadow: 0 0 8px rgba(123, 232, 227, 0.8);
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.admin-stat-card {
  padding: 24px;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.1), rgba(175, 92, 255, 0.1));
  border: 1px solid rgba(123, 232, 227, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.admin-stat-card:hover {
  border-color: rgba(123, 232, 227, 0.5);
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.15), rgba(175, 92, 255, 0.15));
  box-shadow: 0 8px 32px rgba(123, 232, 227, 0.1);
}

.admin-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffbc13;
  margin-bottom: 8px;
}

.admin-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.admin-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 32px;
}

.admin-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.08), rgba(175, 92, 255, 0.08));
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.admin-card--spaced-top {
  margin-top: 32px;
}

.admin-card--mb-16 {
  margin-bottom: 16px;
}

.admin-card--mb-32 {
  margin-bottom: 32px;
}

.admin-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(123, 232, 227, 0.2);
}

.admin-card-icon {
  font-size: 2rem;
}

.admin-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.admin-card-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 12px 0 0 0;
  line-height: 1.5;
  font-style: italic;
}

.debug-events-table.has-active-row tbody tr.debug-row:not(.is-active) {
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.debug-events-table.has-active-row tbody tr.debug-row:not(.is-active):hover {
  opacity: 1;
}

.debug-row.is-active {
  background-color: rgba(123, 232, 227, 0.16);
  box-shadow: 0 0 0 1px rgba(123, 232, 227, 0.4);
}

.debug-detail-row td {
  background-color: rgba(26, 17, 35, 0.9);
  padding: 16px 18px;
}

.debug-media-header {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.debug-media-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.admin-card-info--mt-4 {
  margin-top: 4px;
}

.admin-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.admin-label--mt-12 {
  margin-top: 12px;
}

.admin-label-strong {
  display: block;
  margin-bottom: 4px;
}

.admin-label-muted {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.admin-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
}
.admin-toggle input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ffbc13;
}
.admin-toggle label {
  display: flex;
  margin: 0;
  cursor: pointer;
}

.admin-button-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.admin-button {
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.admin-button.admin-button-primary {
  background: linear-gradient(135deg, #7be8e3, #50e0da);
  color: #000;
}
.admin-button.admin-button-primary:hover {
  box-shadow: 0 8px 24px rgba(123, 232, 227, 0.3);
}
.admin-button.admin-button-danger {
  background: linear-gradient(135deg, #f50b0a, #c40908);
  color: #fff;
}
.admin-button.admin-button-danger:hover {
  box-shadow: 0 8px 24px rgba(245, 11, 10, 0.3);
}

.admin-alert {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  border-left: 4px solid;
}
.admin-alert.admin-alert-success {
  background: rgba(47, 243, 133, 0.1);
  border-color: #2ff385;
  color: #2ff385;
}
.admin-alert.admin-alert-error {
  background: rgba(245, 11, 10, 0.1);
  border-color: #f50b0a;
  color: #f73c3b;
}

.audit-section {
  padding: 28px;
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.05), rgba(175, 92, 255, 0.05));
  border: 1px solid rgba(123, 232, 227, 0.15);
  border-radius: 12px;
}

.audit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.audit-table th {
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid rgba(123, 232, 227, 0.3);
  color: #ffbc13;
  font-weight: 600;
}
.audit-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(123, 232, 227, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.audit-table tr:hover {
  background: rgba(123, 232, 227, 0.05);
}
.audit-table .debug-row {
  cursor: pointer;
}
.audit-table .debug-row.is-active {
  background-color: rgba(26, 115, 232, 0.12);
}

.audit-field-code {
  color: #7be8e3;
}

.audit-value-old {
  color: rgba(255, 255, 255, 0.5);
}

.audit-value-new {
  color: #ffbc13;
  font-weight: 600;
}

.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(123, 232, 227, 0.2);
  border-top: 3px solid #7be8e3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.admin-loading-placeholder {
  padding: 20px;
  text-align: center;
}

.admin-loading-row {
  text-align: center;
  padding: 20px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
}
.status-badge.status-active {
  background: rgba(47, 243, 133, 0.2);
  color: #2ff385;
  border: 1px solid rgba(47, 243, 133, 0.3);
}
.status-badge.status-paused {
  background: rgba(255, 188, 19, 0.2);
  color: #ffbc13;
  border: 1px solid rgba(255, 188, 19, 0.3);
}
.status-badge.status-inactive {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-filters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-filters-grid--mt-10 {
  margin-top: 10px;
}

.admin-advanced-filters {
  margin-bottom: 24px;
}
.admin-advanced-filters summary {
  cursor: pointer;
  margin-bottom: 8px;
}

.admin-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.admin-row-wrapper--mt-8 {
  margin-top: 8px;
}

.admin-table-scroll-x {
  overflow-x: auto;
}

.debug-level {
  text-transform: uppercase;
  font-weight: 600;
}

.debug-level-error {
  color: #ff4b4b;
}

.debug-level-warning {
  color: #ffbc13;
}

.debug-level-info,
.debug-level-debug {
  color: #7be8e3;
}

.debug-phase-code {
  color: #7be8e3;
}

.debug-message-text {
  color: rgba(255, 255, 255, 0.85);
}

.debug-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.debug-media-item {
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background-color: #faeee0;
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
}

.debug-media-item .debug-media-thumb {
  width: 100%;
  height: 100%;
  max-height: 220px;
  border-radius: 6px;
  object-fit: cover;
}

.debug-media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.debug-media-tag {
  font-size: 11px;
  line-height: 1.4;
  padding: 1px 6px;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: #f8fafc;
  color: #0f172a;
}

.debug-media-tag.is-kind {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.debug-media-tag.is-role {
  background-color: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}

.debug-media-item.is-video .debug-media-tag.is-kind {
  background-color: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.debug-media-item.is-image .debug-media-tag.is-kind {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.debug-media-filename {
  margin-top: 6px;
  font-size: 11px;
  color: #64748b;
  word-break: break-all;
}

.creator-settings-section--divider {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}

.cleanup-result-text {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .admin-main {
    padding: 20px;
  }

  .admin-job-content,
.admin-settings-content {
    padding: 0;
  }

  .admin-card {
    padding: 20px;
  }

  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 639px) {
  .admin-main {
    padding: 16px;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .admin-card {
    padding: 16px;
  }
}
.admin-user-credits-content .wallet-grid, .admin-user-credits-content .user-credits-main .user-credits-wallet-grid, .user-credits-main .admin-user-credits-content .user-credits-wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.admin-user-credits-content .admin-card-info-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.admin-user-credits-content .wallet-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.admin-user-credits-content .wallet-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}
.admin-user-credits-content .wallet-value {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}
.admin-user-credits-content .wallet-value--cost {
  color: #f50b0a;
}
.admin-user-credits-content .wallet-value--profit {
  color: #2ff385;
}
.admin-user-credits-content .wallet-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(26, 17, 35, 0.5);
  color: #FFFFFF;
  font-size: 0.9rem;
}
.admin-user-credits-content .wallet-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.admin-user-credits-content .wallet-input:focus {
  outline: none;
  border-color: rgba(123, 232, 227, 0.8);
  box-shadow: 0 0 12px rgba(123, 232, 227, 0.2);
}
.admin-user-credits-content .wallet-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.admin-user-credits-content .wallet-profile-select {
  max-width: 260px;
}

.admin-user-credits-usage {
  margin-top: 32px;
  margin-bottom: 40px;
}
.admin-user-credits-usage .admin-section-title, .admin-user-credits-usage .user-credits-main .user-credits-history .user-credits-section-title, .user-credits-main .user-credits-history .admin-user-credits-usage .user-credits-section-title {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}
.admin-user-credits-usage .history-row {
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.admin-user-credits-usage .history-row:hover {
  background-color: rgba(123, 232, 227, 0.06);
}
.admin-user-credits-usage .history-row.history-row--active {
  background-color: rgba(123, 232, 227, 0.16);
  box-shadow: 0 0 0 1px rgba(123, 232, 227, 0.4);
}
.admin-user-credits-usage .admin-user-credits-table.has-active-row .history-row:not(.history-row--active) {
  opacity: 0.4;
}
.admin-user-credits-usage .admin-user-credits-table.has-active-row .history-row:not(.history-row--active):hover {
  opacity: 1;
}
.admin-user-credits-usage .history-detail-row td {
  background-color: rgba(26, 17, 35, 0.85);
  padding: 16px;
}
.admin-user-credits-usage .history-detail-header {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.admin-user-credits-usage .history-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.admin-user-credits-usage .history-phase {
  flex: 1 1 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  background-color: rgba(0, 0, 0, 0.25);
}
.admin-user-credits-usage .history-phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.admin-user-credits-usage .history-phase-header .history-phase-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}
.admin-user-credits-usage .history-phase-header .history-phase-model {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.admin-user-credits-usage .history-phase-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-user-credits-usage .history-phase-body .history-phase-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.admin-user-credits-usage .history-phase-body .history-phase-row span:first-child {
  color: rgba(255, 255, 255, 0.4);
}
.admin-user-credits-usage .history-phase-body .history-phase-row .value-billed {
  color: #7be8e3;
  font-weight: 600;
}
.admin-user-credits-usage .history-phase-body .history-phase-row .value-cost {
  color: #f50b0a;
  font-weight: 600;
}
.admin-user-credits-usage .history-phase-body .history-phase-row .value-profit {
  color: #2ff385;
  font-weight: 600;
}
.admin-user-credits-usage .history-detail-empty {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.admin-user-credits-usage .admin-card-info {
  margin-top: 0;
  margin-bottom: 18px;
}
.admin-user-credits-usage .admin-user-credits-table {
  min-width: 760px;
}
.admin-user-credits-usage .admin-user-credits-table th,
.admin-user-credits-usage .admin-user-credits-table td {
  white-space: nowrap;
  text-align: left;
}
.admin-user-credits-usage .admin-user-credits-table .profit-col {
  color: #2ff385;
  font-weight: 600;
}
.admin-user-credits-usage .admin-user-credits-table .billed-col {
  color: #7be8e3;
  font-weight: 600;
}
.admin-user-credits-usage .admin-user-credits-table .cost-col {
  color: #f50b0a;
  font-weight: 600;
}

.user-credits-main {
  padding: 32px 60px 40px;
}
.user-credits-main .user-credits-content {
  max-width: 1100px;
  margin: 0 auto;
}
.user-credits-main .user-credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.user-credits-main .user-credits-card {
  background: radial-gradient(circle at 0% 0%, rgba(123, 232, 227, 0.16), transparent 55%), radial-gradient(circle at 100% 140%, rgba(175, 92, 255, 0.18), transparent 55%), rgba(15, 10, 25, 0.9);
  border-radius: 12px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.user-credits-main .user-credits-card .user-credits-card-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.user-credits-main .user-credits-card .user-credits-card-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.user-credits-main .user-credits-coming-soon .user-credits-coming-soon-btn {
  opacity: 0.6;
  cursor: not-allowed;
}
.user-credits-main .user-credits-history {
  margin-top: 20px;
}
.user-credits-main .user-credits-history .user-credits-card-info {
  margin-top: 0;
  margin-bottom: 18px;
}
.user-credits-main .user-credits-history .user-credits-table {
  min-width: 600px;
}
.user-credits-main .user-credits-history .user-credits-table .history-row {
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.user-credits-main .user-credits-history .user-credits-table .history-row:hover {
  background-color: rgba(123, 232, 227, 0.06);
}
.user-credits-main .user-credits-history .user-credits-table .history-row.history-row--active {
  background-color: rgba(123, 232, 227, 0.16);
  box-shadow: 0 0 0 1px rgba(123, 232, 227, 0.4);
}
.user-credits-main .user-credits-history .user-credits-table.has-active-row .history-row:not(.history-row--active) {
  opacity: 0.4;
}
.user-credits-main .user-credits-history .user-credits-table.has-active-row .history-row:not(.history-row--active):hover {
  opacity: 1;
}
.user-credits-main .user-credits-history .history-detail-row td {
  background-color: rgba(26, 17, 35, 0.85);
  padding: 16px;
}
.user-credits-main .user-credits-history .history-detail-header {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.user-credits-main .user-credits-history .history-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.user-credits-main .user-credits-history .history-phase {
  flex: 1 1 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  background-color: rgba(0, 0, 0, 0.25);
}
.user-credits-main .user-credits-history .history-phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.user-credits-main .user-credits-history .history-phase-header .history-phase-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}
.user-credits-main .user-credits-history .history-phase-header .history-phase-model {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.user-credits-main .user-credits-history .history-phase-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.user-credits-main .user-credits-history .history-phase-body .history-phase-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.user-credits-main .user-credits-history .history-phase-body .history-phase-row span:first-child {
  color: rgba(255, 255, 255, 0.4);
}
.user-credits-main .user-credits-history .history-detail-empty {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.credit-profiles-wrapper {
  margin-top: 12px;
}
.credit-profiles-wrapper .credit-advanced-toggle {
  margin-bottom: 10px;
}
.credit-profiles-wrapper .credit-advanced-toggle .arc-checkbox-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.credit-profiles-wrapper .credit-profiles-table.hide-advanced th:nth-child(6),
.credit-profiles-wrapper .credit-profiles-table.hide-advanced th:nth-child(7),
.credit-profiles-wrapper .credit-profiles-table.hide-advanced th:nth-child(8),
.credit-profiles-wrapper .credit-profiles-table.hide-advanced td:nth-child(6),
.credit-profiles-wrapper .credit-profiles-table.hide-advanced td:nth-child(7),
.credit-profiles-wrapper .credit-profiles-table.hide-advanced td:nth-child(8) {
  display: none;
}

.credit-advanced-block {
  margin-bottom: 20px;
}
.credit-advanced-block summary.credit-advanced-summary {
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.credit-advanced-block summary.credit-advanced-summary::marker {
  color: #7be8e3;
}

.credit-global-examples {
  font-size: 0.9rem;
  font-weight: 500;
}
.credit-global-examples strong {
  font-size: 1rem;
}

.toastify-content {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

.toast {
  padding: 16px 24px !important;
  border-radius: 12px !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid !important;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  animation: slideInRight 0.3s ease-out;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
  right: 30px;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.toast-icon {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.toast-message {
  word-break: break-word;
  max-width: 400px;
  padding-right: 12px;
}

.toast-success {
  background: linear-gradient(135deg, rgba(47, 243, 133, 0.45), rgba(47, 243, 133, 0.35)) !important;
  border-color: rgba(47, 243, 133, 0.5) !important;
  color: #2ff385 !important;
}
.toast-success .toast-icon {
  fill: #fff;
}
.toast-success .toast-message {
  color: #fff;
}
.toast-success:hover {
  background: linear-gradient(135deg, rgba(47, 243, 133, 0.75), rgba(47, 243, 133, 0.65)) !important;
  box-shadow: 0 16px 48px rgba(47, 243, 133, 0.2) !important;
}

.toast-error {
  background: linear-gradient(135deg, rgba(245, 11, 10, 0.45), rgba(245, 11, 10, 0.35)) !important;
  border-color: rgba(245, 11, 10, 0.5) !important;
  color: #f50b0a !important;
}
.toast-error .toast-icon {
  fill: #fff;
}
.toast-error .toast-message {
  color: #fff;
}
.toast-error:hover {
  background: linear-gradient(135deg, rgba(245, 11, 10, 0.75), rgba(245, 11, 10, 0.65)) !important;
  box-shadow: 0 16px 48px rgba(245, 11, 10, 0.2) !important;
}

.toast-warning {
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.45), rgba(255, 188, 19, 0.35)) !important;
  border-color: rgba(255, 188, 19, 0.5) !important;
  color: #ffbc13 !important;
}
.toast-warning .toast-icon {
  fill: #fff;
}
.toast-warning .toast-message {
  color: #fff;
}
.toast-warning:hover {
  background: linear-gradient(135deg, rgba(255, 188, 19, 0.75), rgba(255, 188, 19, 0.65)) !important;
  box-shadow: 0 16px 48px rgba(255, 188, 19, 0.2) !important;
}

.toast-info {
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.45), rgba(123, 232, 227, 0.35)) !important;
  border-color: rgba(123, 232, 227, 0.5) !important;
  color: #7be8e3 !important;
}
.toast-info .toast-icon {
  fill: #fff;
}
.toast-info .toast-message {
  color: #fff;
}
.toast-info:hover {
  background: linear-gradient(135deg, rgba(123, 232, 227, 0.75), rgba(123, 232, 227, 0.65)) !important;
  box-shadow: 0 16px 48px rgba(123, 232, 227, 0.2) !important;
}

.toast .toast-close {
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 0.7;
  transition: all 0.3s ease;
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 0;
  margin: 0;
  height: 14px;
}
.toast .toast-close svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}
.toast .toast-close:hover {
  color: #fff !important;
  opacity: 1;
}

.toastify-right {
  right: 32px !important;
}

.toastify-left {
  left: 16px;
}

.toastify-top {
  top: 80px;
}

.toastify-bottom {
  bottom: 24px;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}
@media (max-width: 640px) {
  .toast {
    padding: 12px 16px !important;
    font-size: 0.9rem;
    max-width: 90vw;
  }

  .toast-message {
    max-width: 260px;
    padding-right: 16px;
  }

  .toastify-right,
.toastify-left {
    right: 8px !important;
    top: 8px !important;
    bottom: auto !important;
  }
}

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