* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --secondary-color: #3b82f6;
  --accent-color: #059669;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --bg-light: #f1f5f9;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.top-bar {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  font-size: 13px;
}

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

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s;
  font-size: 13px;
}

.top-bar-links a:hover {
  color: white;
}

/* Header */
.header {
  background: var(--bg-white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.logo-text h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.logo-text p {
  font-size: 12px;
  color: var(--text-light);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary-color);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-light);
  border-color: var(--text-light);
}

/* Navigation */
.nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-menu a {
  padding: 16px 24px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 8px;
  font-size: 16px;
  background: var(--bg-white);
  border: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.search-bar {
  display: flex;
  gap: 6px;
}

.search-bar input {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  width: 240px;
  font-size: 14px;
  transition: all 0.2s;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.search-bar button {
  padding: 8px 16px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  font-size: 14px;
}

.search-bar button:hover {
  background: var(--secondary-color);
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 30px 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb .current {
  color: var(--text-dark);
  font-weight: 500;
}

/* Category Page Styles */
.category-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 40px;
  border-radius: 12px;
  color: white;
  margin-bottom: 24px;
}

.category-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-header p {
  font-size: 14px;
  opacity: 0.9;
}

.category-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.category-stats .stat {
  text-align: center;
}

.category-stats .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.category-stats .stat-label {
  font-size: 12px;
  opacity: 0.8;
  color: white;
}

.content-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
}

.sidebar-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.sub-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sub-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.sub-category:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.sub-category.active {
  background: var(--primary-color);
  color: white;
}

.sub-category .count {
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 10px;
}

.sub-category.active .count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.content-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-white);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.list-tabs {
  display: flex;
  gap: 4px;
}

.list-tab {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-dark);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.list-tab:hover {
  background: var(--bg-light);
}

.list-tab.active {
  background: var(--primary-color);
  color: white;
}

.list-info {
  font-size: 14px;
  color: var(--text-light);
}

.list-info strong {
  color: var(--primary-color);
}

.list-container {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.recommended-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 16px 20px;
  border-bottom: 2px solid #f59e0b;
}

.recommended-title {
  font-size: 16px;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recommended-title::before {
  content: "🔥";
}

.recommended-item {
  background: white;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.recommended-item:last-child {
  margin-bottom: 0;
}

.recommended-item:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recommended-item .item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.recommended-item .item-category {
  flex-shrink: 0;
  padding: 4px 10px;
  font-size: 12px;
  background: #fef3c7;
  color: #d97706;
  border-radius: 4px;
  font-weight: 600;
}

.recommended-item .item-title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recommended-item .item-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.recommended-item .item-title a:hover {
  color: var(--primary-color);
}

.recommended-item .item-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: 20px;
}

.recommended-item .item-phone {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
}

.recommended-item .item-date {
  font-size: 12px;
  color: var(--text-light);
  width: 80px;
  text-align: center;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
}

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

.list-item:hover {
  background: var(--bg-light);
}

.item-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.item-category {
  flex-shrink: 0;
  padding: 4px 10px;
  font-size: 12px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 4px;
}

.item-category.hot {
  background: #fef3c7;
  color: #d97706;
}

.item-title {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.item-title a:hover {
  color: var(--primary-color);
}

.item-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  margin-left: 20px;
}

.item-phone {
  font-size: 15px;
  color: var(--accent-color);
  font-weight: 600;
}

.item-date {
  font-size: 13px;
  color: var(--text-light);
  width: 90px;
  text-align: center;
}

.item-views {
  font-size: 13px;
  color: var(--text-light);
  width: 80px;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.pagination a {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
}

.pagination a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pagination a.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination a.disabled {
  color: var(--text-light);
  cursor: not-allowed;
}

/* Detail Page Styles */
.detail-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
}

.detail-main {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.detail-header {
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
}

.detail-category {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-color);
  color: white;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.detail-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-light);
}

.detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-body {
  padding: 30px;
}

.detail-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-label {
  width: 80px;
  font-size: 14px;
  color: var(--text-light);
  flex-shrink: 0;
}

.info-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

.info-value.highlight {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 700;
}

.detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.detail-content p {
  margin-bottom: 16px;
}

