* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0a0a0a;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* RED LIVE BACKGROUND GLOW */
body::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.15), transparent 60%);
  animation: pulse 4s infinite ease-in-out;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* MAIN CARD */
.login-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.95);
  box-shadow:
    0 0 20px rgba(255, 0, 0, 0.2),
    0 0 60px rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  width: 60px;
  opacity: 0.9;
}

.title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 25px;
}

/* LIVE INDICATOR */
.live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #ff4d4d;
}

.dot {
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

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

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #222;
  background: #111;
  color: white;
  outline: none;
  transition: 0.3s;
}

input:focus {
  border-color: red;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff0000, #990000);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  transform: translateY(-1px);
}

.footer {
  text-align: center;
  font-size: 11px;
  margin-top: 15px;
  color: #666;
}
