/* ============================================
   直播控制台 - OBS Console Style
   CSS Prefix: live-
   ============================================ */

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

:root {
  --live-primary: #2D2D2D;
  --live-secondary: #E60000;
  --live-accent: #4A90E2;
  --live-text: #EAEAEA;
  --live-link: #E60000;
  --live-bg-dark: #1A1A1A;
  --live-bg-card: #333333;
  --live-border: #444444;
  --live-text-muted: #999999;
  --live-success: #00CC66;
  --live-font: 'Source Code Pro', 'Courier New', monospace;
}

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

body {
  font-family: var(--live-font);
  background-color: var(--live-bg-dark);
  color: var(--live-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--live-link);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #FF3333;
  text-shadow: 0 0 8px rgba(230, 0, 0, 0.5);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--live-font);
  color: var(--live-text);
  line-height: 1.3;
}

/* === Signal Jammer Block === */
.signal-jammer-block {
  display: none !important;
}

/* === Navigation === */
.live-nav {
  background-color: var(--live-primary);
  border-bottom: 2px solid var(--live-secondary);
  padding: 0 20px;
  z-index: 1000;
}

.live-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.live-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--live-text);
}

.live-nav-logo .live-rec-dot {
  width: 12px;
  height: 12px;
  background-color: var(--live-secondary);
  border-radius: 50%;
  animation: live-blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(230, 0, 0, 0.8);
}

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

.live-nav-logo .sp-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--live-text);
}

.live-nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.live-nav-menu li {
  position: relative;
}

.live-nav-menu li a {
  display: block;
  padding: 18px 16px;
  color: var(--live-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}

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

.live-nav-menu li a:hover,
.live-nav-menu li a.live-active {
  color: var(--live-secondary);
}

.live-nav-menu li a:hover::after,
.live-nav-menu li a.live-active::after {
  width: 80%;
}

/* Hamburger Menu */
.live-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}

.live-hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--live-text);
  transition: all 0.3s ease;
}

.live-hamburger.live-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.live-hamburger.live-open span:nth-child(2) {
  opacity: 0;
}

.live-hamburger.live-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.live-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(26, 26, 26, 0.98);
  z-index: 9999;
  transition: left 0.4s ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.live-mobile-menu.live-open {
  left: 0;
}

.live-mobile-menu a {
  color: var(--live-text);
  font-size: 1.5rem;
  letter-spacing: 2px;
  padding: 12px 30px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.live-mobile-menu a:hover {
  color: var(--live-secondary);
  text-shadow: 0 0 15px rgba(230, 0, 0, 0.6);
}

.live-mobile-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--live-text);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--live-font);
}

/* === Hero Section === */
.live-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--live-bg-dark);
}

.live-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.live-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(45,45,45,0.7) 50%, rgba(26,26,26,0.9) 100%);
}

.live-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.live-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(230, 0, 0, 0.3);
}

.live-hero-slogan {
  font-size: 1.3rem;
  color: var(--live-text-muted);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.live-hero-desc {
  font-size: 1rem;
  color: var(--live-text);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* === Signal Wave Animation === */
.live-wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.live-wave-container canvas {
  width: 100%;
  height: 100%;
}

/* === Buttons === */
.live-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--live-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.live-btn-red {
  background-color: var(--live-secondary);
  border-color: var(--live-secondary);
  color: #FFFFFF;
}

.live-btn-red:hover {
  background-color: transparent;
  color: var(--live-secondary);
  box-shadow: 0 0 20px rgba(230, 0, 0, 0.4);
  text-shadow: none;
}

.live-btn-blue {
  background-color: transparent;
  border-color: var(--live-accent);
  color: var(--live-accent);
}

.live-btn-blue:hover {
  background-color: var(--live-accent);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
  text-shadow: none;
}

/* === Section Common === */
.live-section {
  padding: 80px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.live-section-title {
  font-size: 1.4rem;
  color: var(--live-accent);
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: 3px solid var(--live-secondary);
}

.live-section-desc {
  font-size: 0.95rem;
  color: var(--live-text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.8;
}

.live-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--live-border), transparent);
  margin: 0;
}

/* === Card Grid === */
.live-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.live-card {
  background-color: var(--live-bg-card);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.live-card:hover {
  border-color: var(--live-secondary);
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.15);
}

.live-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.live-card-body {
  padding: 20px;
}

.live-card-title {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--live-text);
}

.live-card-meta {
  font-size: 0.75rem;
  color: var(--live-text-muted);
  margin-bottom: 10px;
}

.live-card-excerpt {
  font-size: 0.85rem;
  color: var(--live-text-muted);
  line-height: 1.6;
}

.live-card-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7rem;
  border-radius: 2px;
  margin-right: 6px;
  margin-bottom: 8px;
}

.live-tag-beginner {
  background-color: rgba(0, 204, 102, 0.2);
  color: var(--live-success);
  border: 1px solid var(--live-success);
}

.live-tag-advanced {
  background-color: rgba(74, 144, 226, 0.2);
  color: var(--live-accent);
  border: 1px solid var(--live-accent);
}

