/* ===== CARDS ===== */
.card {
  background: rgba(11, 14, 23, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.card-clickable {
  display: block;
  cursor: pointer;
}

.card-clickable:hover {
  border-color: rgba(0, 163, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.1);
}

/* ===== POST CARD (Horizontal layout — image left, content right) ===== */
.post-card {
  background: rgba(11, 14, 23, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease;
}

.post-card:hover {
  border-color: rgba(0, 163, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.1);
  transform: translateY(-2px);
}

.post-card-image-side {
  width: 33.333%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  max-height: 240px;
}

.post-card-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-image-side img {
  transform: scale(1.05);
}

.post-card-content-side {
  flex: 1;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.post-card-author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.post-card-author-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
}

.post-card-time {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.post-card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  color: #fff;
  background: rgba(0, 163, 255, 0.9);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.post-card-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--sp-2);
  transition: color 0.3s ease;
}

.post-card:hover .post-card-title {
  color: var(--accent);
}

.post-card-excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-image-wrap {
  margin-bottom: var(--sp-3);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.post-card-image {
  position: relative;
  background: var(--bg-secondary);
}

.post-card-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-image-overlay {
  display: none;
}

.cover-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-secondary);
  display: none;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  flex-wrap: wrap;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post-card-meta span {
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s ease;
}

.post-card-meta span:hover {
  color: var(--accent);
}

.post-card-footer {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== FEATURED POST ===== */
.featured-post {
  background: rgba(11, 14, 23, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  transition: all 0.3s ease;
  margin-bottom: var(--sp-4);
}

.featured-post:hover {
  border-color: rgba(0, 163, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 163, 255, 0.15);
  transform: translateY(-2px);
}

.featured-post-image-wrap {
  width: 100%;
  overflow: hidden;
}

.featured-post-image {
  position: relative;
  background: var(--bg-secondary);
}

.featured-post-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-image img {
  transform: scale(1.03);
}

.featured-post-content {
  padding: var(--sp-5);
}

.featured-post-content .post-card-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-2);
}

.featured-post-content .post-card-excerpt {
  font-size: var(--text-base);
}

/* ===== POSTS FEED (vertical list) ===== */
.posts-feed {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.posts-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ===== VOTE BUTTONS ===== */
.vote-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.vote-buttons.horizontal {
  flex-direction: row;
  gap: var(--sp-2);
}

.vote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
  font-size: 11px;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast), transform 0.15s ease;
  user-select: none;
}

.vote-btn:hover {
  color: var(--accent);
  background: rgba(0, 163, 255, 0.1);
  transform: scale(1.15);
}

.vote-btn.upvoted {
  color: var(--accent);
  text-shadow: 0 0 8px rgba(0, 163, 255, 0.5);
}

.vote-btn.downvoted {
  color: var(--red);
}

.vote-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.vote-count {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-secondary);
  min-width: 24px;
  text-align: center;
}

/* ===== THREAD CARD ===== */
.thread-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition-fast);
}

.thread-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.thread-card:last-child {
  border-bottom: none;
}

.thread-card-votes {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
  flex-shrink: 0;
  padding-top: 2px;
}

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

.thread-card-title {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: var(--sp-1);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  transition: color 0.2s ease;
}

.thread-card:hover .thread-card-title {
  color: var(--accent);
}

