/* ========================================
   传奇私服发布网 - 主样式表
   百度SEO优化 + 美观大气布局
   ======================================== */

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #c0392b;
  --primary-dark: #a5281b;
  --primary-light: #e74c3c;
  --gold: #f39c12;
  --gold-light: #f1c40f;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --gray: #666;
  --gray-light: #999;
  --bg: #f5f5f5;
  --bg-white: #ffffff;
  --border: #e0e0e0;
  --success: #27ae60;
  --warning: #e67e22;
  --shadow: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 10px;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ===== Top Bar ===== */
.top-bar {
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  padding: 6px 0;
}

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

.top-bar a {
  color: #ccc;
}

.top-bar a:hover {
  color: var(--gold);
}

/* ===== Header ===== */
.header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 18px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo h1 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.logo h1 a {
  color: #fff;
  text-decoration: none;
}

.logo h1 span {
  color: var(--gold);
}

.logo p {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  margin-top: 2px;
}

/* ===== Navigation ===== */
.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  gap: 5px;
}

.main-nav li a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s;
}

.main-nav li a:hover,
.main-nav li.active a {
  background: var(--primary);
  color: #fff;
}

/* ===== Search Box ===== */
.header-search {
  display: flex;
}

.header-search form {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.header-search input {
  background: transparent;
  border: none;
  padding: 8px 15px;
  color: #fff;
  width: 200px;
  outline: none;
  font-size: 13px;
}

.header-search input::placeholder {
  color: rgba(255,255,255,0.5);
}

.header-search button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
}

.header-search button:hover {
  background: var(--primary-light);
}

/* ===== Hero Banner ===== */
.hero-banner {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--primary-dark) 50%, var(--dark-3) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
}

.hero-banner .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: #fff;
}

.hero-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

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

