/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
}

.logo-icon {
  font-size: 32px;
}

.logo-text {
  color: #fff;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #888;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #fff;
}

.nav-link-right {
  margin-left: auto;
}

/* Main Content */
.main {
  flex: 1;\n  padding: 20px 20px;\n}

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

/* Hero Section */
.hero {
  text-align: center;
  padding: 20px 20px 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 20px;
  color: #888;
}

/* Upload Section */
.upload-section {
  max-width: 800px;
  margin: 150px auto;
}

.drop-zone {
  background: rgba(30, 30, 30, 0.8);
  border: 3px solid #444;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.drop-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(100, 100, 100, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.drop-zone:hover {
  border-color: #666;
  background: rgba(40, 40, 40, 0.9);
  transform: translateY(-4px);
}

.drop-zone.dragover {
  border-color: #fff;
  background: rgba(50, 50, 50, 0.95);
  transform: scale(1.02);
}

.drop-zone-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.drop-zone-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: -5px;
}

.drop-zone-text {
  font-size: 15px;
  color: #888;
  margin-bottom: 15px;
  text-decoration: none;
}

.drop-zone-limit {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

/* Features Row */
.features-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* Files Page */
.files-header {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.files-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.files-container {
  max-width: 1900px;
  margin: 0 auto;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px 24px;
}

.files-table {
  width: 100%;
  border-collapse: collapse;
}

.files-table th {
  text-align: left;
  padding: 16px 12px;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid #444;
}

.files-table th:nth-child(1) {
  min-width: 250px;
}

.files-table th:nth-child(2) {
  min-width: 80px;
}

.files-table th:nth-child(3) {
  min-width: 120px;
}

.files-table th:nth-child(4) {
  min-width: 100px;
}

.files-table th:nth-child(5) {
  min-width: 150px;
}

.files-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #333;
  white-space: nowrap;
  height: 50px;
  vertical-align: middle;
}

.files-table tr:last-child td {
  border-bottom: none;
}

.files-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.file-name {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.file-name:hover {
  color: #4ade80;
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.status-public {
  background: rgba(74, 222, 128, 0.2);
}

.status-protected {
  background: rgba(250, 204, 21, 0.2);
}

.status-public {
  background: rgba(74, 222, 128, 0.2);
}

.status-e2e {
  background: rgba(147, 51, 234, 0.2);
}

.status-protected {
  background: rgba(250, 204, 21, 0.2);
}

.copy-link-btn {
  background: linear-gradient(135deg, #444 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-link-btn:hover {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.edit-btn {
  background: linear-gradient(135deg, #444 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.edit-btn:hover {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.delete-btn {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delete-btn:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.files-empty {
  text-align: center;
  padding: 60px 40px;
}

.files-empty-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.files-empty-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.files-empty-text {
  font-size: 16px;
  color: #888;
  margin-bottom: 32px;
}

.files-empty-button {
  display: inline-block;
  background: linear-gradient(135deg, #444 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.files-empty-button:hover {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 16px;
  color: #888;
}

/* Manage Page */
.manage-header {
  text-align: center;
  padding: 20px 20px;
}

.manage-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.manage-subtitle {
  font-size: 18px;
  color: #888;
}

.manage-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.manage-info-section,
.manage-settings-section {
  flex: 1;
  min-width: 300px;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px 24px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #444;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #444;
}

.section-header .section-title {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Full-width Share Section */
.manage-share-section-full {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto 40px;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px 24px;
}

/* Info Grid */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.info-label {
  color: #888;
  font-size: 15px;
}

.info-value {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.status-protected {
  color: #ffffff;
}

.status-none {
  color: #facc15;
}

/* Settings Form */
.settings-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* Toggle Switch */
.toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.toggle-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2d2d2d;
  transition: 0.3s;
  border-radius: 28px;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: #888;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-checkbox:checked + .toggle-slider {
  background: #4ade80;
}

.toggle-checkbox:checked + .toggle-slider::before {
  transform: translateX(24px);
  background: #fff;
}

.toggle-text {
  color: #e0e0e0;
  font-size: 15px;
  font-weight: 500;
  width: 120px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Password Group */
.password-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.label-text {
  color: #888;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  width: 120px;
}

.e2e-panel {\n  max-width: 600px;\n  margin: 40px auto 0;\n  padding: 40px;\n  background: rgba(30, 30, 30, 0.8);\n  border: 1px solid #444;\n  border-radius: 12px;\n}

.e2e-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 20px;
  margin-bottom: 12px;
}

.e2e-label-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #4ade80;
  color: #000;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  font-family: serif;
  cursor: help;
  position: relative;
  transition: all 0.3s ease;
}

.info-icon:hover {
  background: #22c55e;
  transform: scale(1.1);
}

.info-icon::after {
  content: 'ENCRYPTED LOCALLY. SERVER NEVER SEES PASSWORD. LOST PASSWORD = LOST FILES!';
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #e0e0e0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  white-space: normal;
  width: 300px;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.info-icon:hover::after {
  opacity: 1;
  visibility: visible;
}

.e2e-label {
  color: #888;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.e2e-input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.e2e-button-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.e2e-input {
  flex: 1;
  min-width: 300px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 14px;
  color: #e0e0e0;
  font-size: 14px;
  transition: border-color 0.3s;
}

.e2e-input:focus {
  outline: none;
  border-color: #4ade80;
}

.e2e-input::placeholder {
  color: #666;
}

.e2e-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 110px;
}

.e2e-btn:hover {
  background: #555;
}

#generateBtn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

#generateBtn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

#copyBtn {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
}

#copyBtn:hover {
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

.e2e-note {
  color: #4ade80;
  font-size: 14px;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.copy-toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
  color: #000;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-input,
.form-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
  border-radius: 8px;
  padding: 12px 16px;
  color: #e0e0e0;
  font-size: 16px;
  transition: border-color 0.3s;
  flex: 1;
  min-width: 0;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #666;
}

.form-select option {
  background: #1a1a1a;
  color: #e0e0e0;
}

.form-input::placeholder {
  color: #666;
}

.form-submit {
  background: linear-gradient(135deg, #444 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Share Box */
.share-box {
  display: flex;
  gap: 12px;
}

.share-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
  border-radius: 8px;
  padding: 12px 16px;
  color: #888;
  font-size: 14px;
  font-family: 'Monaco', 'Courier New', monospace;
}

.copy-button {
  background: linear-gradient(135deg, #444 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.copy-button:hover {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  transform: translateY(-2px);
}

.share-note {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

.delete-file-btn {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delete-file-btn:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.upload-progress {
  text-align: center;
  color: #e0e0e0;
}

.upload-progress p#progressStatus {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #333;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #10b981);
  transition: width 0.3s ease;
  width: 0%;
}

.upload-progress p {
  margin: 8px 0;
  font-size: 16px;
}

.progress-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  gap: 20px;
}

.progress-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.progress-stat-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.progress-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #4ade80;
  min-width: 80px;
  text-align: center;
}

/* Flash Messages */
.flash-messages {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  pointer-events: none;
}

.flash-message {
  background: #4ade80;
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  color: #000;
  text-align: center;
  pointer-events: auto;
  text-transform: uppercase;
  font-weight: 600;
}

/* Password & Not Found Sections */
.pw-section,
.notfound-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 20px;
}

.pw-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.notfound-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.pw-icon,
.notfound-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.pw-title,
.notfound-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pw-subtitle,
.notfound-subtitle {
  font-size: 16px;
  color: #888;
  margin-bottom: 32px;
}

.pw-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.pw-input-wrapper {
  width: 100%;
}

.pw-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
  border-radius: 8px;
  padding: 14px 18px;
  color: #e0e0e0;
  font-size: 16px;
  transition: border-color 0.3s;
  text-align: center;
}

.pw-input:focus {
  outline: none;
  border-color: #666;
}

.pw-submit {
  background: linear-gradient(135deg, #444 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pw-submit:hover {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.notfound-button {
  display: inline-block;
  background: linear-gradient(135deg, #444 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.notfound-button:hover {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid #333;
  padding: 10px 20px 8px;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.footer-section h3 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-section ul,
.footer-section ol {
  list-style: none;
}

.footer-section li {
  color: #888;
  padding: 2px 0;
  font-size: 11px;
}

.footer-section p {
  color: #888;
  font-size: 10px;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 10px auto 0;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  color: #666;
  font-size: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .docs-title {
    font-size: 32px;
  }

  .files-title {
    font-size: 32px;
  }

  .manage-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .drop-zone {
    padding: 60px 20px;
  }
  
  .drop-zone-icon {
  font-size: 42px;
  }
  
  .drop-zone-title {
    font-size: 22px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
  }
  
  .manage-layout {
    flex-direction: column;
  }
  
  .nav {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 14px;
  }
  
  .share-box {
    flex-direction: column;
  }
}

/* Docs Page */
.docs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px;
  background: transparent;
}

.docs-header {
  text-align: center;
  padding: 20px 20px;
  margin-bottom: 60px;
}

.docs-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.docs-subtitle {
  font-size: 18px;
  color: #888;
}

.docs-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.docs-section {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 32px;
}

.docs-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #444;
}

.api-endpoint {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.api-method {
  background: #4ade80;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  min-width: 70px;
  text-align: center;
}

.api-path {
  font-family: 'Monaco', 'Courier New', monospace;
  color: #e0e0e0;
  font-size: 16px;
  font-weight: 600;
}

.api-description {
  margin-bottom: 24px;
}

.api-description p {
  color: #888;
  font-size: 15px;
  line-height: 1.6;
}

.code-block {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #444;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(50, 50, 50, 0.6);
  border-bottom: 1px solid #444;
}

.code-title {
  color: #888;
  font-size: 13px;
  font-weight: 600;
}

.copy-btn {
  background: linear-gradient(135deg, #444 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  transform: translateY(-1px);
}

.code-block pre {
  padding: 16px;
  margin: 0;
  overflow-x: auto;
}

.code-block code {
  color: #e0e0e0;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
}

.api-params,
.api-response {
  margin-top: 32px;
}

.api-params h3,
.api-response h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.param-table {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.param-row {
  display: grid;
  grid-template-columns: 180px 120px 1fr;
  padding: 12px 16px;
  border-bottom: 1px solid #333;
}

.param-row:last-child {
  border-bottom: none;
}

.param-header {
  background: rgba(50, 50, 50, 0.6);
  font-weight: 600;
  color: #888;
  font-size: 13px;
}

.param-name {
  color: #4ade80;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 14px;
}

.param-type {
  color: #facc15;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 14px;
}

.param-desc {
  color: #888;
  font-size: 14px;
}