.live-tag-expert {
  background-color: rgba(230, 0, 0, 0.2);
  color: var(--live-secondary);
  border: 1px solid var(--live-secondary);
}

/* === Generator Section === */
.live-generator {
  background-color: var(--live-primary);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.live-generator-title {
  font-size: 1.6rem;
  color: var(--live-accent);
  margin-bottom: 20px;
}

.live-generator-desc {
  font-size: 1rem;
  color: var(--live-text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

/* === Case Studies === */
.live-case-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  background-color: var(--live-bg-card);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.live-case-item:hover {
  border-color: var(--live-secondary);
}

.live-case-img {
  width: 45%;
  min-height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.live-case-info {
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live-case-info h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.live-case-info p {
  font-size: 0.85rem;
  color: var(--live-text-muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* === Platform News Ticker === */
.live-ticker-wrap {
  background-color: var(--live-primary);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  padding: 20px;
  overflow: hidden;
}

.live-ticker-list {
  list-style: none;
}

.live-ticker-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--live-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

.live-ticker-date {
  color: var(--live-text-muted);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-left: 15px;
}

.live-ticker-platform {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.7rem;
  border-radius: 2px;
  margin-right: 10px;
  background-color: rgba(74, 144, 226, 0.2);
  color: var(--live-accent);
  border: 1px solid var(--live-accent);
}

/* === Toolbox Grid === */
.live-toolbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.live-tool-item {
  background-color: var(--live-bg-card);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  padding: 25px 20px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.live-tool-item:hover {
  border-color: var(--live-accent);
  box-shadow: 0 0 12px rgba(74, 144, 226, 0.2);
}

.live-tool-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--live-accent);
}

.live-tool-name {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.live-tool-desc {
  font-size: 0.75rem;
  color: var(--live-text-muted);
}

/* === Report Section === */
.live-report-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.live-report-item {
  background-color: var(--live-bg-card);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease;
}

.live-report-item:hover {
  border-color: var(--live-accent);
}

.live-report-title {
  font-size: 0.9rem;
}

.live-report-date {
  font-size: 0.75rem;
  color: var(--live-text-muted);
}

/* === Expert Q&A === */
.live-qa-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.live-qa-item {
  background-color: var(--live-bg-card);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  padding: 25px;
}

.live-qa-question {
  font-size: 0.95rem;
  color: var(--live-accent);
  margin-bottom: 12px;
  padding-left: 15px;
  border-left: 3px solid var(--live-secondary);
}

.live-qa-answer {
  font-size: 0.85rem;
  color: var(--live-text-muted);
  line-height: 1.7;
}

.live-qa-expert {
  font-size: 0.75rem;
  color: var(--live-text-muted);
  margin-top: 10px;
  text-align: right;
}

/* === Partners === */
.live-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.live-partner-item {
  background-color: var(--live-bg-card);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  padding: 25px 15px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--live-text-muted);
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.live-partner-item:hover {
  border-color: var(--live-accent);
}

/* === Footer === */
.live-footer {
  background-color: var(--live-primary);
  border-top: 2px solid var(--live-secondary);
  padding: 40px 20px 20px;
}

.live-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.live-footer-col h4 {
  font-size: 0.85rem;
  color: var(--live-accent);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--live-border);
}

.live-footer-col p,
.live-footer-col a {
  font-size: 0.8rem;
  color: var(--live-text-muted);
  line-height: 2;
}

.live-footer-col a:hover {
  color: var(--live-secondary);
}

.live-footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--live-success);
  box-shadow: 0 0 4px rgba(0, 204, 102, 0.6);
}

.live-footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--live-border);
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--live-text-muted);
  line-height: 2;
}

.live-footer-honor {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--live-accent);
  border-radius: 2px;
  font-size: 0.7rem;
  color: var(--live-accent);
  margin: 8px 0;
}

/* === Content Page === */
.live-content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.live-content-page h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--live-secondary);
}

.live-content-page h2 {
  font-size: 1.3rem;
  margin: 40px 0 15px;
  color: var(--live-accent);
}

.live-content-page h3 {
  font-size: 1.1rem;
  margin: 30px 0 12px;
}

.live-content-page p {
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--live-text-muted);
}

.live-content-page img {
  border: 1px solid var(--live-border);
  border-radius: 4px;
  margin: 20px 0;
}

.live-content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.85rem;
}

.live-content-page table th,
.live-content-page table td {
  padding: 12px 15px;
  border: 1px solid var(--live-border);
  text-align: left;
}

.live-content-page table th {
  background-color: var(--live-primary);
  color: var(--live-accent);
}

.live-content-page table td {
  color: var(--live-text-muted);
}

