@charset "UTF-8";
a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

p {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

textarea {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  resize: vertical;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

h5 {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-muted {
  color: var(--text-muted);
}

.text-soft {
  color: var(--text-soft);
}

.text-primary {
  color: var(--primary);
}

.text-success {
  color: var(--success);
}

.text-danger {
  color: var(--danger);
}

.text-secondary {
  color: var(--secondary);
}

.text-sm {
  font-size: 0.82rem;
}

.text-xs {
  font-size: 0.72rem;
}

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

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

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.small {
  font-size: 0.82rem;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

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

.flex-gap-6 {
  display: flex;
  gap: 6px;
}

.flex-gap-10 {
  display: flex;
  gap: 10px;
}

.flex-gap-16 {
  display: flex;
  gap: 16px;
}

.flex-1 {
  flex: 1;
}

.gap-6 {
  gap: 6px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

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

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

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

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

.w-auto {
  width: auto !important;
  width: auto !important;
}

.block {
  display: block;
}

.cursor-pointer {
  cursor: pointer;
}

.v-align-middle {
  vertical-align: middle;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.form-group.mb-0 {
  margin-bottom: 0;
}

.form-group.mb-15 {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.2px;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

input:not([type=checkbox]):not([type=radio]):not([type=range]),
textarea,
select {
  width: 100%;
  padding: 9px 12px;
  margin: 4px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.4;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.15);
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--text-muted);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

select option {
  background: var(--card-bg);
}

.input-inline {
  margin: 0 !important;
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
  width: 100%;
  margin: 4px 0;
  background: var(--input-bg);
  color: var(--text);
}
.btn svg {
  flex-shrink: 0;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.5);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(124, 77, 255, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: #000;
}

/* Gaya untuk tombol Peringatan */
.btn.btn-warning {
  background-color: var(--warning-dim);
  color: var(--warning);
  border-color: var(--warning);
}

.btn.btn-warning:hover {
  background-color: var(--warning);
  color: var(--text);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-danger:hover {
  opacity: 0.88;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-soft);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.btn-sm {
  height: 30px !important;
  padding: 0 10px !important;
  font-size: 0.78rem !important;
  width: auto !important;
  margin: 0 !important;
}

.btn-md {
  height: 34px;
  padding: 0 14px !important;
  font-size: 0.82rem;
  width: auto !important;
  margin: 0 !important;
}

.btn-icon {
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  border-radius: var(--radius-sm);
}

.btn-icon.btn-sm {
  width: 28px !important;
  height: 28px !important;
}

.btn-upgrade-action {
  width: 100% !important;
  font-size: 0.95rem !important;
}

.btn-action.btn-sm {
  padding: 0 6px !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--primary-dim);
  color: var(--primary);
  margin-left: 6px;
  line-height: 1.4;
}

.badge-success {
  background: var(--success-dim) !important;
  color: var(--success) !important;
}

.badge-danger {
  background: var(--danger-dim) !important;
  color: var(--danger) !important;
}

.badge-warning {
  background: var(--warning-dim) !important;
  color: var(--warning) !important;
}

.badge-cyan {
  background: var(--secondary-dim) !important;
  color: var(--secondary) !important;
}

.badge-promo {
  margin-bottom: 1rem !important;
  padding: 5px 15px !important;
  font-size: 0.75rem !important;
  margin-left: 0 !important;
  margin-bottom: 1rem !important;
  padding: 5px 15px !important;
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: var(--danger-dim);
  border: 1px solid rgba(255, 82, 82, 0.3);
  color: var(--danger);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.alert-success {
  background: var(--success-dim) !important;
  border-color: rgba(0, 200, 83, 0.3) !important;
  color: var(--success) !important;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-modal);
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modal-anim 0.2s ease-out;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
}

.modal-sm {
  max-width: 380px;
}

.modal-input {
  width: 400px;
}

.modal-md {
  width: 480px;
}

.modal-lg {
  width: 720px;
}

.modal-xl {
  width: 930px;
}

.modal-wide {
  width: calc(100vw - 32px);
  max-width: 1000px;
}

.modal-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal-header h3 {
  margin: 0;
  font-size: 1rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  border-radius: var(--radius-sm);
  display: flex;
  transition: all var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.modal-body {
  padding: 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.modal-body input:not([type=checkbox]):not([type=radio]),
.modal-body select,
.modal-body textarea {
  font-size: 0.85rem;
}

.modal-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  cursor: move;
}

.modal-footer-btn {
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  transition: var(--transition);
}

.modal-footer-btn:hover {
  border-color: var(--primary);
}

#alert-close-btn,
#prompt-confirm-btn,
#confirm-btn {
  background: var(--primary);
  border-color: var(--primary);
}

.modal-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.conversion-timer {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: right;
  font-family: monospace;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card h3 {
  margin-bottom: 6px;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-glass {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
}

.card-accent-left {
  border-left: 3px solid var(--primary);
}

.card-accent-cyan {
  border-left: 3px solid var(--secondary);
}

.card-accent-green {
  border-left: 3px solid var(--success);
}

.card-upgrade {
  border: 2px solid var(--primary) !important;
}

.card-basic-plan {
  border-left: 4px solid var(--secondary) !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
}

.project-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}

.project-card:hover {
  border-color: var(--border-light);
  background: var(--card-bg-hover);
  box-shadow: var(--shadow-sm);
}

.project-card-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.project-card-body {
  flex: 1;
  min-width: 0;
}
.project-card-body strong {
  display: block;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.project-card-body small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.project-card-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100dvh;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 500;
  transition: width var(--transition), transform var(--transition);
  overflow: hidden;
}

body.preload .sidebar {
  transition: none !important;
}

.sidebar.collapsed {
  width: var(--sidebar-collapsed-w);
}
.sidebar.collapsed .sidebar-section-label {
  opacity: 0;
}
.sidebar.collapsed .item-label {
  opacity: 0;
  width: 0;
  overflow: hidden;
}
.sidebar.collapsed .sidebar-item {
  justify-content: center;
  padding: 9px 9px 9px 17px;
}
.sidebar.collapsed .sidebar-item.active::before {
  left: -8px;
}
.sidebar.collapsed .sidebar-user {
  justify-content: center;
}
.sidebar.collapsed .sidebar-user .user-info {
  display: none;
}
.sidebar.collapsed .sidebar-footer {
  padding: 12px 4px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  height: var(--topbar-h);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sidebar-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.sidebar-logo .logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
}
.sidebar-logo .logo-text span {
  color: var(--secondary);
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 0;
}

.sidebar-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px 4px;
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: var(--text-soft);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  margin: 1px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.sidebar-item svg {
  flex-shrink: 0;
}
.sidebar-item .item-label {
  transition: opacity var(--transition);
  font-size: 0.875rem;
}

.sidebar-item:hover,
.sidebar-item.active {
  background: var(--primary-dim);
  color: var(--text);
}

.sidebar-item.active {
  color: var(--primary);
  font-weight: 600;
}

.sidebar-item.active::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 25%;
  bottom: 25%;
  width: 3px;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
}

.sidebar-footer {
  padding: 12px 8px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: default;
  overflow: hidden;
}
.sidebar-user .user-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.sidebar-user .user-info {
  overflow: hidden;
}
.sidebar-user .user-name {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.sidebar-user .user-plan {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.sidebar-toggle-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: auto;
}

.sidebar-toggle-btn:hover {
  color: var(--text);
  background: var(--primary-dim);
}

.sidebar .sidebar-toggle-btn .icon-collapse {
  display: none;
}
.sidebar .sidebar-toggle-btn .icon-expand {
  display: inline-block;
}

.sidebar.collapsed .sidebar-toggle-btn .icon-collapse {
  display: inline-block;
}
.sidebar.collapsed .sidebar-toggle-btn .icon-expand {
  display: none;
}

.sidebar.collapsed ~ .main-wrap {
  left: var(--sidebar-collapsed-w);
  width: calc(100vw - var(--sidebar-collapsed-w));
  max-width: calc(100vw - var(--sidebar-collapsed-w));
}
.sidebar.collapsed ~ .main-wrap .topbar {
  left: var(--sidebar-collapsed-w);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 499;
}

.sidebar-overlay.show {
  display: block;
}

.topbar-icon-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s ease;
  padding: 0;
}
.topbar-icon-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}
.topbar-icon-btn svg {
  display: block;
}
.topbar-icon-btn .notification-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--danger, #ff4d4f);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #0d1117;
  /* matches topbar background */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}

.topbar-user-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px 4px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.topbar-user-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.topbar-user-btn .user-avatar-circle {
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.topbar-user-btn .user-name-topbar {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
@media (max-width: 576px) {
  .topbar-user-btn {
    padding: 4px;
  }
  .topbar-user-btn .user-name-topbar {
    display: none;
  }
}

.dropdown-header {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

/* Notification Dropdown Styles */
.topbar-right .dropdown-content.notification-dropdown {
  min-width: 280px;
  max-width: 320px;
}

.notification-list {
  max-height: 360px;
  overflow-y: auto;
}

.notification-item-link {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  text-decoration: none;
  position: relative;
  background: transparent;
}
.notification-item-link.unread {
  background: rgba(124, 77, 255, 0.05);
}
.notification-item-link .notif-title {
  font-size: 0.85rem;
  color: var(--text);
  padding-right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}
.notification-item-link.unread .notif-title {
  font-weight: 600;
}
.notification-item-link .unread-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  float: right;
}
.notification-item-link .notif-message {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notification-item-link .notif-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.notification-empty-state {
  padding: 24px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mark-all-read-link {
  font-size: 0.72rem;
  text-decoration: underline;
  color: var(--primary);
  font-weight: normal;
  cursor: pointer;
  padding: 0;
  transition: none;
  border: none;
  background: transparent;
  display: inline;
}

.track-item .track-meta {
  cursor: grab;
}

.drop-indicator {
  height: 2px;
  background-color: var(--primary);
  margin: 2px 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  height: var(--topbar-h);
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 400;
  gap: 12px;
  transition: left var(--transition);
}

.topbar-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.topbar-menu-btn:hover {
  color: var(--text);
  background: var(--primary-dim);
}

.topbar-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.topbar-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.topbar-breadcrumb a {
  color: var(--text-muted);
}
.topbar-breadcrumb a:hover {
  color: var(--secondary);
}
.topbar-breadcrumb .sep {
  color: var(--border-light);
}

.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-badge {
  background: var(--primary-dim);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  padding: 5px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: var(--card-bg);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 8px;
}
.dropdown-content a {
  color: var(--text);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.dropdown-content a:hover {
  background: var(--border);
}

.dropdown-content.center {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown.show .dropdown-content {
  display: block;
  animation: fadeIn 0.15s ease;
}

.dropdown-user-header {
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.dropdown-user-header .user-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-user-header .badge {
  margin-left: 0;
  flex-shrink: 0;
}

.dropdown .dropdown-content.right a svg, .dropdown .dropdown-content.right a span.item-icon {
  vertical-align: middle;
  line-height: 1;
  margin-bottom: 2px;
  width: 16px;
  height: 16px;
  text-align: center;
  display: inline-block;
}
.dropdown .dropdown-content.right a .item-label {
  padding-left: 0px;
}

:root {
  --bg: #080b12;
  --bg-alt: #0d1117;
  --card-bg: #111827;
  --card-bg-hover: #161f2e;
  --sidebar-bg: #0d1117;
  --sidebar-w: 240px;
  --sidebar-collapsed-w: 64px;
  --topbar-h: 56px;
  --primary: #7c4dff;
  --primary-hover: #6a3de8;
  --primary-dim: rgba(124, 77, 255, 0.12);
  --primary-glow: rgba(124, 77, 255, 0.35);
  --secondary: #00e5ff;
  --secondary-dim: rgba(0, 229, 255, 0.12);
  --accent: #f48fb1;
  --text: #e2e8f0;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --border: #1e2733;
  --border-light: #263040;
  --danger: #ff5252;
  --danger-dim: rgba(255, 82, 82, 0.12);
  --success: #00c853;
  --success-dim: rgba(0, 200, 83, 0.12);
  --warning: #ffab40;
  --warning-dim: rgba(255, 171, 64, 0.12);
  --input-bg: #141b26;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: 0.18s ease;
  --radius-modal: 5px;
}

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

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

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #2a3444;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a4a5e;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #2a3444 var(--bg);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
  box-sizing: border-box;
}

.app-shell {
  display: flex;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.main-wrap {
  position: relative;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  bottom: 0;
  width: calc(100vw - var(--sidebar-w));
  max-width: calc(100vw - var(--sidebar-w));
  overflow: visible;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: left var(--transition), width var(--transition);
  /* z-index dihapus agar tidak membuat stacking context baru yang menjebak modal di bawah sidebar */
}

.main-content {
  flex: 1;
  padding: calc(var(--topbar-h) + 24px) 24px 80px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}

.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 600;
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
}

.bottom-nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  padding: 6px 12px;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition);
  flex: 1;
  font-size: 0.65rem;
  font-weight: 600;
}
.bottom-nav-item .menu-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bottom-nav-item svg {
  width: 22px;
  height: 22px;
}

.bottom-nav-item.active {
  color: var(--primary);
}

.bottom-nav-item:hover {
  color: var(--text);
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}

.page-header-left h1 {
  font-size: 1.4rem;
}
.page-header-left p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2px;
}

.page-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .page-header {
    flex-direction: column;
    gap: 12px;
  }
  .page-header-actions {
    width: 100%;
  }
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .track-item {
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
  }
  .track-item .track-actions-container {
    width: 100%;
    justify-content: flex-start;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .main-content {
    padding: calc(var(--topbar-h) + 16px) 14px 90px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .plan-card {
    padding: 20px 16px;
  }
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.header-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dashboard-actions {
  text-align: right;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card .progress-wrap {
  margin-top: 8px;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(124, 77, 255, 0.04));
  pointer-events: none;
}

.stat-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon.purple {
  background: var(--primary-dim);
  color: var(--primary);
}

.stat-icon.cyan {
  background: var(--secondary-dim);
  color: var(--secondary);
}

.stat-icon.green {
  background: var(--success-dim);
  color: var(--success);
}

.stat-icon.red {
  background: var(--danger-dim);
  color: var(--danger);
}

.stat-icon.orange {
  background: var(--warning-dim);
  color: var(--warning);
}

.stat-body {
  flex: 1;
  min-width: 0;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.stat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .project-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.track-list p {
  padding: 8px 16px;
}

.track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  transition: all var(--transition);
  gap: 14px;
}
.track-item:nth-child(1) {
  border-top: none;
}

.track-item:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.track-info-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.track-info-main strong {
  font-size: 0.95rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.track-actions-container {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.user-avatar-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}
.user-avatar-circle img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.user-item-meta .badge {
  margin-left: 0;
}

.role-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.export-links {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.release-container {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.release-container:hover {
  border-color: var(--border-light);
}

.release-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.release-header:hover {
  background: rgba(255, 255, 255, 0.04);
}

.release-title-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.release-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.release-body {
  padding: 12px;
}

.mini-player {
  background: linear-gradient(135deg, var(--card-bg), rgba(124, 77, 255, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
.mini-player audio {
  width: 100%;
  height: 32px;
  margin-top: 6px;
  accent-color: var(--primary);
}
.mini-player audio::-webkit-media-controls-panel {
  background: var(--input-bg);
}

.mini-player:hover {
  border-color: var(--primary);
}

.mini-player-info {
  flex: 1;
  min-width: 0;
}
.mini-player-info strong {
  font-size: 0.88rem;
  display: block;
}

.player-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.progress-wrap {
  position: relative;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: var(--input-bg);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar-fill.danger {
  background: linear-gradient(90deg, var(--danger), var(--warning));
}

.progress-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
}

.status-bar {
  margin-top: 12px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.status-group {
  margin-bottom: 10px;
}

.status-group:last-child {
  margin-bottom: 0;
}

.status-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.status-bar-label span:first-child {
  color: var(--text);
  font-weight: 600;
}

.plans-grid {
  display: grid;
  gap: 20px;
  /* Mobile-first: 1 column */
  grid-template-columns: 1fr;
  /* Tablet: 2 columns */
}
@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.plans-grid {
  /* Desktop: 4 columns */
}
@media (min-width: 1200px) {
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  transition: background var(--transition);
}

.plan-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px var(--primary-glow);
}

.plan-card.featured::before {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.plan-card.current-plan::before {
  background: var(--success);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.plan-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.feature-list {
  text-align: left;
  margin: 20px 0;
  width: 100%;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.feature-item::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.payment-footer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-tag {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.h2-large {
  font-size: 1.8rem !important;
}

.form-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.form-section h4 {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(124, 77, 255, 0.06) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.profile-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(124, 77, 255, 0.4);
}

.profile-info h2 {
  margin-bottom: 4px;
}
.profile-info .email {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.password-toggle-wrap {
  position: relative;
}
.password-toggle-wrap input {
  padding-right: 42px;
}

.password-toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.password-toggle-btn:hover {
  color: var(--text);
}

.va-number {
  letter-spacing: 3px;
  margin: 10px 0;
  color: var(--primary);
  font-family: monospace;
  font-size: 1.1rem;
}

.qr-container {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  width: 180px;
  margin: 16px auto;
}
.qr-container img {
  display: block;
  width: 100%;
}

.nav-separator {
  margin: 0 12px;
  color: var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: var(--topbar-h);
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 400;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.link-muted {
  color: var(--text-muted);
  text-decoration: none;
}

.user-nav-info {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.login-container {
  max-width: 900px;
  margin: 5vh auto 2rem;
}

.login-title {
  text-align: center;
  margin-bottom: 24px;
}

.login-lang-container {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.captcha-box {
  margin-bottom: 10px;
}
.captcha-box #captcha-img {
  cursor: pointer;
  vertical-align: text-top;
}

.captcha-input {
  margin-top: 5px !important;
}

.all-track-header {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.all-track-header label {
  display: block;
  margin-bottom: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
}
.all-track-header label input[type=checkbox] {
  width: auto !important;
  height: auto !important;
  min-width: 16px;
  min-height: 16px;
  margin: 0 6px 0 0;
  vertical-align: middle;
}

.track-item-row-container {
  max-height: 200px;
  overflow-y: auto;
}

.track-item-row {
  display: block;
  width: 100%;
  margin-bottom: 4px;
}
.track-item-row label {
  display: block;
  cursor: pointer;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.track-item-row label input[type=checkbox] {
  width: auto !important;
  height: auto !important;
  min-width: 16px;
  min-height: 16px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.track-item-row label:hover {
  color: var(--secondary);
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
  border: none;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.empty-state svg {
  opacity: 0.3;
  margin-bottom: 12px;
}

.empty-msg-sm {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}

.status-badges {
  margin-top: 6px;
  display: flex;
  gap: 5px;
}

.controls-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.upgrade-container {
  text-align: center;
  padding-top: 40px;
}

.project-header {
  margin-bottom: 20px;
}

.quota-info {
  margin: 0;
  color: var(--text-muted);
}

.animate-fade-in {
  animation: fadeIn 0.3s ease;
}

@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    width: var(--sidebar-w) !important;
  }
  .sidebar.mobile-open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }
  .sidebar.mobile-open .sidebar-toggle-btn {
    display: none;
  }
  .main-wrap {
    left: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .topbar {
    left: 0 !important;
  }
  .topbar-menu-btn {
    display: flex;
  }
  .bottom-nav {
    display: block;
  }
  .main-content {
    padding-bottom: 70px;
  }
}
@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* Override for dashboard container to be full-width */
.main-content .container {
  max-width: none;
}

/* Styles moved from upgrade.php */
.current-plan-banner {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.plan-banner-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.plan-banner-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.plan-banner-subscriptions {
  font-size: 0.82rem;
}

.plan-card-action {
  margin-top: auto;
  width: 100%;
}

.plan-card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  border-radius: 0 0 8px 8px;
  margin: 0;
}

/* Mencegah .main-wrap (flex item) melebar melebihi ruang yang tersedia saat konten di dalamnya (seperti FAQ) diekspansi. */
.main-wrap {
  min-width: 0;
}

#midi-sticky-player .player-right {
  min-width: 120px;
  flex-shrink: 0;
}/*# sourceMappingURL=style.css.map */