.thread-card-info {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.thread-card-info span + span::before {
  content: "\00B7";
  margin-right: var(--sp-2);
}

.thread-card-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.threads-list {
  background: rgba(11, 14, 23, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
  line-height: 1.4;
}

.badge-sm {
  font-size: 10px;
  padding: 1px 6px;
}

.badge-accent {
  background: var(--accent-muted);
  color: var(--accent);
}

.badge-green {
  background: var(--green-bg);
  color: var(--green);
}

.badge-yellow {
  background: var(--yellow-bg);
  color: var(--yellow);
}

.badge-red {
  background: var(--red-bg);
  color: var(--red);
}

.badge-muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.role-admin {
  background: var(--red-bg);
  color: var(--red);
}

.role-moderator {
  background: var(--accent-muted);
  color: var(--accent);
}

.role-user {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.flair {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
}

.pinned-badge,
.locked-badge {
  font-size: var(--text-sm);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 163, 255, 0.2);
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
  box-shadow: 0 0 25px rgba(0, 163, 255, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.btn-danger {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.btn-sm {
  padding: 5px 12px;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 12px 24px;
  font-size: var(--text-base);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  color: var(--text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-icon:hover {
  background: rgba(0, 163, 255, 0.1);
  color: var(--accent);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: var(--sp-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  margin-bottom: var(--sp-1);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow 0.3s ease;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.15);
}

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

.form-hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--sp-1);
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

/* ===== TABS BAR ===== */
.tabs-bar {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--sp-4);
  overflow-x: auto;
}

.tab-item {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast), text-shadow 0.3s ease;
  white-space: nowrap;
  background: none;
  cursor: pointer;
}

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

.tab-item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-shadow: 0 0 8px rgba(0, 163, 255, 0.3);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  margin-top: var(--sp-6);
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
  cursor: pointer;
}

.pagination-btn:hover:not(:disabled):not(.active) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.pagination-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== USER BADGE ===== */
.user-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  flex-shrink: 0;
  background: rgba(0, 163, 255, 0.2);
  color: var(--accent);
  border: 1px solid rgba(0, 163, 255, 0.3);
}

.user-avatar.lg {
  width: 64px;
  height: 64px;
  font-size: 20px;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
}

/* ===== COMMENTS ===== */
.comment {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comment:last-child {
  border-bottom: none;
}

.comment-votes {
  flex-shrink: 0;
}

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

.comment-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
  flex-wrap: wrap;
}

.comment-date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.comment-text {
  font-size: var(--text-sm);
  color: var(--text-primary);
  line-height: 1.6;
  word-break: break-word;
}

.comment-text p {
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.comment-text p:last-child {
  margin-bottom: 0;
}

.comment-actions {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.comment-actions button {
  font-size: var(--text-xs);
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}

.comment-actions button:hover {
  color: var(--accent);
}

.comment-children,
.reply-children {
  margin-left: var(--sp-4);
  padding-left: var(--sp-4);
  border-left: 2px solid rgba(0, 163, 255, 0.2);
  margin-top: var(--sp-2);
}

.reply-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reply-item:last-child {
  border-bottom: none;
}

.comment-form textarea {
  width: 100%;
  padding: var(--sp-2) var(--sp-3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-primary);
  resize: vertical;
  min-height: 60px;
  margin-bottom: var(--sp-2);
}

.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.15);
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: var(--weight-medium);
  color: var(--accent);
  background: var(--accent-muted);
  border-radius: var(--radius-full);
  margin-right: var(--sp-1);
  margin-bottom: var(--sp-1);
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(0, 163, 255, 0.25);
  box-shadow: 0 0 8px rgba(0, 163, 255, 0.2);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + var(--sp-3));
  right: var(--sp-4);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 360px;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: hsl(224, 47%, 10%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  color: var(--text-primary);
  animation: slideIn 200ms ease;
  backdrop-filter: blur(12px);
}

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

.toast-icon {
  flex-shrink: 0;
  font-size: var(--text-base);
}

.toast-success { border-left: 3px solid var(--green); }
.toast-error { border-left: 3px solid var(--red); }
.toast-info { border-left: 3px solid var(--accent); }

.toast-message {
  flex: 1;
}

.toast-close {
  font-size: var(--text-xs);
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  flex-shrink: 0;
}

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

/* ===== MODAL ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: var(--z-modal-backdrop);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: hsl(224, 47%, 8%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-lg {
  max-width: 700px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
}

.modal-body {
  padding: var(--sp-5);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== SPINNER ===== */
.spinner-container {
  display: flex;
  justify-content: center;
  padding: var(--sp-8);
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.spinner.sm {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

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

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: var(--sp-10) var(--sp-6);
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 40px;
  margin-bottom: var(--sp-3);
  opacity: 0.5;
}

.empty-state-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
}

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

/* ===== GLOW EFFECTS ===== */
.glow-box {
  box-shadow: 0 0 15px rgba(0, 163, 255, 0.3), 0 0 30px rgba(0, 163, 255, 0.1);
}

/* ===== SHIMMER (loading state for images) ===== */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== EDITOR ===== */
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  flex-wrap: wrap;
}

.editor-toolbar button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 28px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.editor-toolbar button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.editor-toolbar .divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 var(--sp-1);
}

.editor-content {
  min-height: 200px;
  padding: var(--sp-3);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-primary);
  line-height: 1.6;
  outline: none;
}

.editor-content:focus {
  border-color: var(--accent);
}