/* === Control Room (Wizard) === */
.live-wizard {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.live-wizard-layout {
  display: flex;
  gap: 40px;
  min-height: 500px;
}

.live-wizard-steps {
  width: 220px;
  flex-shrink: 0;
}

.live-step-item {
  padding: 15px 20px;
  border-left: 3px solid var(--live-border);
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--live-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.live-step-item.live-step-active {
  border-left-color: var(--live-secondary);
  color: var(--live-text);
  background-color: rgba(230, 0, 0, 0.05);
}

.live-step-item.live-step-done {
  border-left-color: var(--live-success);
  color: var(--live-success);
}

.live-wizard-content {
  flex: 1;
  background-color: var(--live-bg-card);
  border: 1px solid var(--live-border);
  border-radius: 4px;
  padding: 40px;
}

.live-wizard-panel {
  display: none;
}

.live-wizard-panel.live-panel-active {
  display: block;
}

.live-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.live-scene-card {
  background-color: var(--live-bg-dark);
  border: 2px solid var(--live-border);
  border-radius: 4px;
  padding: 25px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.live-scene-card:hover,
.live-scene-card.live-selected {
  border-color: var(--live-secondary);
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.2);
}

.live-scene-card .live-scene-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

/* Budget Slider */
.live-budget-slider {
  margin: 30px 0;
}

.live-budget-slider input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: var(--live-border);
  border-radius: 3px;
  outline: none;
}

.live-budget-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--live-secondary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(230, 0, 0, 0.5);
}

.live-budget-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--live-text-muted);
}

.live-budget-display {
  text-align: center;
  font-size: 1.2rem;
  color: var(--live-secondary);
  margin-top: 15px;
}

/* Result Table */
.live-result-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.8rem;
}

.live-result-table th,
.live-result-table td {
  padding: 10px 12px;
  border: 1px solid var(--live-border);
  text-align: left;
}

.live-result-table th {
  background-color: var(--live-primary);
  color: var(--live-accent);
}

.live-result-table td {
  color: var(--live-text-muted);
}

/* Loading Animation */
.live-loading {
  text-align: center;
  padding: 40px;
}

.live-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--live-border);
  border-top-color: var(--live-secondary);
  border-radius: 50%;
  animation: live-spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes live-spin {
  to { transform: rotate(360deg); }
}

/* === APP Download Page === */
.live-app-page {
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.live-app-mockup {
  max-width: 300px;
  margin: 0 auto 40px;
  border: 2px solid var(--live-border);
  border-radius: 20px;
  overflow: hidden;
}

.live-app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* === Breadcrumb === */
.live-breadcrumb {
  padding: 15px 20px;
  max-width: 1440px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--live-text-muted);
}

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

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

.live-breadcrumb span {
  margin: 0 8px;
  color: var(--live-border);
}

/* === Responsive Design === */

/* 1440px */
@media (max-width: 1440px) {
  .live-section {
    padding: 60px 30px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .live-hero-content h1 {
    font-size: 2.2rem;
  }

  .live-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .live-case-item {
    flex-direction: column;
  }

  .live-case-img {
    width: 100%;
    min-height: 200px;
  }

  .live-case-info {
    padding: 20px;
  }

  .live-wizard-layout {
    flex-direction: column;
  }

  .live-wizard-steps {
    width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .live-step-item {
    border-left: none;
    border-bottom: 3px solid var(--live-border);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .live-step-item.live-step-active {
    border-bottom-color: var(--live-secondary);
  }

  .live-step-item.live-step-done {
    border-bottom-color: var(--live-success);
  }
}

/* 768px */
@media (max-width: 768px) {
  .live-nav-menu {
    display: none;
  }

  .live-hamburger {
    display: flex;
  }

  .live-mobile-menu {
    display: flex;
    left: -100%;
  }

  .live-hero {
    min-height: 70vh;
  }

  .live-hero-content h1 {
    font-size: 1.8rem;
  }

  .live-hero-slogan {
    font-size: 1rem;
  }

  .live-section {
    padding: 50px 20px;
  }

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

  .live-footer-inner {
    grid-template-columns: 1fr;
  }

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

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

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

/* 360px */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }

  .live-hero-content h1 {
    font-size: 1.5rem;
  }

  .live-section-title {
    font-size: 1.2rem;
  }

  .live-scene-grid {
    grid-template-columns: 1fr;
  }

  .live-toolbox-grid {
    grid-template-columns: 1fr;
  }

  .live-partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .live-app-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* === Page Load Animation === */
.live-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--live-bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.live-page-loader.live-loaded {
  opacity: 0;
  pointer-events: none;
}

.live-loader-text {
  font-family: var(--live-font);
  font-size: 0.9rem;
  color: var(--live-accent);
  margin-top: 20px;
  letter-spacing: 2px;
}

.live-loader-bar {
  width: 200px;
  height: 3px;
  background-color: var(--live-border);
  margin-top: 15px;
  border-radius: 2px;
  overflow: hidden;
}

.live-loader-progress {
  width: 0%;
  height: 100%;
  background-color: var(--live-secondary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* === Glow Effect on Hover === */
.live-glow-hover {
  transition: box-shadow 0.3s ease;
}

.live-glow-hover:hover {
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.25);
}

/* === Scroll Reveal === */
.live-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.live-reveal.live-visible {
  opacity: 1;
  transform: translateY(0);
}