.stat-num {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: #fff;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

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

.breadcrumb span {
  color: var(--gray);
}

/* ===== Filter Bar ===== */
.filter-bar {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.filter-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  color: var(--gray);
  font-size: 13px;
}

.filter-tag {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s;
  cursor: pointer;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== Main Content Layout ===== */
.main-content {
  padding: 25px 0 50px;
}

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

/* ===== Server Section ===== */
.server-section {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid var(--primary);
}

.section-header h3 {
  font-size: 18px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header .icon {
  font-size: 20px;
}

.more-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.more-link:hover {
  color: var(--primary-light);
}

.result-count {
  font-size: 13px;
  color: var(--gray);
}

/* ===== Server Table ===== */
.server-table {
  overflow-x: auto;
}

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

.server-table th {
  background: #f8f9fa;
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.server-table td {
  padding: 14px 15px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.server-table tr:hover td {
  background: #fafafa;
}

.server-table tr:nth-child(even) td {
  background: #fcfcfc;
}

.server-table tr:nth-child(even):hover td {
  background: #f5f5f5;
}

.server-name {
  font-weight: 600;
  color: var(--dark);
}

.server-name:hover {
  color: var(--primary);
}

.server-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.server-tag.weibian { background: var(--gold); }
.server-tag.fugu { background: #8e44ad; }
.server-tag.heji { background: #2980b9; }
.server-tag.single { background: var(--primary); }
.server-tag.three { background: #27ae60; }
.server-tag.wap { background: #e67e22; }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.status-badge.online {
  background: #d4edda;
  color: #155724;
}

.status-badge.prepare {
  background: #fff3cd;
  color: #856404;
}

.status-badge.hot {
  background: #f8d7da;
  color: #721c24;
}

.popularity-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pop-bar-bg {
  width: 60px;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.pop-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: 3px;
}

.pop-num {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.btn-play {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192,57,43,0.4);
}

/* ===== Server Grid (Hot) ===== */
.server-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px 25px;
}

.server-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.server-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.server-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.server-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.server-card .card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.server-card .card-title:hover {
  color: var(--primary);
}

.server-card .card-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.server-card .card-info {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.server-card .card-info span {
  margin-right: 12px;
}

.server-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.server-card .card-pop {
  font-size: 12px;
  color: var(--gray);
}

.server-card .card-pop strong {
  color: var(--primary);
  font-size: 16px;
}

/* ===== Server List (New) ===== */
.server-list {
  padding: 15px 25px;
}

.server-list-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed #eee;
  gap: 15px;
}

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

.server-list-item .item-num {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.server-list-item .item-num.hot {
  background: var(--primary);
}

.server-list-item .item-name {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
}

.server-list-item .item-name:hover {
  color: var(--primary);
}

.server-list-item .item-type {
  font-size: 12px;
  color: var(--gray);
  padding: 2px 8px;
  background: #f0f0f0;
  border-radius: 3px;
}

.server-list-item .item-time {
  font-size: 12px;
  color: var(--gray);
  min-width: 80px;
}

.server-list-item .item-pop {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  min-width: 60px;
  text-align: right;
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 30px 0;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  transition: all 0.3s;
}

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

.pagination .current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination .disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* ===== SEO Content ===== */
.seo-content {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 25px;
}

.seo-content h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.seo-text {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.seo-text p {
  margin-bottom: 12px;
}

.seo-text ul {
  margin: 10px 0 15px 20px;
  list-style: disc;
}

.seo-text ul li {
  margin-bottom: 8px;
}

.seo-text strong {
  color: var(--primary);
}

/* ===== Sidebar Widgets ===== */
.sidebar-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
}

.widget-header {
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}

.widget-header h4 {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.widget-body {
  padding: 15px 20px;
}

/* ===== Category List ===== */
.category-list li {
  border-bottom: 1px solid #f0f0f0;
}

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

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 14px;
  transition: all 0.3s;
}

.category-list a:hover {
  background: #f8f9fa;
  color: var(--primary);
  padding-left: 25px;
}

.category-list .count {
  background: var(--primary);
  color: #fff;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

/* ===== Rank List ===== */
.rank-list {
  counter-reset: rank;
  padding: 5px 0;
}

.rank-list li {
  position: relative;
  padding: 10px 20px 10px 50px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  transition: background 0.2s;
}

.rank-list li:hover {
  background: #f8f9fa;
}

.rank-list li::before {
  counter-increment: rank;
  content: counter(rank);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background: #e0e0e0;
  color: #666;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.rank-list li:nth-child(1)::before {
  background: #e74c3c;
  color: #fff;
}

.rank-list li:nth-child(2)::before {
  background: #e67e22;
  color: #fff;
}

.rank-list li:nth-child(3)::before {
  background: #f1c40f;
  color: #fff;
}

.rank-list a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-list .rank-pop {
  font-size: 11px;
  color: var(--gray-light);
}

/* ===== Quick Links ===== */
.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 15px 20px;
}

.quick-btn {
  display: block;
  padding: 10px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.quick-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ===== Friend Links ===== */
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px 20px;
}

.friend-links a {
  padding: 5px 12px;
  background: #f5f5f5;
  border-radius: 3px;
  font-size: 12px;
  transition: all 0.3s;
}

.friend-links a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== Calendar ===== */
.calendar-box {
  padding: 15px 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-header button {
  background: none;
  border: 1px solid var(--border);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

.calendar-header button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.calendar-header .cal-title {
  font-weight: 600;
  font-size: 14px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day-header {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  padding: 5px 0;
}

.cal-day {
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}

.cal-day:hover {
  background: #f0f0f0;
}

.cal-day.today {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.cal-day.has-server::after {
  content: '•';
  display: block;
  color: var(--gold);
  font-size: 8px;
  line-height: 1;
}

.cal-day.today.has-server::after {
  color: #fff;
}

.cal-day.other-month {
  color: #ccc;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 0 20px;
  margin-top: 40px;
}

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

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  margin: 0 5px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-desc {
  font-size: 13px;
  margin-bottom: 8px;
}

.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.footer-keywords {
  font-size: 12px;
  margin-top: 10px;
}

.footer-keywords a {
  color: rgba(255,255,255,0.5);
  margin: 0 5px;
}

.footer-keywords a:hover {
  color: var(--gold);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* ===== Page Content (About/Contact/etc) ===== */
.page-content {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 35px 40px;
  margin-bottom: 25px;
}

.page-content h2 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
}

.page-content h3 {
  font-size: 18px;
  color: var(--dark);
  margin: 25px 0 12px;
}

.page-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #444;
}

.page-content ul {
  margin: 10px 0 15px 20px;
  list-style: disc;
}

.page-content ul li {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.page-content strong {
  color: var(--primary);
}

/* ===== Contact Grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--primary);
}

.contact-card h3 {
  margin: 0 0 12px 0 !important;
  font-size: 16px !important;
}

.contact-card p {
  margin-bottom: 6px !important;
  font-size: 13px !important;
}

/* ===== Submit Info ===== */
.submit-info {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  padding: 20px;
  margin: 15px 0;
}

.submit-info h3 {
  margin-top: 0 !important;
}

/* ===== Sitemap Links ===== */
.sitemap-links {
  list-style: none !important;
  margin-left: 0 !important;
}

.sitemap-links li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  list-style: none;
}

.sitemap-links a {
  font-size: 14px;
  color: #444;
}

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

/* ===== Error Page ===== */
.error-page {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.error-page h2 {
  font-size: 100px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
}

.error-page p {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.error-desc {
  font-size: 14px !important;
  color: var(--gray) !important;
}

.error-actions {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 35px;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 35px;
  background: #f0f0f0;
  color: #333 !important;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #e0e0e0;
}

.error-suggestions {
  margin-top: 30px;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions h3 {
  text-align: center;
  margin-bottom: 15px;
}

.error-suggestions ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none !important;
  margin: 0 !important;
}

.error-suggestions a {
  display: inline-block;
  padding: 6px 15px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 13px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}

.btn-danger {
  background: var(--primary);
  color: #fff;
}

.btn-danger:hover {
  background: var(--primary-light);
}

/* ===== Highlight Effect ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hot-flag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 5px;
  animation: pulse 2s infinite;
}

.new-flag {
  display: inline-block;
  background: var(--success);
  color: #fff;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 5px;
}
