<<<<<<< HEAD
:root {
  --bg: #07111f;
  --bg-soft: #0c1b31;
  --panel: rgba(18, 34, 55, 0.78);
  --panel-strong: rgba(23, 47, 72, 0.92);
  --line: rgba(126, 167, 212, 0.18);
  --text: #edf4ff;
  --muted: #9eb0ca;
  --accent: #76e4c4;
  --accent-strong: #51b7ff;
  --accent-darker: #2f6fb4;
  --warn: #f7c66b;
  --success: #77d6a0;
  --danger: #ff7c7c;
  --radius-lg: 8px;
  --radius-md: 6px;
  --shadow: 0 20px 60px rgba(2, 10, 25, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(81, 183, 255, 0.14), transparent 32%),
    linear-gradient(240deg, rgba(118, 228, 196, 0.12), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #0b1725 48%, #07101c 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
  animation: gridDrift 18s linear infinite;
}

@keyframes gridDrift {
  to { background-position: 56px 56px; }
}

/* ── Header ────────────────────────────────────── */
.deobf-header {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: transform 200ms ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #06111f;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(81, 183, 255, 0.22);
}

.brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.user-greeting {
  color: var(--muted);
  font-size: 0.95rem;
}

.btn-sign-out {
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.btn-sign-out:hover {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-strong);
}

/* ── Main Content ────────────────────────────────────── */
.deobf-main {
  flex: 1;
}

.deobf-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

.deobf-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
}

.deobf-heading h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.deobf-subtext {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Workspace ────────────────────────────────────── */
.deobf-workspace {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.workspace-input,
.workspace-output {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  padding: 1.5rem;
  min-height: 600px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.workspace-input::before,
.workspace-output::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(118, 228, 196, 0.08), transparent),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 5px);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 220ms ease;
}

.workspace-input:focus-within::before,
.workspace-output:focus-within::before {
  opacity: 1;
  animation: scanSweep 2.8s ease-in-out infinite;
}

@keyframes scanSweep {
  50% { transform: translateX(40%); }
  100% { transform: translateX(-40%); }
}

.input-header,
.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.input-label,
.output-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.input-tools,
.output-tools {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.tool-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 200ms ease;
}

.tool-btn:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.char-count {
  color: var(--muted);
  font-size: 0.85rem;
}

.code-textarea {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.16);
  border-radius: var(--radius-md);
  background: rgba(5, 16, 32, 0.6);
  color: var(--text);
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  resize: none;
  outline: none;
  transition: all 200ms ease;
}

.code-textarea:focus {
  border-color: var(--accent-strong);
  background: rgba(5, 16, 32, 0.8);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

.code-textarea::placeholder {
  color: rgba(158, 176, 202, 0.5);
}

.code-textarea.output {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  cursor: text;
}

.output-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  text-align: center;
}

.output-placeholder p {
  margin: 0;
}

