@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

:root {
  --bg-color: #05080a;
  --panel-bg: rgba(20, 30, 40, 0.85);
  --glass-border: rgba(74, 107, 140, 0.8);
  --neon-blue: #00FFFF;
  --neon-green: #00FF40;
  --neon-yellow: #FFFF00;
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.6);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  background-image: 
    linear-gradient(to bottom, rgba(5, 8, 10, 0.92), rgba(10, 15, 20, 0.98)),
    url('https://images.unsplash.com/photo-1544256673-899dc6a9db3c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: 'Orbitron', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-grow: 1;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
}

h1 {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 255, 64, 0.8);
  border-bottom: 1px solid var(--neon-green);
  padding-bottom: 10px;
  margin-bottom: 30px;
}

h2 {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  font-size: 1.5rem;
  margin-top: 30px;
}

p, li {
  line-height: 1.6;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0.5px;
  color: #c8c8c8;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
}

ul li::before {
  content: ">> ";
  color: var(--neon-blue);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
}

.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.ticker-bar {
  background: rgba(5, 8, 10, 0.95);
  border-top: 1px solid var(--neon-blue);
  border-bottom: 1px solid var(--neon-blue);
  padding: 12px 0;
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.ticker-bar span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

.status-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--neon-green);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 64, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 64, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 64, 0); }
}

a {
  color: var(--neon-green);
  text-decoration: none;
  text-shadow: 0 0 5px rgba(0, 255, 64, 0.5);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

.nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.nav a {
  padding: 10px 20px;
  border: 1px solid var(--neon-blue);
  border-radius: 4px;
  background: rgba(0, 255, 255, 0.1);
  color: var(--neon-blue);
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  text-shadow: none;
}

.nav a:hover {
  background: rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  color: #fff;
  text-shadow: 0 0 5px rgba(255,255,255,0.8);
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  font-family: 'Orbitron', sans-serif;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
  border: 1px solid var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.offline-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #05080a 0%, #141e28 100%);
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}

.offline-placeholder h3 {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  margin-bottom: 10px;
  letter-spacing: 3px;
  font-size: 1.5rem;
}