.detail-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}

.detail-contact {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
  margin-top: 30px;
}

.contact-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-phone {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.contact-tip {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.detail-actions {
  padding: 20px 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.publisher-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.publisher-details h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.publisher-details p {
  font-size: 13px;
  color: var(--text-light);
}

.publisher-stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-item {
  padding: 12px;
  background: var(--bg-light);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.related-item:hover {
  background: #e2e8f0;
}

.related-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.related-item .related-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  gap: 12px;
}

.safety-tips {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.safety-tips li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.safety-tips li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Login Page Styles */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  grid-column: 1 / -1;
}

.alert-error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.alert-success {
  background: #d1fae5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.login-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.login-container {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 30px 50px;
  width: 100%;
  max-width: 900px;
}

.login-header {
  text-align: center;
  margin-bottom: 36px;
}

.login-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.login-header p {
  color: var(--text-light);
  font-size: 14px;
}

.login-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-label {
  flex-shrink: 0;
  width: 80px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: right;
}

.form-input {
  flex: 1;
}

.form-input input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
}

.form-input input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input input::placeholder {
  color: var(--text-light);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.captcha-row .form-input {
  flex: 2;
  min-width: 150px;
}

.captcha-img {
  flex-shrink: 0;
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.captcha-refresh {
  color: var(--primary-color);
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.captcha-refresh:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 1 / -1;
  padding-left: 0;
}

.forgot-password {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.forgot-password:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.login-btn-wrapper {
  grid-column: 1 / -1;
  padding-left: 0;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0;
  grid-column: 1 / -1;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.divider span {
  color: var(--text-light);
  font-size: 13px;
}

.register-link {
  text-align: center;
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--text-light);
}

.register-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.register-link a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Index Page Styles */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 48px 0;
  color: white;
  text-align: center;
}

.hero h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-item .number {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.hero-stats .stat-item .label {
  font-size: 13px;
  opacity: 0.9;
  color: white;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

.section-title::before {
  content: "";
  width: 3px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 2px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 60px;
}

.category-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.category-card .icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.category-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.news-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.news-list {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.news-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s;
}

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

.news-item:hover {
  padding-left: 8px;
}

.news-item h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.news-item h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.news-item h3 a:hover {
  color: var(--primary-color);
}

.news-item .meta {
  font-size: 12px;
  color: var(--text-light);
}

.news-item .tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 4px;
  font-size: 12px;
  margin-right: 8px;
}

.headline-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.featured-card {
  background: var(--bg-white);
  border: 2px solid #d4af37;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: white;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.headline-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.featured-list {
  margin-top: 16px;
}

.featured-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.featured-item:hover {
  padding-left: 8px;
  background: var(--bg-light);
}

.featured-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.featured-item h4 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.featured-item h4 a:hover {
  color: #d4af37;
}

.featured-phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kanban-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 33px;
  margin-bottom: 60px;
}

.ad-banner-section {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.ad-banner-section:not(.grid-ad) {
  margin-bottom: 24px;
}

.ad-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.ad-banner.image-ad {
  background: white;
  border: 1px solid var(--border-color);
  padding: 0;
}

.ad-banner.image-ad .ad-image {
  flex: 1;
  width: 100%;
  height: 90px;
}

.ad-banner.image-ad .ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-banner .ad-text-container {
  flex: 1;
  overflow: hidden;
  height: 20px;
  position: relative;
}

.ad-banner .ad-text {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 20px;
  animation: scroll-text-up 10s ease-in-out infinite;
}

.ad-banner .ad-text a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.ad-banner .ad-text a:hover {
  color: var(--primary-color);
}

@keyframes scroll-text-up {
  0%, 25% {
    transform: translateY(0);
  }
  30%, 55% {
    transform: translateY(-20px);
  }
  60%, 85% {
    transform: translateY(-40px);
  }
  90%, 100% {
    transform: translateY(0);
  }
}

.ad-label {
  background: #94a3b8;
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.kanban-column {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-ss);
  border: 1px solid var(--border-color);
}

.listings-section {
  margin-bottom: 0;
}

.listings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.listing-card {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.listing-card:hover {
  background: white;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.listing-card .content {
  padding: 16px;
}

.listing-card .listing-main {
  margin-bottom: 10px;
}

.listing-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.listing-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.listing-card h3 a:hover {
  color: var(--primary-color);
}

.listing-card .phone {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 600;
  display: block;
}

.listing-card .listing-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: #94a3b8;
  padding-left: 0;
}

.listing-card .meta-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.listing-card .meta-label {
  color: #94a3b8;
  opacity: 0.8;
}

.listing-card .meta-value {
  color: #94a3b8;
}

.quick-links {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 60px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.quick-link-item {
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-link-item:hover {
  background: var(--primary-color);
  color: white;
}

.quick-link-item .icon {
  font-size: 20px;
}

.quick-link-item span {
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 40px 0 30px;
  margin-top: auto;
}

.footer-content {
  text-align: center;
}

.footer-links {
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  text-align: center;
}

.footer-content p {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-content .highlight {
  color: #ff0000;
}

.footer-content .bold {
  font-weight: 700;
}

.footer-content .strong {
  font-weight: 600;
}

.footer-content a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-content a:hover {
  color: white;
}

.footer-beian {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footer-beian p {
  float: left;
  height: 20px;
  line-height: 20px;
  margin: 0;
  color: #939393;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar-info {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .top-bar-links {
    display: none;
  }

  .header .container {
    flex-direction: column;
    gap: 16px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .nav .container {
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }

  .category-header {
    padding: 24px;
  }

  .category-header h1 {
    font-size: 22px;
  }

  .category-stats {
    gap: 20px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .list-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .item-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .item-title {
    white-space: normal;
  }

  .item-right {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .item-date,
  .item-views {
    width: auto;
    text-align: left;
  }

  .detail-container {
    grid-template-columns: 1fr;
  }

  .detail-header {
    padding: 20px;
  }

  .detail-title {
    font-size: 22px;
  }

  .detail-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .detail-body {
    padding: 20px;
  }

  .detail-info {
    grid-template-columns: 1fr;
  }

  .kanban-layout {
    grid-template-columns: 1fr;
  }

  .logo-text h1 {
    font-size: 22px;
  }
}

/* Member Page Styles */
.member-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: 600;
  margin: 0 auto 16px;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.profile-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.profile-phone {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.stat-item .number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-item .label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.info-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card h3::before {
  content: "";
  width: 3px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 2px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.info-item .label {
  color: var(--text-light);
}

.info-item .value {
  color: var(--text-dark);
  font-weight: 500;
}

.info-item .value.audit-pending {
  color: #f59e0b;
}

.info-item .value.audit-passed {
  color: var(--accent-color);
}

.info-item .value.audit-rejected {
  color: #ef4444;
}

.menu-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.menu-list {
  list-style: none;
}

.menu-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 14px;
}

.menu-list li a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.menu-list li a.active {
  background: var(--primary-color);
  color: white;
}

.menu-list li a span {
  font-size: 18px;
}

.post-list-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.post-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.post-tab {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  border: none;
  background: none;
}

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

.post-tab.active {
  background: var(--primary-color);
  color: white;
}

.post-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.post-content {
  flex: 1;
}

.post-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.post-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.post-title a:hover {
  color: var(--primary-color);
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 16px;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.pending {
  background: #fef3c7;
  color: #d97706;
}

.status-badge.passed {
  background: #d1fae5;
  color: #059669;
}

.status-badge.pinned {
  background: #dbeafe;
  color: #2563eb;
}

.status-badge.rejected {
  background: #fee2e2;
  color: #dc2626;
}

.post-actions {
  display: flex;
  gap: 8px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.empty-state p {
  font-size: 16px;
  margin-bottom: 20px;
}

.action-btn {
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--text-dark);
}

.action-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.action-btn.delete {
  border-color: #ef4444;
  color: #ef4444;
}

.action-btn.delete:hover {
  background: #ef4444;
  color: white;
}

/* Publish Page Styles */
.page-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-title::before {
  content: "";
  width: 4px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 2px;
}

.form-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.publish-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.form-label {
  flex-shrink: 0;
  width: 100px;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: right;
}

.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-content {
  flex: 1;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-select {
  width: 200px;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.user-info {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.form-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
}

.form-textarea {
  width: 100%;
  min-height: 200px;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.8;
  resize: vertical;
  transition: all 0.2s;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.image-upload-area {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.upload-item {
  width: 100px;
  height: 100px;
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.upload-item:hover {
  border-color: var(--primary-color);
  background: rgba(37, 99, 235, 0.05);
}

.upload-item.has-image {
  border-style: solid;
  border-color: var(--border-color);
}

.upload-item input[type="file"] {
  display: none;
}

.upload-icon {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.upload-text {
  font-size: 12px;
  color: var(--text-light);
}

.upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.upload-item:hover .upload-remove {
  opacity: 1;
}

.upload-preview-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.upload-preview-container .layui-icon {
  font-size: 32px;
  color: var(--text-light);
}

.upload-preview-container p {
  margin: 8px 0 0 0;
  font-size: 12px;
  color: var(--text-light);
}

.layui-upload-drag {
  border: 1px dashed var(--border-color);
  background: var(--bg-light);
}

.layui-upload-drag .layui-icon {
  font-size: 32px;
  color: var(--text-light);
}

.btn-submit {
  padding: 12px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-reset {
  padding: 12px 40px;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-reset:hover {
  background: var(--border-color);
}

.btn-cancel {
  padding: 12px 40px;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-cancel:hover {
  background: var(--bg-white);
  border-color: var(--primary-color);
}

/* Recharge Page Styles */
.recharge-content {
  display: flex;
  gap: 40px;
  padding: 20px;
}

.recharge-qr {
  flex: 0 0 auto;
  text-align: center;
}

.recharge-qr img {
  width: 300px;
  height: 300px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.recharge-qr p {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

.recharge-info {
  flex: 1;
}

.recharge-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.price-list {
  margin-bottom: 20px;
}

.price-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: 6px;
  margin-bottom: 12px;
}

.price-item .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  min-width: 60px;
}

.price-item .tickets {
  font-size: 14px;
  color: var(--text-dark);
  margin-left: 10px;
}

.recharge-note {
  padding: 16px;
  background: #fef3c7;
  border-left: 4px solid #d97706;
  border-radius: 4px;
}

.recharge-note p {
  color: #92400e;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
  .member-layout {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 16px;
  }

  .recharge-content {
    flex-direction: column;
  }

  .recharge-qr img {
    width: 250px;
    height: 250px;
  }

  .form-row {
    flex-direction: column;
    gap: 8px;
  }

  .form-label {
    width: auto;
    text-align: left;
    padding-top: 0;
  }

  .select-group {
    flex-direction: column;
    align-items: stretch;
  }

  .form-select {
    width: 100%;
  }

  .form-actions {
    padding-left: 0;
    flex-direction: column;
  }

  .btn-submit,
  .btn-reset {
    width: 100%;
  }

  .image-upload-area {
    justify-content: flex-start;
  }
}

/* Top Ads Section */
.top-ads {
  margin: 20px auto;
  text-align: center;
}

.top-ads img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Banner Ads Section */
.banner-ads-section {
  margin: 30px auto;
}

.banner-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}

.banner-item {
  flex: 0 0 auto;
}

.banner-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Bottom Ads Section */
.bottom-ads-section {
  margin: 30px auto;
}

.bottom-ads-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bottom-ad-item {
  text-align: center;
}

.bottom-ad-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Search Page Styles */
.search-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.search-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.search-header h1 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.search-keyword {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.search-keyword strong {
  color: var(--primary-color);
}

.search-count {
  font-size: 14px;
  color: var(--text-secondary);
}

.search-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-white);
  border-radius: 8px;
}

.search-empty p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-result-item {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.search-result-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.result-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.result-title a:hover {
  color: var(--primary-color);
}

.result-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.result-phone {
  color: var(--primary-color);
}

.result-date {
  color: var(--text-secondary);
}

.result-views {
  color: var(--text-secondary);
}

/* Search Pagination */
.search-container .pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  padding: 20px 0;
}

.search-container .pagination a {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
}

.search-container .pagination a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.search-container .pagination a.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.search-container .pagination a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
