@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=ZCOOL+QingKe+HuangYou&display=swap');

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

:root {
  --bg-primary: #1a1a2e;
  --bg-secondary: #16213e;
  --bg-card: #0f3460;
  --neon-orange: #ff6b35;
  --neon-blue: #00d4ff;
  --neon-pink: #ff2d95;
  --text-primary: #ffffff;
  --text-secondary: #c8c8d4;
  --text-muted: #8a8aa0;
  --border-glow: rgba(0, 212, 255, 0.3);
  --shadow-neon: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --gradient-neon: linear-gradient(135deg, #ff6b35 0%, #00d4ff 100%);
  --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

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

body {
  font-family: 'Noto Sans SC', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--neon-orange);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

header {
  background: rgba(22, 33, 62, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-glow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 1.8rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.6); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.8); }
}

.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid var(--neon-orange);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--neon-orange);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-orange);
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

nav {
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  background: rgba(15, 52, 96, 0.5);
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 5px;
  padding: 0;
}

.nav-list a {
  display: block;
  padding: 12px 24px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
}

main {
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

.hero {
  position: relative;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid var(--border-glow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 52, 96, 0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--neon-orange);
  color: var(--bg-primary);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.hero h1 {
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-neon);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
  color: var(--text-primary);
}

.btn-outline {
  background: transparent;
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.btn-outline:hover {
  background: var(--neon-blue);
  color: var(--bg-primary);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.section {
  margin-bottom: 60px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-title {
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 2rem;
  position: relative;
  padding-left: 20px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 32px;
  background: var(--gradient-neon);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0, 212, 255, 0.2);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--neon-orange);
  color: var(--bg-primary);
}

.card-badge.live {
  background: var(--neon-orange);
  animation: blink 1.5s ease-in-out infinite;
}

.card-badge.hot {
  background: var(--neon-pink);
}

.card-badge.new {
  background: var(--neon-blue);
  color: var(--bg-primary);
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.4;
}

.card-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

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

.card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  font-size: 0.85rem;
}

.card-footer .prize {
  color: var(--neon-orange);
  font-weight: 700;
}

.card-footer .participants {
  color: var(--neon-blue);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-orange) 0%, var(--neon-blue) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(15, 52, 96, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 25px;
  width: 14px;
  height: 14px;
  background: var(--neon-orange);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-orange);
}

.timeline-item:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.timeline-time {
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 1.1rem;
  color: var(--neon-orange);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hotlist {
  counter-reset: hotlist;
}

.hotlist-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: linear-gradient(90deg, rgba(15, 52, 96, 0.4) 0%, rgba(22, 33, 62, 0.6) 100%);
  border-left: 3px solid var(--neon-blue);
  border-radius: 0 10px 10px 0;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  counter-increment: hotlist;
}

.hotlist-item:hover {
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.15) 0%, rgba(22, 33, 62, 0.6) 100%);
  border-left-color: var(--neon-orange);
  transform: translateX(5px);
}

.hotlist-rank {
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 1.6rem;
  width: 40px;
  text-align: center;
  color: var(--text-muted);
}

.hotlist-item:nth-child(1) .hotlist-rank {
  color: #ff4757;
  text-shadow: 0 0 15px rgba(255, 71, 87, 0.5);
}

.hotlist-item:nth-child(2) .hotlist-rank {
  color: #ff6b35;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.hotlist-item:nth-child(3) .hotlist-rank {
  color: #ffa502;
  text-shadow: 0 0 15px rgba(255, 165, 2, 0.5);
}

.hotlist-content {
  flex: 1;
}

.hotlist-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.hotlist-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hotlist-metrics {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hotlist-heat {
  color: var(--neon-orange);
  font-weight: 700;
  font-size: 0.95rem;
}

.trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.85rem;
  padding: 2px 8px;
  border-radius: 10px;
}

.trend.up {
  color: #ff4757;
  background: rgba(255, 71, 87, 0.15);
}

.trend.down {
  color: #2ed573;
  background: rgba(46, 213, 115, 0.15);
}

.trend.flat {
  color: var(--text-muted);
  background: rgba(138, 138, 160, 0.15);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
}

.stat-number {
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 2.5rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.filter-btn {
  padding: 8px 20px;
  background: rgba(15, 52, 96, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 25px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--neon-blue);
  color: var(--bg-primary);
  border-color: var(--neon-blue);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  flex-wrap: wrap;
}

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

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

.breadcrumb .separator {
  color: var(--neon-blue);
}

.breadcrumb .current {
  color: var(--neon-orange);
}

.page-header {
  text-align: center;
  padding: 50px 20px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
}

.page-header h1 {
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

th {
  background: var(--bg-card);
  color: var(--neon-blue);
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--neon-blue);
}

td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(0, 212, 255, 0.05);
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

.tag-orange {
  background: rgba(255, 107, 53, 0.2);
  color: var(--neon-orange);
}

.tag-blue {
  background: rgba(0, 212, 255, 0.2);
  color: var(--neon-blue);
}

.tag-pink {
  background: rgba(255, 45, 149, 0.2);
  color: var(--neon-pink);
}

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

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

.form-group label {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--neon-blue);
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-neon);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-orange);
  box-shadow: 0 0 25px rgba(255, 107, 53, 0.2);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 2.5rem;
  color: var(--text-primary);
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  color: var(--neon-blue);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.team-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.brand-item {
  padding: 25px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.brand-item:hover {
  border-color: var(--neon-orange);
  color: var(--neon-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
}

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glow);
  padding: 50px 0 20px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

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

.footer-col h4 {
  font-family: 'ZCOOL QingKe HuangYou', cursive;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--neon-blue);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--neon-orange);
  padding-left: 5px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-neon);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom .copyright {
  margin-bottom: 8px;
}

.notice-bar {
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.notice-icon {
  font-size: 1.3rem;
  color: var(--neon-orange);
  flex-shrink: 0;
}

.notice-content {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.notice-content strong {
  color: var(--neon-orange);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    border-top: 1px solid var(--border-glow);
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  }

  .hero {
    min-height: 400px;
  }

  .hero-overlay {
    padding: 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotlist-item {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hotlist-metrics {
    width: 100%;
    justify-content: flex-end;
  }

  .table-wrapper {
    overflow-x: auto;
  }

  .btn-group {
    width: 100%;
  }

  .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .live-status {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}