body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  padding: 20px;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 650px;
}

h1, h2 {
  color: #ffffff;
}

.post-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.post-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

input, textarea {
  background: #2a2a2a;
  border: 1px solid #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button {
  background: #6366f1;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #4f46e5;
}

hr {
  border: 0;
  height: 1px;
  background: #333;
  margin: 30px 0;
}

/* Thread Cards */
.thread-card {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #2a2a2a;
}

.blocked-card {
  border-left: 4px solid #ef4444;
}

.thread-header {
  font-weight: bold;
  color: #818cf8;
  margin-bottom: 5px;
}

.thread-time {
  font-size: 12px;
  color: #777;
}

.thread-body {
  margin-top: 8px;
  line-height: 1.4;
}

/* Tags & Mentions */
.hashtag {
  color: #38bdf8;
  font-weight: bold;
  cursor: pointer;
}

.hashtag:hover {
  text-decoration: underline;
}

.mention {
  color: #a855f7;
  font-weight: bold;
}

.niche-badge {
  background: #334155;
  color: #94a3b8;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 5px;
}

/* Actions Row */
.thread-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.action-btn {
  background: #2a2a2a;
  color: #aaa;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
}

.action-btn:hover {
  background: #333;
  color: white;
}

/* Reply Input Box */
.reply-box {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: #181818;
  border-radius: 6px;
}

/* Indented replies */
.replies-container {
  margin-left: 20px;
  border-left: 2px solid #333;
  padding-left: 15px;
  margin-top: 10px;
}

/* Active votes */
.action-btn.active-like {
  background-color: rgba(99, 102, 241, 0.2);
  color: #818cf8;
  border: 1px solid #6366f1;
}

.action-btn.active-dislike {
  background-color: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid #ef4444;
}

/* Account Bar & Profile */
.account-bar {
  background: #1e1e1e;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #2a2a2a;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #6366f1;
}

.user-details {
  flex: 1;
}

.bio-text {
  color: #888;
  font-size: 12px;
  display: block;
}

/* Sorting & Filtering */
.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.filter-controls {
  display: flex;
  gap: 8px;
}

.sort-select {
  background: #2a2a2a;
  color: white;
  border: 1px solid #333;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.sort-select:focus {
  outline: none;
  border-color: #6366f1;
}

.auth-box {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-box input {
  flex: 1;
  min-width: 120px;
}

.secondary-btn {
  background: #2a2a2a;
  border: 1px solid #444;
}

.secondary-btn:hover {
  background: #3a3a3a;
} 
/* Developer Badges & Panels */
.dev-badge {
  background: #f59e0b;
  color: #000;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.verified-badge {
  background: #06b6d4;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.approved-badge {
  background: #10b981;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.pin-badge, .promote-badge {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
}

.pin-badge {
  color: #f59e0b;
}

.promote-badge {
  color: #ec4899;
}

.dev-heart-badge {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
  border: 1px solid #ec4899;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

.pinned-card {
  border: 1px solid #f59e0b !important;
}

.promoted-card {
  border: 1px solid #ec4899 !important;
  background: #251828 !important;
}

/* Owner Badges & Controls */
.owner-badge {
  background: #f59e0b;
  color: #000;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.owner-heart-badge {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
  border: 1px solid #ec4899;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

.owner-toolbar {
  margin-top: 12px;
  padding: 8px;
  background: #18181b;
  border: 1px dashed #f59e0b;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #f59e0b;
}

.owner-btn {
  background: #27272a;
  color: #f59e0b;
  border: 1px solid #f59e0b;
  padding: 3px 8px;
  font-size: 11px;
  border-radius: 4px;
  cursor: pointer;
}

.owner-btn:hover {
  background: #f59e0b;
  color: #000;
}
/* --- PREMIUM GLOBAL THEME --- */
body {
  background-color: #0b0c10;
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 20px;
}

.brand-title {
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.5px;
}

.brand-title .sub-title {
  color: #6366f1;
  font-weight: 300;
}

.broadcast-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(239, 68, 68, 0.95));
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.3px;
  line-height: 1.5;
  animation: slideInDown 0.6s ease-out;
}

/* Slide in animation */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide out animation */
@keyframes slideOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.broadcast-banner.slide-in {
  animation: slideInDown 0.6s ease-out;
}

.broadcast-banner.slide-out {
  animation: slideOutUp 0.4s ease-in forwards;
}

/* --- BADGES & ROLES --- */
.badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
  text-transform: uppercase;
  display: inline-block;
}

