/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: url('../images/tmr.png') no-repeat center center fixed;
  background-size: cover;
  color: #00aaff;
  font-family: 'Segoe UI', sans-serif;
  animation: lightningFlicker 6s infinite ease-in-out;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  animation: fadeIn 2s ease;
}
.logo-wrap {
  background: rgba(0, 0, 0, 0.75);
  padding: 40px;
  border: 3px solid #ff4500;
  border-radius: 20px;
  box-shadow: 0 0 20px #ff4500;
  animation: pulseGlow 3s infinite;
}
.logo-wrap h1 {
  font-size: 3em;
  color: #00aaff;
  text-shadow: 2px 2px #000;
}
.logo-wrap p {
  font-size: 1.2em;
  margin-top: 10px;
}
.stream-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1.2em;
  background-color: #00aaff;
  color: #000;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px #00aaff;
  transition: all 0.3s ease;
}
.stream-button:hover {
  background-color: #ff4500;
  color: #fff;
  box-shadow: 0 0 15px #ff4500;
  transform: scale(1.05);
}

/* Content Boxes */
.content-box {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ff4500;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 0 15px #ff4500;
  margin-bottom: 40px;
  animation: slideUp 1s ease;
}
.content-box h3, .content-box h4, .content-box h5 {
  color: #00aaff;
  text-shadow: 1px 1px #000;
}
.content-box ul {
  padding-left: 0;
  list-style: none;
}
.content-box li {
  margin-bottom: 5px;
}

/* DJ Boxes */
.dj-box {
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(30,30,30,0.9));
  border: 2px dashed #00aaff;
  border-radius: 20px 5px 20px 5px;
  padding: 20px;
  box-shadow: 0 0 10px #00aaff;
  animation: fadeIn 1.5s ease;
}

/* Forms */
textarea.form-control,
input.form-control {
  background: rgba(20, 20, 20, 0.9);
  color: #00aaff;
  border: 1px solid #ff4500;
  border-radius: 8px;
}
textarea::placeholder,
input::placeholder {
  color: #aaa;
}
button.btn-primary {
  background-color: #00aaff;
  border-color: #00aaff;
  color: #000;
  font-weight: bold;
}
button.btn-primary:hover {
  background-color: #ff4500;
  border-color: #ff4500;
  color: #fff;
  box-shadow: 0 0 10px #ff4500;
}

/* Comments */
.comment-box {
  background: rgba(0, 0, 0, 0.6);
  border-left: 4px solid #ff4500;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 0 8px #ff4500;
}

/* Animations */
@keyframes lightningFlicker {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px #ff4500; }
  50% { box-shadow: 0 0 30px #ff4500; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-wrap h1 {
    font-size: 2em;
  }
  .stream-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}
.admin-card {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #00aaff;
  border-radius: 12px;
  color: #00aaff;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00aaff;
}
.admin-card:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: #ff4500;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 0 15px #ff4500;
}
