/* Discuss Page Styles */
.discuss-main {
  padding: 2rem 0 4rem;
  min-height: 80vh;
}
.discuss-header {
  text-align: center;
  margin-bottom: 2rem;
}
.discuss-header h1 {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.discuss-header h1 i {
  color: var(--secondary);
}
.discuss-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* Tabs */
.tabs-container {
  margin-bottom: 2rem;
}
.tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0.5rem;
  width: fit-content;
  margin: 0 auto;
}
.tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}
.tab:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}
.tab.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
}
.tab i {
  font-size: 1.2rem;
}
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Discussions Layout */
.discussions-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
}
.discussions-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.btn-new-topic {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  margin-bottom: 1.5rem;
}
.btn-new-topic:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 163, 0.3);
}
.filter-section {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.filter-section h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.category-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-family: var(--font-main);
}
.category-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}
.category-btn.active {
  background: var(--primary-dim);
  color: var(--primary);
}
.category-btn i {
  font-size: 1.1rem;
}
.sort-select {
  width: 100%;
  padding: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-main);
  cursor: pointer;
}

/* Search Bar */
.search-bar {
  position: relative;
  margin-bottom: 1.5rem;
}
.search-bar i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.25rem;
}
.search-bar input {
  width: 93%;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}
.search-bar input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

/* Topics List */
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.topic-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.topic-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.topic-card.pinned {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
}
.topic-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.topic-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.topic-info {
  flex: 1;
  min-width: 0;
}
.topic-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topic-title .pin-badge {
  color: gold;
  font-size: 0.9rem;
}
.topic-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.topic-category {
  padding: 0.2rem 0.6rem;
  background: var(--primary-dim);
  color: var(--primary);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.topic-preview {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.topic-stats span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.topic-stats i {
  font-size: 1rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.pagination button {
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}
.pagination button:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination button.active {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}
.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Jobs Section */
.jobs-search-container {
  max-width: 1000px;
  margin: 0 auto;
}
.jobs-search-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.jobs-header h2 {
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.jobs-header h2 i {
  color: var(--secondary);
}
.btn-saved-jobs {
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}
.btn-saved-jobs:hover {
  background: var(--secondary);
  color: #000;
}
.btn-saved-jobs.active {
  background: var(--secondary);
  color: #000;
}
.search-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
}
.input-group {
  position: relative;
}
.input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.input-group input {
  width: 80%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-main);
}
.input-group input:focus {
  outline: none;
  border-color: var(--primary);
}
.btn-search-jobs {
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}
.btn-search-jobs:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 163, 0.3);
}

/* Jobs Results */
.jobs-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.jobs-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.jobs-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.job-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.job-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}
.btn-save-job {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.btn-save-job:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}
.btn-save-job.saved {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}
.btn-save-job.saved i {
  font-weight: bold;
}
.job-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}
.job-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.job-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.job-logo i {
  font-size: 1.75rem;
  color: var(--text-muted);
}
.job-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.job-company {
  color: var(--secondary);
  font-weight: 500;
}
.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.job-details span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.job-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.job-description.expanded {
  max-height: none;
}
.job-description p {
  margin: 0;
}
/* Job Description Formatting */
.jd-section {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
  margin: 1rem 0 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--glass-border);
}
.jd-section:first-child {
  margin-top: 0;
}
.jd-point {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.5rem 0;
  color: var(--text-main);
  line-height: 1.5;
}
.jd-point i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.jd-fade {
  color: var(--text-muted);
  font-style: italic;
}
.job-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-read-more {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-main);
}
.btn-apply {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}
.btn-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

/* News Section */
.news-container {
  max-width: 1200px;
  margin: 0 auto;
}
.news-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.news-filter {
  padding: 0.6rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  font-size: 0.9rem;
}
.news-filter:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.news-filter.active {
  background: linear-gradient(135deg, var(--secondary), #0099ff);
  color: #fff;
  border-color: transparent;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.news-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.news-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.news-image {
  height: 180px;
  background: var(--bg-card);
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card:hover .news-image img {
  transform: scale(1.05);
}
.news-image-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.news-image-placeholder i {
  font-size: 3rem;
}
.news-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-source {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.news-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-title a {
  color: var(--text-main);
  text-decoration: none;
}
.news-title a:hover {
  color: var(--secondary);
}
.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s ease;
}
.modal-large {
  max-width: 800px;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 10;
}
.modal-header h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.modal-close:hover {
  color: var(--accent);
  background: rgba(255, 0, 85, 0.1);
}
.modal form {
  padding: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}
.form-group textarea {
  width: 93% !important;
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.btn-submit-topic {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}
.btn-submit-topic:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 163, 0.3);
}

/* Custom Scrollbar for Modal */
.modal::-webkit-scrollbar {
  width: 8px;
}
.modal::-webkit-scrollbar-track {
  background: var(--bg-dark);
  border-radius: 10px;
}
.modal::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}
.modal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
}
.modal {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

/* Topic Detail */
.topic-detail-content {
  padding: 1.5rem;
}
.detail-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.detail-author .topic-avatar {
  width: 48px;
  height: 48px;
}
.detail-author-info h4 {
  margin: 0 0 0.25rem;
}
.detail-author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.detail-body {
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.detail-tags span {
  padding: 0.3rem 0.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.detail-stats {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.detail-stats button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: all 0.2s ease;
}
.detail-stats button:hover {
  color: var(--primary);
}
.detail-stats button.liked {
  color: var(--accent);
}

/* Comments */
.comments-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comment-form {
  margin-bottom: 1.5rem;
}
.comment-form textarea {
  width: 95%;
  padding: 0.75rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-main);
  resize: vertical;
  min-height: 80px;
}
.comment-form button {
  margin-top: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
}
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comment {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem;
}
.comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
}
.comment-author {
  font-weight: 600;
  font-size: 0.9rem;
}
.comment-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.comment-body {
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.comment-actions {
  display: flex;
  gap: 1rem;
}
.comment-actions button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-main);
}
.comment-actions button:hover {
  color: var(--primary);
}
.replies {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.reply {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 0.75rem;
}

/* Special */
.special {
  color: gold !important;
  font-weight: 600 !important;
  border: 1px solid rgb(94, 80, 0) !important;
  padding: 5px 10px !important;
  border-radius: 25px !important;
}
.special:hover {
  color: rgba(255, 217, 0, 0.795) !important;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}
.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
  .discussions-layout {
    grid-template-columns: 1fr;
  }
  .discussions-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .discussions-sidebar > * {
    flex: 1;
    min-width: 200px;
  }
  .search-inputs {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
    width: 100%;
  }
  .tab {
    justify-content: center;
  }
  .discuss-header h1 {
    font-size: 1.75rem;
  }
  .modal {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
}