.owner-badge {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #000;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.coowner-badge { background: #94a3b8; color: #000; }
.dev-badge { background: #3b82f6; color: #fff; }
.mod-badge { background: #ef4444; color: #fff; }
.curator-badge { background: #06b6d4; color: #fff; }
.verifier-badge { background: #10b981; color: #fff; }

.owner-panel-trigger-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

/* --- STAFF & OWNER TOOLBAR --- */
.staff-toolbar {
  margin-top: 10px;
  padding: 8px;
  background: #121318;
  border: 1px dashed #3b82f6;
  border-radius: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: #3b82f6;
}

.staff-btn {
  background: #1f2937;
  color: #60a5fa;
  border: 1px solid #3b82f6;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
}

.staff-btn:hover {
  background: #3b82f6;
  color: #fff;
}

/* Owner-only buttons styling */
.staff-btn.owner-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  border: 1px solid #f59e0b;
  font-weight: bold;
}

.staff-btn.owner-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #000;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

/* --- OWNER MODAL CONTROL CENTER --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content.owner-modal {
  background: #13141c;
  border: 1px solid #f59e0b;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2a2c3d;
  padding-bottom: 10px;
}

.modal-header h2 {
  margin: 0;
  color: #f59e0b;
}

.close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
}

.owner-section {
  margin-top: 15px;
  padding: 12px;
  background: #1a1c28;
  border-radius: 8px;
}

.owner-section h3 {
  margin-top: 0;
  font-size: 14px;
  color: #f59e0b;
}

.inline-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.inline-form input {
  flex: 1;
}

.danger-btn {
  background: #ef4444 !important;
  color: white !important;
  border: none !important;
  cursor: pointer;
}

.danger-btn:hover {
  background: #dc2626 !important;
}
/* --- BRAND HEADER & SOCIAL BUTTONS --- */
.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Social Platform Specific Colors */
.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.youtube {
  background: #ff0000;
}

.social-btn.discord {
  background: #5865f2;
}

/* --- EDIT PROFILE MODAL & FILE INPUT --- */
.profile-preview-box {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.profile-preview-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #6366f1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.form-group label {
  font-size: 12px;
  color: #aaa;
}

.file-input {
  background: #1e1e24;
  border: 1px dashed #6366f1;
  padding: 8px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}

.primary-save-btn {
  width: 100%;
  background: #6366f1;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.primary-save-btn:hover {
  background: #4f46e5;
}

.avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
/* --- ANIMATED AMBIENT BACKGROUND & MODERN GLASS UI --- */
body {
  background-color: #08090d;
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Glowing background ambient lights */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  animation: pulseGlow 10s infinite alternate ease-in-out;
}

.glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #6366f1, #3b82f6);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f59e0b, #ec4899);
  bottom: -150px;
  right: -150px;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
  100% { transform: scale(1.2) translate(30px, -30px); opacity: 0.45; }
}

.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* Glassmorphism Cards */
.post-box, .account-bar, .thread-card, .modal-content {
  background: rgba(19, 20, 28, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 12px;
}

/* --- BRAND HEADER & NATURE MUSIC --- */
.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-title {
  font-size: 26px;
  margin: 0;
  color: #fff;
}

.brand-title .sub-title {
  color: #818cf8;
  font-weight: 300;
}

.nature-music-player {
  display: flex;
  align-items: center;
}

.music-btn {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid #10b981;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.music-btn.playing {
  background: #10b981;
  color: #000;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.music-btn:hover {
  transform: scale(1.03);
}

/* --- SOCIAL LINKS --- */
.social-links-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-btn:hover { transform: translateY(-2px); }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-btn.youtube { background: #ff0000; }
.social-btn.discord { background: #5865f2; }

/* --- FEEDBACK TRIGGER & STAR RATING --- */
.feedback-trigger-btn {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid #f59e0b;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.feedback-trigger-btn:hover {
  background: #f59e0b;
  color: #000;
}

.star-rating-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.star-label {
  font-size: 13px;
  color: #aaa;
}

.star-rating {
  display: flex;
  gap: 8px;
  font-size: 24px;
  cursor: pointer;
}

.star-btn {
  color: #444;
  transition: color 0.2s;
}

.star-btn.selected {
  color: #f59e0b;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.modal-desc {
  font-size: 13px;
  color: #aaa;
  margin-top: 0;
  margin-bottom: 15px;
}

/* Owner Private Suggestions List */
.suggestions-list {
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.suggestion-item {
  background: #12131a;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #2a2c3d;
}

.suggestion-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 5px;
  color: #f59e0b;
}

.suggestion-text {
  font-size: 13px;
  color: #eee;
}

/* --- BADGES & STAFF --- */
.badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
}

.owner-badge { background: linear-gradient(135deg, #f59e0b, #b45309); color: #000; }
.coowner-badge { background: #94a3b8; color: #000; }
.dev-badge { background: #3b82f6; color: #fff; }
.mod-badge { background: #ef4444; color: #fff; }
.curator-badge { background: #06b6d4; color: #fff; }
.verifier-badge { background: #10b981; color: #fff; }

.owner-panel-trigger-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex; justify-content: center; align-items: center;
  z-index: 999;
}

.modal-content {
  width: 90%;
  max-width: 550px;
  padding: 20px;
  border-radius: 12px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2a2c3d;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
}

.primary-save-btn {
  width: 100%;
  background: #6366f1;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.primary-save-btn:hover { background: #4f46e5; }

/* --- MISSING HEART BADGE --- */
.heart-badge {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
  border: 1px solid #ec4899;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

/* --- MODAL BODY STYLING --- */
.modal-body {
  color: #e0e0e0;
}

/* --- BUTTON GROUP STYLING --- */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* --- REPLY BOX BUTTON STYLING --- */
.reply-box button {
  width: 100%;
  background: #6366f1;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 13px;
}

.reply-box button:hover {
  background: #4f46e5;
}

/* --- USER ACTIONS STYLING --- */
.user-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.user-actions button {
  padding: 6px 12px;
  font-size: 12px;
}

/* --- FEEDBACK MODAL SPECIFIC --- */
.modal-content.feedback-modal {
  background: rgba(19, 20, 28, 0.95) !important;
  border: 1px solid #f59e0b !important;
}

/* --- PROFILE MODAL SPECIFIC --- */
.modal-content.profile-modal {
  background: rgba(19, 20, 28, 0.95) !important;
  border: 1px solid #6366f1 !important;
}

/* --- OWNER MODAL SPECIFIC --- */
.modal-content.owner-modal {
  background: rgba(19, 20, 28, 0.95) !important;
  border: 1px solid #f59e0b !important;
}

/* --- ADDITIONAL STYLING FIXES --- */

/* Nested reply cards */
.replies-container .thread-card {
  margin-bottom: 12px;
}

.replies-container .reply-box {
  margin-top: 8px;
}

/* Form group styling improvements */
.form-group input, .form-group textarea {
  background: #2a2a2a;
  border: 1px solid #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.2);
}

/* Improvement for inline-form */
.inline-form input, .inline-form select {
  background: #2a2a2a;
  border: 1px solid #333;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 13px;
}

.inline-form input:focus, .inline-form select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.2);
}

.inline-form button {
  padding: 8px 16px;
  background: #6366f1;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
}

.inline-form button:hover {
  background: #4f46e5;
}

/* Select elements styling */
select {
  background: #2a2a2a;
  border: 1px solid #333;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: #6366f1;
}

option {
  background: #1e1e1e;
  color: white;
}

/* Staff toolbar improvements */
.staff-toolbar span {
  color: #3b82f6;
}

/* Suggestion item hover effect */
.suggestion-item:hover {
  background: #1a1d2e;
  border-color: #f59e0b;
}

/* File input styling */
.file-input {
  background: #1e1e24;
  border: 1px dashed #6366f1;
  padding: 8px;
  border-radius: 6px;
  color: #999;
  cursor: pointer;
}

.file-input:hover {
  border-color: #4f46e5;
  background: #252a35;
}

/* Feedback button improvements */
.feedback-trigger-btn {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid #f59e0b;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feedback-trigger-btn:hover {
  background: #f59e0b;
  color: #000;
}

/* Edit profile button improvements */
.user-actions .secondary-btn {
  background: #2a2a2a;
  border: 1px solid #444;
  color: #aaa;
}

.user-actions .secondary-btn:hover {
  background: #3a3a3a;
  color: white;
}

/* Thread time styling */
.thread-time {
  font-size: 12px;
  color: #777;
  opacity: 0.8;
}

/* Niche badge improvements */
.niche-badge {
  background: #334155;
  color: #94a3b8;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 5px;
  display: inline-block;
}

/* Modal body padding improvement */
.modal-body {
  color: #e0e0e0;
  padding: 5px 0;
}

/* Close button improvements */
.close-btn:hover {
  color: #fff;
  opacity: 0.8;
}

/* Fix for locked elements during lockdown */
.system-lockdown .post-box {
  opacity: 0.6;
  pointer-events: none;
}