.output-placeholder p:first-child {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ── Workspace Settings ────────────────────────────────────── */
.workspace-settings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.settings-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.setting-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.engine-select {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.engine-option {
  padding: 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 200ms ease;
}

.engine-option:hover {
  border-color: var(--accent);
  background: rgba(118, 228, 196, 0.08);
  transform: translateY(-2px);
}

.engine-option.active {
  border-color: var(--accent-strong);
  background: linear-gradient(135deg, rgba(81, 183, 255, 0.18), rgba(118, 228, 196, 0.09));
  box-shadow: 0 0 0 1px rgba(118, 228, 196, 0.12), 0 12px 28px rgba(2, 10, 25, 0.26);
}

.engine-icon {
  min-width: 2.2rem;
  min-height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 167, 212, 0.22);
  border-radius: 6px;
  color: var(--warn);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.engine-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.engine-desc {
  font-size: 0.75rem;
  color: var(--muted);
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 200ms ease;
}

.checkbox-option:hover {
  color: var(--text);
}

.checkbox-option input {
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
  accent-color: var(--accent-strong);
}

.btn-deobfuscate {
  margin-top: auto;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #06111f;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3rem;
  box-shadow: 0 8px 20px rgba(81, 183, 255, 0.24);
}

.btn-deobfuscate:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(118, 228, 196, 0.24);
}

.btn-deobfuscate:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Status Panel ────────────────────────────────────── */
.status-panel {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}

.status-message {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  animation: slideDown 200ms ease;
  width: 100%;
}

.status-success {
  background: rgba(119, 214, 160, 0.12);
  border: 1px solid rgba(119, 214, 160, 0.24);
  color: #a8f5d4;
}

.status-error {
  background: rgba(255, 124, 124, 0.12);
  border: 1px solid rgba(255, 124, 124, 0.24);
  color: #ff9e9e;
}

.status-info {
  background: rgba(192, 132, 252, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.24);
  color: #d8b4fe;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Footer ────────────────────────────────────── */
.deobf-footer {
  border-top: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.deobf-footer a {
  color: var(--accent);
  transition: color 200ms ease;
}

.deobf-footer a:hover {
  color: var(--accent-strong);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1200px) {
  .deobf-workspace {
    grid-template-columns: 1fr;
  }

  .workspace-settings {
    order: 2;
  }

  .workspace-input {
    order: 1;
  }

  .workspace-output {
    order: 3;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .header-nav {
    width: 100%;
    gap: 1rem;
  }

  .deobf-section {
    padding: 2rem 1.5rem;
  }

  .deobf-heading h1 {
    font-size: 1.75rem;
  }

  .deobf-workspace {
    gap: 1rem;
  }

  .workspace-input,
  .workspace-output {
    min-height: 400px;
    padding: 1rem;
  }

  .input-tools,
  .output-tools {
    width: 100%;
  }

  .tool-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .deobf-heading h1 {
    font-size: 1.5rem;
  }

  .deobf-section {
    padding: 1rem;
  }

  .workspace-input,
  .workspace-output {
    min-height: 300px;
    padding: 0.75rem;
  }

  .engine-option {
    padding: 0.75rem;
  }

  .btn-deobfuscate {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}
=======
:root {
  --bg: #07111f;
  --bg-soft: #0c1b31;
  --panel: rgba(168, 85, 247, 0.08);
  --panel-strong: rgba(168, 85, 247, 0.14);
  --line: rgba(168, 85, 247, 0.16);
  --text: #edf4ff;
  --muted: #9eb0ca;
  --accent: #c084fc;
  --accent-strong: #a855f7;
  --accent-darker: #7e22ce;
  --success: #77d6a0;
  --danger: #ff7c7c;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow: 0 20px 60px rgba(2, 10, 25, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.15), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(192, 132, 252, 0.10), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #09172a 45%, #081321 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
}

/* ── Header ────────────────────────────────────── */
.deobf-header {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: transform 200ms ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #06111f;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.24);
}

.brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.user-greeting {
  color: var(--muted);
  font-size: 0.95rem;
}

.btn-sign-out {
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.btn-sign-out:hover {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-strong);
}

/* ── Main Content ────────────────────────────────────── */
.deobf-main {
  flex: 1;
}

.deobf-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

.deobf-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
}

.deobf-heading h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.deobf-subtext {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Workspace ────────────────────────────────────── */
.deobf-workspace {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.workspace-input,
.workspace-output {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
  padding: 1.5rem;
  min-height: 600px;
}

.input-header,
.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.input-label,
.output-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.input-tools,
.output-tools {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.tool-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 200ms ease;
}

.tool-btn:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.char-count {
  color: var(--muted);
  font-size: 0.85rem;
}

.code-textarea {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.16);
  border-radius: var(--radius-md);
  background: rgba(5, 16, 32, 0.6);
  color: var(--text);
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  resize: none;
  outline: none;
  transition: all 200ms ease;
}

.code-textarea:focus {
  border-color: var(--accent-strong);
  background: rgba(5, 16, 32, 0.8);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

.code-textarea::placeholder {
  color: rgba(158, 176, 202, 0.5);
}

.code-textarea.output {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  cursor: text;
}

.output-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  text-align: center;
}

.output-placeholder p {
  margin: 0;
}

.output-placeholder p:first-child {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ── Workspace Settings ────────────────────────────────────── */
.workspace-settings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.settings-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.setting-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.engine-select {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.engine-option {
  padding: 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 200ms ease;
}

.engine-option:hover {
  border-color: var(--accent);
  background: rgba(168, 85, 247, 0.08);
}

.engine-option.active {
  border-color: var(--accent-strong);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.08));
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.2);
}

.engine-icon {
  font-size: 1.5rem;
}

.engine-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.engine-desc {
  font-size: 0.75rem;
  color: var(--muted);
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 200ms ease;
}

.checkbox-option:hover {
  color: var(--text);
}

.checkbox-option input {
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
  accent-color: var(--accent-strong);
}

.btn-deobfuscate {
  margin-top: auto;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #06111f;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3rem;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.24);
}

.btn-deobfuscate:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.32);
}

.btn-deobfuscate:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Status Panel ────────────────────────────────────── */
.status-panel {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}

.status-message {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  animation: slideDown 200ms ease;
  width: 100%;
}

.status-success {
  background: rgba(119, 214, 160, 0.12);
  border: 1px solid rgba(119, 214, 160, 0.24);
  color: #a8f5d4;
}

.status-error {
  background: rgba(255, 124, 124, 0.12);
  border: 1px solid rgba(255, 124, 124, 0.24);
  color: #ff9e9e;
}

.status-info {
  background: rgba(192, 132, 252, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.24);
  color: #d8b4fe;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Footer ────────────────────────────────────── */
.deobf-footer {
  border-top: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.deobf-footer a {
  color: var(--accent);
  transition: color 200ms ease;
}

.deobf-footer a:hover {
  color: var(--accent-strong);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1200px) {
  .deobf-workspace {
    grid-template-columns: 1fr;
  }

  .workspace-settings {
    order: 2;
  }

  .workspace-input {
    order: 1;
  }

  .workspace-output {
    order: 3;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .header-nav {
    width: 100%;
    gap: 1rem;
  }

  .deobf-section {
    padding: 2rem 1.5rem;
  }

  .deobf-heading h1 {
    font-size: 1.75rem;
  }

  .deobf-workspace {
    gap: 1rem;
  }

  .workspace-input,
  .workspace-output {
    min-height: 400px;
    padding: 1rem;
  }

  .input-tools,
  .output-tools {
    width: 100%;
  }

  .tool-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .deobf-heading h1 {
    font-size: 1.5rem;
  }

  .deobf-section {
    padding: 1rem;
  }

  .workspace-input,
  .workspace-output {
    min-height: 300px;
    padding: 0.75rem;
  }

  .engine-option {
    padding: 0.75rem;
  }

  .btn-deobfuscate {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}
>>>>>>> fe63987ffb4cf6ba9ae00474ebd30944e190e48f
